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 6885dcc commit 3d1f0e7Copy full SHA for 3d1f0e7
integration/vscode/ada/.gitignore
@@ -13,3 +13,6 @@
13
/linux/
14
/win32/
15
/darwin/
16
+
17
+# Generated by ANCR
18
+/.env
integration/vscode/ada/.vscode-test.mjs
@@ -2,6 +2,10 @@ import { defineConfig } from '@vscode/test-cli';
2
import { mkdtempSync } from 'fs';
3
import * as os from 'os';
4
import { join } from 'path';
5
+import * as dotenv from 'dotenv';
6
7
+dotenv.config({ override: true });
8
+// console.log(process.env);
9
10
let baseMochaOptions = {
11
ui: 'tdd',
0 commit comments