Skip to content

Commit d67f105

Browse files
integrationTests: suppress warnings from 'npm install' (#2652)
1 parent d1d476c commit d67f105

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

integrationTests/integration-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ describe('Integration Tests', () => {
2424
exec(`cp -R ${path.join(__dirname, 'ts')} ${tmpDir}`);
2525

2626
const cwd = path.join(tmpDir, 'ts');
27-
exec('npm i', { cwd });
27+
exec('npm install --silent', { cwd });
2828
exec('npm test', { cwd });
2929
}).timeout(40000);
3030
});

integrationTests/ts/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"version": "1.0.0",
32
"scripts": {
43
"test": "node test.js"
54
},

0 commit comments

Comments
 (0)