We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Learn more about funding links in repositories.
Report abuse
1 parent ff2cdb4 commit c48c3d2Copy full SHA for c48c3d2
test/ManyWatchers.js
@@ -25,10 +25,18 @@ describe("ManyWatchers", function() {
25
j >>= 1;
26
}
27
const dir = `${i & highBit}/${i & ~highBit}`;
28
- if (i === highBit) testHelper.dir(`${i}`);
+ if (i === highBit) {
29
+ testHelper.dir(`${i}`);
30
+ testHelper.file(`${i}/file`);
31
+ files.push(path.join(fixtures, `${i}`, "file"));
32
+ }
33
testHelper.dir(dir);
34
testHelper.file(`${dir}/file`);
35
files.push(path.join(fixtures, dir, "file"));
36
37
+ testHelper.file(`${dir}/file2`);
38
+ files.push(path.join(fixtures, dir, "file2"));
39
40
41
testHelper.tick(1000, () => {
42
const w = new Watchpack({
0 commit comments