summaryrefslogtreecommitdiff
path: root/extension/src/test-runner/runTestOnVSCodeHost.ts
diff options
context:
space:
mode:
authorNate Sesti <33237525+sestinj@users.noreply.github.com>2023-08-11 13:47:11 -0700
committerGitHub <noreply@github.com>2023-08-11 13:47:11 -0700
commit49e323bd9312e49e7149c8851d55241b4e24ef18 (patch)
tree41b89dba1c67e479236bdaa86d6606f99381c822 /extension/src/test-runner/runTestOnVSCodeHost.ts
parent48ee1334dfd21dbe55cf66f39da1249619103e81 (diff)
parent34f77a7344bc527e0c08dea5820a01748f2f8481 (diff)
downloadsncontinue-49e323bd9312e49e7149c8851d55241b4e24ef18.tar.gz
sncontinue-49e323bd9312e49e7149c8851d55241b4e24ef18.tar.bz2
sncontinue-49e323bd9312e49e7149c8851d55241b4e24ef18.zip
Merge pull request #369 from continuedev/ci-testing
Ci testing
Diffstat (limited to 'extension/src/test-runner/runTestOnVSCodeHost.ts')
-rw-r--r--extension/src/test-runner/runTestOnVSCodeHost.ts5
1 files changed, 4 insertions, 1 deletions
diff --git a/extension/src/test-runner/runTestOnVSCodeHost.ts b/extension/src/test-runner/runTestOnVSCodeHost.ts
index 2a542ffc..21267c2d 100644
--- a/extension/src/test-runner/runTestOnVSCodeHost.ts
+++ b/extension/src/test-runner/runTestOnVSCodeHost.ts
@@ -11,7 +11,10 @@ async function main() {
// The path to test runner
// Passed to --extensionTestsPath
- const extensionTestsPath = path.resolve(extensionDevelopmentPath, "out/test-runner/mochaRunner");
+ const extensionTestsPath = path.resolve(
+ extensionDevelopmentPath,
+ "out/test-runner/mochaRunner"
+ );
// Download VS Code, unzip it and run the integration test
await runTests({ extensionDevelopmentPath, extensionTestsPath });