Fix bug in test.js

This commit is contained in:
Richard Feldman
2016-03-06 11:14:09 -08:00
parent 5caf8b9188
commit 51cef0e9d6

View File

@@ -4,7 +4,5 @@ var path = require("path");
var testDir = path.join(__dirname, "test");
var binPath = path.join(__dirname, "..", "..", "node_modules", ".bin");
var elmTestPath = path.join(binPath, "elm-test");
var elmMakePath = path.join(binPath, "elm-make");
execSync(elmMakePath + " TestRunner.elm --yes --output /dev/null", { cwd: testDir });
execSync(elmTestPath + " TestRunner.elm", { cwd: testDir, stdio: "inherit" });