Skip to content

Commit ec32a4b

Browse files
committed
Skip on windows
1 parent 32b21a8 commit ec32a4b

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

test/symlink-race-extract.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ import t from 'tap'
44
import { extract } from '../src/extract.js'
55
import { Header } from '../src/header.js'
66

7+
if (process.platform === 'win32') {
8+
t.plan(0, 'can skip entirely on Windows')
9+
process.exit(0)
10+
}
11+
712
if (typeof fs.constants.O_NOFOLLOW !== 'number') {
813
t.plan(0, 'no O_NOFOLLOW flag')
914
process.exit(0)

0 commit comments

Comments
 (0)