From d6bb463c9bed0ca2bd1fbff59fba1ec21d02e283 Mon Sep 17 00:00:00 2001 From: kdhttps Date: Wed, 1 Sep 2021 15:48:43 +0530 Subject: [PATCH] test(package.json): try to update unit test timeout --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index d9d07fed..d4b4e0bf 100644 --- a/package.json +++ b/package.json @@ -15,7 +15,7 @@ "scripts": { "start": "NODE_ENV=production node server/app.js", "test": "npm run test:unit && npm run test:integration && npm run test:behaviour", - "test:unit": "NODE_ENV=test ALLOW_CONFIG_MUTATIONS=true mocha --exit --no-warnings test/*.test.js --timeout 5000", + "test:unit": "NODE_ENV=test ALLOW_CONFIG_MUTATIONS=true mocha --exit --no-warnings test/*.test.js --timeout 10000", "test:integration": "NODE_ENV=test mocha --config .mocharc-integration.json --exit --no-warnings test/*.spec.js", "test:behaviour": "NODE_ENV=test cucumber-js --exit test/features", "cover": "npm run cover:unit && npm run cover:integration && npm run cover:report",