From 49a8cd1aa6ca4cadbec0cabb0611cd596e73bfa3 Mon Sep 17 00:00:00 2001 From: Fleny Date: Wed, 20 Aug 2025 21:57:40 +0200 Subject: [PATCH] Double the REST E2E testing timeout (#4318) Co-authored-by: Link --- packages/rest/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/rest/package.json b/packages/rest/package.json index a0846f190..8db6d0b06 100644 --- a/packages/rest/package.json +++ b/packages/rest/package.json @@ -29,7 +29,7 @@ "test:unit:watch": "mocha --no-warnings --watch --parallel 'tests/unit/**/*.spec.ts'", "test:deno-unit": "deno -A ../../node_modules/mocha/bin/mocha.js --config ../../.mocharc.base.cjs 'tests/unit/**/*.spec.ts'", "test:bun-unit": "bun ../../node_modules/mocha/bin/mocha.js --config ../../.mocharc.base.cjs 'tests/unit/**/*.spec.ts'", - "test:e2e": "c8 --r lcov mocha --exit --no-warnings --jobs 1 --t 30000 'tests/e2e/**/*.spec.ts' && node ../../scripts/coveragePathFixing.js rest", + "test:e2e": "c8 --r lcov mocha --exit --no-warnings --jobs 1 --t 60000 'tests/e2e/**/*.spec.ts' && node ../../scripts/coveragePathFixing.js rest", "test:type": "tsc --noEmit", "test:test-type": "tsc --project tests/tsconfig.json" },