diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-08-14 13:47:17 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-08-14 13:47:17 -0700 |
commit | efb39b7b90874802c72a586d9b83a95b8b194937 (patch) | |
tree | 7fae02508110c76089c5b2014387dc9937b0dcb3 | |
parent | d9475e56951b07ad72b9ecde2dcd61a80afe78ae (diff) | |
download | sncontinue-efb39b7b90874802c72a586d9b83a95b8b194937.tar.gz sncontinue-efb39b7b90874802c72a586d9b83a95b8b194937.tar.bz2 sncontinue-efb39b7b90874802c72a586d9b83a95b8b194937.zip |
give test more time to be sure
-rw-r--r-- | extension/src/test-suite/environmentSetup.test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extension/src/test-suite/environmentSetup.test.ts b/extension/src/test-suite/environmentSetup.test.ts index 9947894a..8ff64749 100644 --- a/extension/src/test-suite/environmentSetup.test.ts +++ b/extension/src/test-suite/environmentSetup.test.ts @@ -8,7 +8,7 @@ import fkill from "fkill"; describe("Can start python server", () => { test("Can start python server in under 35 seconds", async function () { - const allowedTime = 25_000; + const allowedTime = 60_000; this.timeout(allowedTime + 10_000); // try { // fkill(65432, { force: true }); |