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

fix security vulnerabilities #1085

Merged
merged 2 commits into from
Aug 21, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,9 @@ gulp.task("test", (done) => {
// and restore extensionDependencies after test exited.
removeExtensionDependencies();

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

child.stdout.on("data", (data) => {
Expand Down
Loading