summaryrefslogtreecommitdiff
path: root/extension/src/test-runner/runTestOnVSCodeHost.ts
diff options
context:
space:
mode:
authorNate Sesti <sestinj@gmail.com>2023-08-09 18:49:13 -0700
committerNate Sesti <sestinj@gmail.com>2023-08-09 18:49:13 -0700
commita1fada4e7f0be2d5aa661aee483a59ba93bacb40 (patch)
tree482531918472a8ede34d91cfe09dab4458ca52b5 /extension/src/test-runner/runTestOnVSCodeHost.ts
parentb4d59917cc3f0a30a56ef51ce11e6202cd01e0a1 (diff)
downloadsncontinue-a1fada4e7f0be2d5aa661aee483a59ba93bacb40.tar.gz
sncontinue-a1fada4e7f0be2d5aa661aee483a59ba93bacb40.tar.bz2
sncontinue-a1fada4e7f0be2d5aa661aee483a59ba93bacb40.zip
ci: :green_heart: install Xvfb to run headless electron on Linux
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 });