-
Notifications
You must be signed in to change notification settings - Fork 1
/
testRunner.js
58 lines (48 loc) · 1.46 KB
/
testRunner.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// this came from: https://www.sohamkamani.com/blog/javascript/making-a-node-js-test-runner/
const path = require('path');
const fs = require('fs');
const packageRoot = path.dirname(require.main.filename);
global.gameRoot = `${packageRoot}/src/games`;
const tests = [];
function test(name, fn) {
tests.push({ name, fn });
}
function run() {
tests.forEach(t => {
try {
t.fn();
console.log('✅ (passed) ', t.name);
} catch (e) {
console.log('❌ (failed)', t.name);
console.log(e.stack);
}
});
}
function searchForFiles(startPath, filter) {
let toReturn = [];
if (!fs.existsSync(startPath)){
console.log('no dir: ', startPath);
return [];
}
const files = fs.readdirSync(startPath);
files.forEach(file => {
const filename = path.join(startPath,file);
const filenamePieces = filename.split('/');
if (fs.lstatSync(filename).isDirectory()) {
const values = searchForFiles(filename, filter);
toReturn = toReturn.concat(values);
} else if (filenamePieces[filenamePieces.length - 1].charAt(0) != '.' && filename.indexOf(filter) > -1) {
toReturn.push(`./${filename}`);
}
});
return toReturn;
}
let files = process.argv.slice(2);
global.test = test;
if (!(files && files.length)) {
files = searchForFiles('./test','.test.js');
}
files.forEach(file => {
require(`${file}`);
});
run();