From 0f3ab7b1d833618b1a462360bfbc479edab2984e Mon Sep 17 00:00:00 2001 From: Louis Lam Date: Sat, 16 Oct 2021 12:56:33 +0800 Subject: [PATCH] [test] increase the timeout for reset-password --- test/backend.spec.js | 1 + 1 file changed, 1 insertion(+) diff --git a/test/backend.spec.js b/test/backend.spec.js index b47d375c..910194f6 100644 --- a/test/backend.spec.js +++ b/test/backend.spec.js @@ -39,6 +39,7 @@ describe("Test genSecret", () => { describe("Test reset-password", () => { it("should able to run", async () => { + jest.setTimeout(120000); await require("../extra/reset-password").main(); }); });