mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-08 09:08:48 +01:00
smoke test: only run multi root test against insiders edition
This commit is contained in:
@@ -48,7 +48,7 @@ if (program.stable) {
|
||||
process.env.VSCODE_STABLE_PATH = program.stable;
|
||||
}
|
||||
process.env.SMOKETEST_REPO = testRepoLocalDir;
|
||||
if (program.stable && program.stable.toLowerCase().startsWith('insiders')) {
|
||||
if (program.latest && program.latest.indexOf('Code - Insiders') >= 0) {
|
||||
process.env.VSCODE_EDITION = 'insiders';
|
||||
}
|
||||
process.env.VSCODE_WORKSPACE_PATH = codeWorkspace;
|
||||
|
||||
@@ -34,5 +34,7 @@ describe('Smoke Test Suite', () => {
|
||||
testTasks();
|
||||
testExtensions();
|
||||
testLocalization();
|
||||
testMultiRoot();
|
||||
if (process.env.VSCODE_EDITION === 'insiders') {
|
||||
testMultiRoot(); // only enabled in insiders
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user