diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-08-09 20:56:11 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-08-09 20:56:11 -0700 |
commit | 4636c9590154d6b5995948003da212eb25003750 (patch) | |
tree | 4a1652148f3148f801fa801e8eb4f1a55f8d7e33 /extension/src/test-suite | |
parent | c1a8097f0a7f3cddb0aebac26e6197ffef186972 (diff) | |
download | sncontinue-4636c9590154d6b5995948003da212eb25003750.tar.gz sncontinue-4636c9590154d6b5995948003da212eb25003750.tar.bz2 sncontinue-4636c9590154d6b5995948003da212eb25003750.zip |
fix: :bug: write out npm run package as package.js
Diffstat (limited to 'extension/src/test-suite')
-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 a6aa3433..a0d6cbaa 100644 --- a/extension/src/test-suite/environmentSetup.test.ts +++ b/extension/src/test-suite/environmentSetup.test.ts @@ -9,7 +9,7 @@ import fkill from "fkill"; describe("Can start python server", () => { test("Can start python server in under 10 seconds", async function () { fkill(65432, { force: true, silent: true }); - const allowedTime = 10_000; + const allowedTime = 15_000; this.timeout(allowedTime + 1000); // If successful, the server is started by the extension while we wait |