From 04c003fcd7d6f25d5be84ccea2deb048b5466228 Mon Sep 17 00:00:00 2001 From: Ivan Goncharov Date: Sun, 14 Jun 2020 01:53:41 +0300 Subject: [PATCH] integrationTests: suppress warnings from 'npm install' --- integrationTests/integration-test.js | 2 +- integrationTests/ts/package.json | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/integrationTests/integration-test.js b/integrationTests/integration-test.js index 9f1edf2bd6..a429baad11 100644 --- a/integrationTests/integration-test.js +++ b/integrationTests/integration-test.js @@ -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); }); diff --git a/integrationTests/ts/package.json b/integrationTests/ts/package.json index 7ca8db7d52..a9090df232 100644 --- a/integrationTests/ts/package.json +++ b/integrationTests/ts/package.json @@ -1,5 +1,4 @@ { - "version": "1.0.0", "scripts": { "test": "node test.js" },