diff options
author | Nate Sesti <33237525+sestinj@users.noreply.github.com> | 2023-08-11 13:47:11 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-11 13:47:11 -0700 |
commit | 49e323bd9312e49e7149c8851d55241b4e24ef18 (patch) | |
tree | 41b89dba1c67e479236bdaa86d6606f99381c822 /extension/src/test-runner/runTestOnVSCodeHost.ts | |
parent | 48ee1334dfd21dbe55cf66f39da1249619103e81 (diff) | |
parent | 34f77a7344bc527e0c08dea5820a01748f2f8481 (diff) | |
download | sncontinue-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.ts | 5 |
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 }); |