Skip to content

Commit 7e2df8a

Browse files
committed
Enable proposed API for all launch configurations in tests
1 parent 040e590 commit 7e2df8a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/standardTest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ async function start() {
8989
console.log('VS Code executable', vscodeExecutablePath);
9090
const launchArgs = baseLaunchArgs
9191
.concat([workspacePath])
92-
.concat(channel === 'insiders' ? ['--enable-proposed-api'] : [])
92+
.concat(['--enable-proposed-api'])
9393
.concat(['--timeout', '5000']);
9494
console.log(`Starting vscode ${channel} with args ${launchArgs.join(' ')}`);
9595
const options: TestOptions = {

0 commit comments

Comments
 (0)