summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--packages/astro/test/cli.test.js4
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);