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

@ -13,7 +13,7 @@ const pkg = JSON.parse (fs.readFileSync ('package.json', 'utf-8'));
fs.writeFileSync ('package.json', JSON.stringify (pkg, null, 2));
child_process.execSync ('yarn lint', { stdio: 'inherit' });
if (typeof pkg.scripts !=='undefined' && typeof pkg.scripts.test === 'string')
if (typeof pkg.scripts !== 'undefined' && typeof pkg.scripts.test === 'string')
child_process.execSync ('yarn test', { stdio: 'inherit' });
child_process.exec ('git log -1 | grep \'\\[no publish\\]\'')

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'),