From 72e777aad88a6c7946bf07abba849ed93d70bcb8 Mon Sep 17 00:00:00 2001 From: Erika <3019731+Princesseuh@users.noreply.github.com> Date: Mon, 18 Jul 2022 17:59:08 -0400 Subject: [PATCH] Make timeout higher for astro check tests as TypeScript is very slow on Windows in CI (#3966) --- packages/astro/test/cli.test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/astro/test/cli.test.js b/packages/astro/test/cli.test.js index 4f55927bb..38d8964c2 100644 --- a/packages/astro/test/cli.test.js +++ b/packages/astro/test/cli.test.js @@ -39,7 +39,7 @@ describe('astro cli', () => { } catch (err) {} expect(proc?.stdout).to.include('0 errors'); - }); + }).timeout(35000); it('astro check has errors', async () => { let stdout = undefined; @@ -54,7 +54,7 @@ describe('astro cli', () => { } expect(stdout).to.include('1 error'); - }); + }).timeout(35000); it('astro dev welcome', async () => { const pkgURL = new URL('../package.json', import.meta.url);