|
16 | 16 | "outFiles": [ |
17 | 17 | "${workspaceFolder}/out/**/*" |
18 | 18 | ], |
19 | | - "preLaunchTask": "Compile" |
| 19 | + "preLaunchTask": "Compile", |
| 20 | + "skipFiles": ["<node_internals>/**"] |
20 | 21 | }, |
21 | 22 | { |
22 | 23 | "name": "Extension inside container", |
|
67 | 68 | "${workspaceFolder}/out/client/**/*.js" |
68 | 69 | ], |
69 | 70 | "cwd": "${workspaceFolder}", |
70 | | - "preLaunchTask": "Compile" |
| 71 | + "preLaunchTask": "Compile", |
| 72 | + "skipFiles": ["<node_internals>/**"] |
71 | 73 | }, |
72 | 74 | { |
73 | 75 | "name": "Tests (Debugger, VS Code, *.test.ts)", |
|
89 | 91 | "preLaunchTask": "Compile", |
90 | 92 | "env": { |
91 | 93 | "IS_CI_SERVER_TEST_DEBUGGER": "1" |
92 | | - } |
| 94 | + }, |
| 95 | + "skipFiles": ["<node_internals>/**"] |
93 | 96 | }, |
94 | 97 | { |
95 | 98 | "name": "Tests (Single Workspace, VS Code, *.test.ts)", |
|
110 | 113 | "outFiles": [ |
111 | 114 | "${workspaceFolder}/out/**/*.js" |
112 | 115 | ], |
113 | | - "preLaunchTask": "Compile" |
| 116 | + "preLaunchTask": "Compile", |
| 117 | + "skipFiles": ["<node_internals>/**"] |
114 | 118 | }, |
115 | 119 | { |
116 | 120 | "name": "Tests (Multiroot, VS Code, *.test.ts)", |
|
129 | 133 | "outFiles": [ |
130 | 134 | "${workspaceFolder}/out/**/*" |
131 | 135 | ], |
132 | | - "preLaunchTask": "Compile" |
| 136 | + "preLaunchTask": "Compile", |
| 137 | + "skipFiles": ["<node_internals>/**"] |
133 | 138 | }, |
134 | 139 | { |
135 | 140 | "name": "Unit Tests (without VS Code, *.unit.test.ts)", |
|
150 | 155 | "outFiles": [ |
151 | 156 | "${workspaceFolder}/out/**/*.js" |
152 | 157 | ], |
153 | | - "preLaunchTask": "Compile" |
| 158 | + "preLaunchTask": "Compile", |
| 159 | + "skipFiles": ["<node_internals>/**"] |
154 | 160 | }, |
155 | 161 | { |
156 | 162 | "name": "Functional Tests (without VS Code, *.functional.test.ts)", |
|
171 | 177 | "outFiles": [ |
172 | 178 | "${workspaceFolder}/out/**/*.js" |
173 | 179 | ], |
174 | | - "preLaunchTask": "Compile" |
| 180 | + "preLaunchTask": "Compile", |
| 181 | + "skipFiles": ["<node_internals>/**"] |
175 | 182 | }, |
176 | 183 | { |
177 | 184 | "type": "node", |
|
180 | 187 | "program": "${workspaceFolder}/node_modules/gulp/bin/gulp.js", |
181 | 188 | "args": [ |
182 | 189 | "watch" |
183 | | - ] |
| 190 | + ], |
| 191 | + "skipFiles": ["<node_internals>/**"] |
184 | 192 | }, |
185 | 193 | { |
186 | 194 | "name": "Behave Smoke Tests", |
|
0 commit comments