Skip to content

Commit

Permalink
windows test: don't try to skip before loading tap
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacs committed Mar 22, 2023
1 parent 3426f33 commit e04ad30
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/memfs.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import t from 'tap'

if (process.platform === 'win32') {
t.plan(0, 'this test does not work on windows')
process.exit(0)
}

import { fs as memfs, vol } from 'memfs'
import t from 'tap'
import { glob } from '../'
t.beforeEach(() => vol.fromJSON({ '/x': 'abc' }))

Expand Down

0 comments on commit e04ad30

Please sign in to comment.