diff options
Diffstat (limited to 'extension/src/test-suite/environmentSetup.test.ts')
-rw-r--r-- | extension/src/test-suite/environmentSetup.test.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extension/src/test-suite/environmentSetup.test.ts b/extension/src/test-suite/environmentSetup.test.ts index 1c5fe97e..dd371ab1 100644 --- a/extension/src/test-suite/environmentSetup.test.ts +++ b/extension/src/test-suite/environmentSetup.test.ts @@ -6,8 +6,8 @@ import { startContinuePythonServer } from "../activation/environmentSetup"; import fetch from "node-fetch"; describe("Can start python server", () => { - test("Can start python server in under 35 seconds", async function () { - const allowedTime = 60_000; + test("Can start python server in under 80 seconds", async function () { + const allowedTime = 80_000; this.timeout(allowedTime + 10_000); console.log("Starting server in test..."); |