From e7e6260c980e59037a14f437dc8387c36fe82d41 Mon Sep 17 00:00:00 2001 From: georgiyekkert Date: Wed, 28 Apr 2021 20:41:37 -0700 Subject: [PATCH] tests: add GCE tests for diregapic (#549) * tests: add GCE tests for diregapic * tests: review fixes --- .mocharc.js | 2 +- package.json | 1 + system-test/.eslintrc.yml | 7 +++++++ 3 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 system-test/.eslintrc.yml diff --git a/.mocharc.js b/.mocharc.js index 0b600509..82981c88 100644 --- a/.mocharc.js +++ b/.mocharc.js @@ -14,7 +14,7 @@ const config = { "enable-source-maps": true, "throw-deprecation": true, - "timeout": 10000, + "timeout": 300000, "recursive": true } if (process.env.MOCHA_THROW_DEPRECATION === 'false') { diff --git a/package.json b/package.json index 80e6948c..5973889b 100644 --- a/package.json +++ b/package.json @@ -133,6 +133,7 @@ "sinon": "^9.2.2", "ts-loader": "^8.0.12", "typescript": "^4.1.3", + "uuid": "^8.0.0", "webpack": "^5.10.1", "webpack-cli": "^4.2.0" }, diff --git a/system-test/.eslintrc.yml b/system-test/.eslintrc.yml new file mode 100644 index 00000000..4f1b7636 --- /dev/null +++ b/system-test/.eslintrc.yml @@ -0,0 +1,7 @@ +--- +env: + mocha: true +rules: + node/no-unsupported-features/es-syntax: off + node/no-unsupported-features/node-builtins: off + no-console: off