We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e4e370 commit 69ea16fCopy full SHA for 69ea16f
1 file changed
test/git-check-ignore.js
@@ -1,4 +1,4 @@
1
-const {test} = require('tap')
+const tap = require('tap')
2
const spawn = require('spawn-sync')
3
const tmp = require('tmp').dirSync
4
const mkdirp = require('mkdirp').sync
@@ -13,6 +13,12 @@ const {
13
IS_WINDOWS
14
} = require('./fixtures/cases')
15
16
+const {test} = tap
17
+
18
+// This test file is related to dealing with file systems which takes time,
19
+// so remove timeout setting.
20
+tap.setTimeout(0)
21
22
const touch = (root, file, content) => {
23
const dirs = file.split('/')
24
const basename = dirs.pop()
0 commit comments