Skip to content

Commit

Permalink
Add a little more time for win32
Browse files Browse the repository at this point in the history
  • Loading branch information
hildjj committed Dec 11, 2023
1 parent 290cf76 commit 519d96f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/cli/watcher.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ describe("watches files", () => {
return p;
});

it("debounces", done => {
it.only("debounces", done => {
let count = 0;
const fn = __filename;
const base = path.basename(fn);
Expand All @@ -39,7 +39,7 @@ describe("watches files", () => {
expect(count).toBe(2);
w.close().then(done);
}, Watcher.interval * 0.5);
}, Watcher.interval * 1.5);
}, Watcher.interval * 3);
});

it("closes after an error", done => {
Expand Down

0 comments on commit 519d96f

Please sign in to comment.