From 29ea68289b3e1af1df11e75ffc7199cf9f18c6a7 Mon Sep 17 00:00:00 2001 From: Michael-F-Bryan Date: Fri, 5 Jan 2024 17:56:06 +0800 Subject: [PATCH] Explicitly add a timeout to the directory tests --- tests/directory.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/directory.test.ts b/tests/directory.test.ts index 3bc69b0f..9dfc3955 100644 --- a/tests/directory.test.ts +++ b/tests/directory.test.ts @@ -10,7 +10,7 @@ const initialized = (async () => { })(); describe("In-Memory Directory", function () { - this.beforeAll(async () => await initialized); + this.timeout("60s").beforeAll(async () => await initialized); it("read empty dir", async () => { const dir = new Directory();