forked from dequelabs/axe-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest-examples.js
More file actions
32 lines (27 loc) · 778 Bytes
/
Copy pathtest-examples.js
File metadata and controls
32 lines (27 loc) · 778 Bytes
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
const { readdirSync, statSync } = require('fs');
const { join } = require('path');
const execa = require('execa');
const exampleDirs = readdirSync(__dirname)
.map(dir => join(__dirname, dir))
.filter(dir => statSync(dir).isDirectory());
const config = { stdio: 'inherit', shell: true };
// run npm install in parallel
function install(dir) {
return execa('npm install', { cwd: dir, ...config });
}
// run tests synchronously so we can see which one threw an error
function test(dir) {
return execa('npm test', { cwd: dir, ...config });
}
Promise.all(exampleDirs.map(install))
.then(async () => {
for (const dir of exampleDirs) {
await test(dir);
}
// Return successful exit
process.exit();
})
.catch(err => {
console.error(err);
process.exit(1);
});