From 3466be19923523c7a0d8cca429f54b0bd69b0aed Mon Sep 17 00:00:00 2001 From: Paulo Castro Date: Tue, 14 Jan 2020 17:12:17 +0000 Subject: [PATCH] Increase default mocha test timeout to avoid spurious CI failures Change-type: patch Signed-off-by: Paulo Castro --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 4e82e0ba..9e7aff47 100644 --- a/package.json +++ b/package.json @@ -50,7 +50,7 @@ "package": "npm run build:fast && npm run build:standalone && npm run build:installer", "release": "ts-node --type-check -P automation/tsconfig.json automation/run.ts release", "pretest": "npm run build", - "test": "mocha -r ts-node/register \"tests/**/*.spec.ts\"", + "test": "mocha --timeout 6000 -r ts-node/register \"tests/**/*.spec.ts\"", "test:fast": "npm run build:fast && npm run test", "ci": "npm run test && catch-uncommitted", "watch": "gulp watch",