-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
33 lines (28 loc) · 818 Bytes
/
index.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
const fs = require('fs-extra');
const path = require('path');
const { exec } = require('child_process');
const isProd = process.env.PROD !== 'false';
const destPath = path.resolve(__dirname, `${isProd ? '../../tests' : './tests'}`);
if (isProd) {
copyTestsDir();
} else {
installChai(copyTestsDir);
}
function installChai(cb) {
// installing chai package
exec('npm i chai -D', (err) => {
if (err) throw err;
console.log('installed chai successfully');
cb();
});
}
async function copyTestsDir() {
// Copying the tests directory
try {
await fs.copy(path.resolve(__dirname, './src'), destPath);
console.log('created tests directory successfully');
} catch (err) {
console.error(err);
}
}
module.exports.copyTestsDir = copyTestsDir;