-
Notifications
You must be signed in to change notification settings - Fork 1
/
local.js
56 lines (43 loc) · 1.27 KB
/
local.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
/* eslint-disable */
const Mocha = require('mocha');
const fs = require('fs');
const path = require('path');
const glob = require('glob');
require('colors');
const _module = process.argv[2];
const task = process.argv[3];
if (!_module) {
return console.error(
`${'Не указан модуль с задачей. Например:'.red.bold}
${'npm run test:local 0-module 1-task'.yellow}`
);
}
if (!task) {
return console.error(
`${'Не указана задача. Например:'.red.bold}
${'npm run test:local 0-module 1-task'.yellow}`
);
}
const mocha = new Mocha({
reporter: 'spec',
useColors: true,
});
const testDir = path.join(__dirname, _module, task, 'test');
if (!fs.existsSync(testDir)) {
return console.error(
`${'Задача'.red.bold} ${`${_module}/${task}`.yellow} ${'отсутствует. Проверьте правильность команды.'.red.bold}`
);
}
const files = glob.sync(`${testDir}/**/*.test.js`);
if (!files.length) {
return console.error(
`${'К задаче'.red.bold} ${`${_module}/${task}`.yellow} ${'отсутствуют тесты'.red.bold}`
);
}
files.forEach(file => {
mocha.addFile(file);
});
// Run the tests.
mocha.run(function(failures) {
process.exitCode = failures ? 1 : 0;
});