We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32b21a8 commit ec32a4bCopy full SHA for ec32a4b
1 file changed
test/symlink-race-extract.ts
@@ -4,6 +4,11 @@ import t from 'tap'
4
import { extract } from '../src/extract.js'
5
import { Header } from '../src/header.js'
6
7
+if (process.platform === 'win32') {
8
+ t.plan(0, 'can skip entirely on Windows')
9
+ process.exit(0)
10
+}
11
+
12
if (typeof fs.constants.O_NOFOLLOW !== 'number') {
13
t.plan(0, 'no O_NOFOLLOW flag')
14
process.exit(0)
0 commit comments