We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 617014c commit 2262aedCopy full SHA for 2262aed
src/client/common/experiments/helpers.ts
@@ -6,9 +6,10 @@
6
import { env, workspace } from 'vscode';
7
import { IExperimentService } from '../types';
8
import { TerminalEnvVarActivation } from './groups';
9
+import { isTestExecution } from '../constants';
10
11
export function inTerminalEnvVarExperiment(experimentService: IExperimentService): boolean {
- if (workspace.workspaceFile && env.remoteName) {
12
+ if (!isTestExecution() && workspace.workspaceFile && env.remoteName) {
13
// TODO: Remove this if statement once https://github.com/microsoft/vscode/issues/180486 is fixed.
14
return false;
15
}
0 commit comments