From e521a4e3e973f657951496c53c10697a552b7f6d Mon Sep 17 00:00:00 2001 From: phancb Date: Wed, 8 Nov 2023 23:55:00 +0800 Subject: [PATCH] test: increate timeout for riscv64 --- packages/tsc/tests/index.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/tsc/tests/index.spec.ts b/packages/tsc/tests/index.spec.ts index b50b769847..9ae29c5bf0 100644 --- a/packages/tsc/tests/index.spec.ts +++ b/packages/tsc/tests/index.spec.ts @@ -75,6 +75,6 @@ function runVueTsc(cwd: string) { describe(`vue-tsc`, () => { for (const [path, isRoot] of tests) { - it(`vue-tsc no errors (${prettyPath(path, isRoot)})`, () => runVueTsc(path), 40_000); + it(`vue-tsc no errors (${prettyPath(path, isRoot)})`, () => runVueTsc(path), 40_0000); } });