Skip to content
This repository was archived by the owner on Oct 1, 2024. It is now read-only.

Commit 8909061

Browse files
authored
Merge pull request #1085 from microsoft/security_fix
fix security vulnerabilities
2 parents 3e99967 + 1d2dc5a commit 8909061

File tree

8 files changed

+1374
-1437
lines changed

8 files changed

+1374
-1437
lines changed

gulpfile.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -114,9 +114,9 @@ gulp.task("test", (done) => {
114114
// and restore extensionDependencies after test exited.
115115
removeExtensionDependencies();
116116

117-
const child = childProcess.spawn("node", ["./node_modules/vscode/bin/test"], {
117+
const child = childProcess.spawn("node", ["./out/test/runTest"], {
118118
cwd: __dirname,
119-
env: Object.assign({}, process.env, { CODE_TESTS_WORKSPACE: path.join(__dirname, "test/resources/blink") }),
119+
env: Object.assign({}, process.env),
120120
});
121121

122122
child.stdout.on("data", (data) => {

0 commit comments

Comments
 (0)