Make timeout higher for astro check tests as TypeScript is very slow on Windows in CI (#3966)
This commit is contained in:
parent
f5c9d8e829
commit
72e777aad8
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue