add test script to node

This commit is contained in:
Timo Hocker 2020-02-13 08:33:42 +01:00
parent b0d34e4cd2
commit 53e0f0569f
2 changed files with 3 additions and 3 deletions

View File

@ -45,7 +45,7 @@ async function run (folder, args) {
{ cwd: snip_folder, stdio: 'inherit' }
);
child_process.execSync (
'yarn add --dev @scode/eslint-config eslint',
'yarn add --dev @scode/eslint-config eslint nyc ava',
{ cwd: snip_folder, stdio: 'inherit' }
);
@ -53,7 +53,7 @@ async function run (folder, args) {
await fs.readFile (path.join (snip_folder, 'package.json'), 'utf-8')
);
package_json.scripts = { lint: 'eslint .' };
package_json.scripts = { lint: 'eslint .', test: 'nyc ava' };
await fs.writeFile (
path.join (snip_folder, 'package.json'),