Skip to content

Commit

Permalink
integrationTests: suppress warnings from 'npm install'
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanGoncharov committed Jun 13, 2020
1 parent 249c5fa commit 372b549
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion integrationTests/integration-test.js
Expand Up @@ -24,7 +24,7 @@ describe('Integration Tests', () => {
exec(`cp -R ${path.join(__dirname, 'ts')} ${tmpDir}`);

const cwd = path.join(tmpDir, 'ts');
exec('npm i', { cwd });
exec('npm install --silent', { cwd });
exec('npm test', { cwd });
}).timeout(40000);
});
1 change: 0 additions & 1 deletion integrationTests/ts/package.json
@@ -1,5 +1,4 @@
{
"version": "1.0.0",
"scripts": {
"test": "node test.js"
},
Expand Down

0 comments on commit 372b549

Please sign in to comment.