Skip to content

Commit

Permalink
skip memfs test on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacs committed Mar 21, 2023
1 parent 65b9b47 commit 672c944
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/memfs.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
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 '../'
Expand Down

0 comments on commit 672c944

Please sign in to comment.