Skip to content

Commit

Permalink
Removed cheveron for windows tests
Browse files Browse the repository at this point in the history
  • Loading branch information
justinwilaby committed Jan 10, 2025
1 parent a017077 commit 9811eed
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions packages/cli/test/unit/commands/spaces/destroy.unit.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ describe('spaces:destroy', function () {

await runCommand(Cmd, ['--space', 'my-space'])
api.done()

expect(stderr.output).to.eq(heredoc` › Warning: Destructive Action
const replacer = /([»])/g
expect(stderr.output.replace(replacer, '')).to.eq(heredoc(` › Warning: Destructive Action
› This command will destroy the space my-space
› === WARNING: Outbound IPs Will Be Reused
› ⚠️ Deleting this space frees up the following outbound IPv4 and IPv6 IPs
Expand All @@ -58,7 +58,7 @@ describe('spaces:destroy', function () {
Destroying space my-space...
Destroying space my-space... done
`)
`.replace(replacer, '')))
})

it('shows simple NAT warning for non-fir generation space', async function () {
Expand All @@ -79,8 +79,8 @@ describe('spaces:destroy', function () {

await runCommand(Cmd, ['--space', 'my-space'])
api.done()

expect(stderr.output).to.eq(heredoc` › Warning: Destructive Action
const replacer = /([»])/g
expect(stderr.output.replace(replacer, '')).to.eq(heredoc(` › Warning: Destructive Action
› This command will destroy the space my-space
› === WARNING: Outbound IPs Will Be Reused
› ⚠️ Deleting this space frees up the following outbound IPv4 IPs for reuse:
Expand All @@ -99,6 +99,6 @@ describe('spaces:destroy', function () {
Destroying space my-space...
Destroying space my-space... done
`)
`.replace(replacer, '')))
})
})

0 comments on commit 9811eed

Please sign in to comment.