From 7b7b45cff5313590e1ecdf85fa61909808865e72 Mon Sep 17 00:00:00 2001 From: Edoardo Scibona <12040076+velut@users.noreply.github.com> Date: Mon, 17 Jan 2022 14:44:05 +0100 Subject: [PATCH] test: increase test timeout to 30s --- package.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 8433199c..3a0d0fd1 100644 --- a/package.json +++ b/package.json @@ -28,11 +28,11 @@ "start": "dts watch --target node", "build:check": "tsc --noEmit", "build": "tsc --noEmit && dts build --target node", - "test": "dts test --runInBand --testTimeout=20000", - "test:packages": "dts test test/package-snapshots --maxWorkers=4 --testTimeout=20000", - "test:cov": "dts test --coverage --maxWorkers=4 --testTimeout=20000", + "test": "dts test --runInBand --testTimeout=30000", + "test:packages": "dts test test/package-snapshots --maxWorkers=4 --testTimeout=30000", + "test:cov": "dts test --coverage --maxWorkers=4 --testTimeout=30000", "test:watch": "dts test --runInBand --watchAll --coverage", - "test:ci": "dts test --coverage --maxWorkers=2 --testTimeout=20000 --bail --ci", + "test:ci": "dts test --coverage --maxWorkers=2 --testTimeout=30000 --bail --ci", "lint": "dts lint src test", "lint:fix": "dts lint src test --fix", "debug:analyze": "yarn ts-node --skip-project scripts/debug-analyze.ts",