Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWinnie Hellmann <winnie@gitlab.com>2018-12-10 15:42:25 +0300
committerWinnie Hellmann <winnie@gitlab.com>2018-12-11 15:06:19 +0300
commit635686263006d906de981c5be97a1f2f2747eb1f (patch)
treef7c3488beeb53ed4f87782bee42d63ff96f9b97b
parentfac4d54f3d4a7ce2e992c490c9a1164ae4ff17ac (diff)
Set timeout for Jest to 300ms
-rw-r--r--spec/frontend/test_setup.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/frontend/test_setup.js b/spec/frontend/test_setup.js
index 742ea60ecbd..7ad2e97e7e6 100644
--- a/spec/frontend/test_setup.js
+++ b/spec/frontend/test_setup.js
@@ -1,4 +1,4 @@
-const testTimeoutInMs = 0;
+const testTimeoutInMs = 300;
jest.setTimeout(testTimeoutInMs);
let testStartTime;