Skip to content

Commit 1e938bb

Browse files
authored
increase timeout for windows (#998)
1 parent 92377f8 commit 1e938bb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/dataloaders-test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ const noopEffects: LoadEffects = {
88
output: {write() {}}
99
};
1010

11-
describe("Loader.find(root, path)", () => {
11+
describe("Loader.find(root, path)", function () {
12+
if (os.platform() === "win32") this.timeout(5000);
1213
it("a .js data loader is called with node", async () => {
1314
const loader = Loader.find("test", "dataloaders/data1.txt")!;
1415
const out = await loader.load(noopEffects);

0 commit comments

Comments
 (0)