diff options
author | 2022-07-18 17:59:08 -0400 | |
---|---|---|
committer | 2022-07-18 17:59:08 -0400 | |
commit | 72e777aad88a6c7946bf07abba849ed93d70bcb8 (patch) | |
tree | 7c8b832afaff8716d755b63ebc09a69ae65bc0e1 | |
parent | f5c9d8e82970dc955a398898a201c00e18adb95e (diff) | |
download | astro-72e777aad88a6c7946bf07abba849ed93d70bcb8.tar.gz astro-72e777aad88a6c7946bf07abba849ed93d70bcb8.tar.zst astro-72e777aad88a6c7946bf07abba849ed93d70bcb8.zip |
Make timeout higher for astro check tests as TypeScript is very slow on Windows in CI (#3966)
Diffstat (limited to '')
-rw-r--r-- | packages/astro/test/cli.test.js | 4 |
1 files 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); |