fix test harness issue with emscripten
This commit is contained in:
parent
eb84d5747a
commit
35e7e1f464
@ -48,16 +48,16 @@ if (argv._.length != 1) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
var testScriptName = path.resolve(argv._[0]);
|
var testScriptName = path.resolve(argv._[0]);
|
||||||
var projectRoot = path.resolve(__dirname, "../../");
|
var projectRoot = path.resolve(__dirname, "../../") + "/";
|
||||||
if (!testScriptName.startsWith(projectRoot)) {
|
if (!testScriptName.startsWith(projectRoot)) {
|
||||||
console.log("test file must be inside wallet project root");
|
console.log("test file must be inside wallet project root");
|
||||||
process.exit(1);
|
process.exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
var testScript = "./" + testScriptName.substring(projectRoot.length);
|
var testScript = testScriptName.substring(projectRoot.length);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
var stats = fs.lstatSync(path.resolve(projectRoot, testScript));
|
var stats = fs.lstatSync(path.resolve(projectRoot, "./" + testScript));
|
||||||
if (!stats.isFile()) {
|
if (!stats.isFile()) {
|
||||||
throw Error("test must be a file");
|
throw Error("test must be a file");
|
||||||
}
|
}
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
"lib/emscripten/taler-emscripten-lib": {
|
"lib/emscripten/taler-emscripten-lib": {
|
||||||
format: "global",
|
format: "global",
|
||||||
exports: "Module",
|
exports: "Module",
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
Loading…
Reference in New Issue
Block a user