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" },