You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
778 B
33 lines
778 B
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);
|
|
});
|