koffi
Version:
Fast and simple C FFI (foreign function interface) for Node.js
31 lines (24 loc) • 909 B
JavaScript
const path = require('path');
const runChildProcess = require('./spawnTask').runChildProcess;
/*
* Execute tests with given filter conditions as a child process
*/
const executeTests = async function () {
try {
const workingDir = path.join(__dirname, '../');
const relativeBuildPath = path.join('../', 'unit-test');
const buildPath = path.join(__dirname, './unit-test');
const envVars = { ...process.env, REL_BUILD_PATH: relativeBuildPath, BUILD_PATH: buildPath };
console.log('Starting to run tests in ', buildPath, new Date());
const code = await runChildProcess('test', { cwd: workingDir, env: envVars });
if (code !== '0') {
process.exitCode = code;
process.exit(process.exitCode);
}
console.log('Completed running tests', new Date());
} catch (e) {
console.log('Error occured running tests', new Date());
}
};
executeTests();
;