We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3a81bc commit 56704f3Copy full SHA for 56704f3
scripts/test.js
@@ -60,7 +60,12 @@ async function runTests() {
60
}
61
62
if (mochaTest) {
63
- cp.execSync(rescript_exe, {
+ cp.execSync(`${rescript_exe} clean`, {
64
+ cwd: path.join(__dirname, "..", "tests/tests"),
65
+ stdio: [0, 1, 2],
66
+ });
67
+
68
+ cp.execSync(`${rescript_exe} build`, {
69
cwd: path.join(__dirname, "..", "tests/tests"),
70
stdio: [0, 1, 2],
71
});
0 commit comments