We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e03f10b commit 9b78d87Copy full SHA for 9b78d87
src/test/integration/pythonProjects.integration.test.ts
@@ -42,7 +42,9 @@ async function setEnvironmentAndWaitForChange(
42
let subscription: vscode.Disposable | undefined;
43
const timeout = setTimeout(() => {
44
subscription?.dispose();
45
- reject(new Error(`onDidChangeEnvironment did not fire within ${timeoutMs}ms. Expected envId: ${env.envId.id}`));
+ reject(
46
+ new Error(`onDidChangeEnvironment did not fire within ${timeoutMs}ms. Expected envId: ${env.envId.id}`),
47
+ );
48
}, timeoutMs);
49
50
subscription = api.onDidChangeEnvironment((e) => {
0 commit comments