Skip to content

Commit

Permalink
Fix CG vulnerabilities in dependencies (#333)
Browse files Browse the repository at this point in the history
* Remove react-scripts from root dependencies

* Increase mocha timeout to 60s for integration tests

* Update package-lock in tests according to main package

* Bump mocha to 6.2.3

* Bump rest client version to 1.8.10
  • Loading branch information
KonstantinTyukalov authored Jul 15, 2022
1 parent 2c34e3c commit 6387caf
Show file tree
Hide file tree
Showing 4 changed files with 894 additions and 12,730 deletions.
3 changes: 2 additions & 1 deletion make.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@ target.test = function() {

console.log("-------Integration Tests-------");
run('tsc -p ./test/tests');
run('mocha test/tests');
// Increases timeout for each test, which fixes flaky errors in integration tests.
run('mocha test/tests --timeout 60000');
}

//Deprecated since we automatically build in units before testing, keeping for back compat
Expand Down
Loading

0 comments on commit 6387caf

Please sign in to comment.