From 0c158ccb321dc18cd5661fd7f797c9d591554dc2 Mon Sep 17 00:00:00 2001 From: mattselden12 Date: Wed, 7 Nov 2018 14:19:04 -0800 Subject: [PATCH] Fixed Windows Build Error --- build/symlink-dependencies/index.js | 3 ++- testem.js | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/build/symlink-dependencies/index.js b/build/symlink-dependencies/index.js index 584817c97..aab921bae 100644 --- a/build/symlink-dependencies/index.js +++ b/build/symlink-dependencies/index.js @@ -49,7 +49,8 @@ module.exports = { if (isScopedPackage(dep)) { mkdirpScope(dep, modulesPath); } fs.symlinkSync( path.join('../../../../', dep), - path.join(modulesPath, dep) + path.join(modulesPath, dep), + 'junction' ); }); } diff --git a/testem.js b/testem.js index 4363cdc36..c906d4254 100644 --- a/testem.js +++ b/testem.js @@ -8,7 +8,7 @@ let config = { "disable_watching": true, "launchers": { "Node": { - "command": "./bin/run-node-tests.js", + "exe": "node", args: ["./bin/run-node-tests.js"], "protocol": "tap" } },