Skip to content

Commit 57a0429

Browse files
author
Dave Bartolomeo
committed
Only disable specific extensions for minimal-workspace tests
1 parent 7c1fce3 commit 57a0429

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

extensions/ql-vscode/src/vscode-tests/run-integration-tests.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,13 @@ function getLaunchArgs(dir: TestDir) {
130130

131131
case TestDir.MinimalWorksspace:
132132
return [
133-
'--disable-extensions',
133+
// explicitly disable extensions that are known to interfere with the CLI integration tests
134+
'--disable-extension',
135+
'eamodio.gitlens',
136+
'--disable-extension',
137+
'github.codespaces',
138+
'--disable-extension',
139+
'github.copilot',
134140
'--disable-gpu',
135141
'--user-data-dir=' + path.join(tmpDir.name, dir, 'user-data'),
136142
path.resolve(__dirname, '../../test/data')

0 commit comments

Comments
 (0)