Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/datascience-ui/interactive-common/redux/store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ function createMiddleWare(testMode: boolean): Redux.Middleware<{}, IStore>[] {
}
});
const loggerMiddleware = process.env.VSC_PYTHON_FORCE_LOGGING !== undefined || (process.env.NODE_ENV !== 'production' && !testMode) ? logger : undefined;

// tslint:disable-next-line: no-console
const results: Redux.Middleware<{}, IStore>[] = [];
results.push(queueableActions);
results.push(updateContext);
Expand Down
4 changes: 2 additions & 2 deletions src/test/multiRootTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ function start() {
runTests({
extensionDevelopmentPath: EXTENSION_ROOT_DIR_FOR_TESTS,
extensionTestsPath: path.join(EXTENSION_ROOT_DIR_FOR_TESTS, 'out', 'test', 'index'),
launchArgs: [workspacePath],
version: 'stable'
launchArgs: [workspacePath, '--enable-proposed-api', 'ms-python.python'],
version: 'insiders'
}).catch(ex => {
console.error('End Multiroot tests (with errors)', ex);
process.exit(1);
Expand Down
4 changes: 2 additions & 2 deletions src/test/standardTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ function start() {
runTests({
extensionDevelopmentPath: extensionDevelopmentPath,
extensionTestsPath: path.join(EXTENSION_ROOT_DIR_FOR_TESTS, 'out', 'test', 'index'),
launchArgs: [workspacePath],
version: 'stable'
launchArgs: [workspacePath, '--enable-proposed-api', 'ms-python.python'],
version: 'insiders'
}).catch(ex => {
console.error('End Standard tests (with errors)', ex);
process.exit(1);
Expand Down