We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d214761 commit 4a04544Copy full SHA for 4a04544
src/test/unittest/index.ts
@@ -3,10 +3,6 @@ import * as Mocha from 'mocha';
3
import * as glob from 'glob';
4
5
export function run(): Promise<void> {
6
- if ((Reflect as any).metadata === undefined) {
7
- require('reflect-metadata');
8
- }
9
-
10
process.env.VSC_PYTHON_UNIT_TEST = '1';
11
// Create the mocha test
12
const mocha = new Mocha({
src/test/unittests.ts
@@ -14,10 +14,6 @@ if (os.platform() === 'win32') {
14
});
15
}
16
17
-if ((Reflect as any).metadata === undefined) {
18
19
-}
20
21
process.env.VSC_PYTHON_CI_TEST = '1';
22
23
process.env.NODE_ENV = 'production'; // Make sure react is using production bits or we can run out of memory.
0 commit comments