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) {}
|
} catch (err) {}
|
||||||
|
|
||||||
expect(proc?.stdout).to.include('0 errors');
|
expect(proc?.stdout).to.include('0 errors');
|
||||||
});
|
}).timeout(35000);
|
||||||
|
|
||||||
it('astro check has errors', async () => {
|
it('astro check has errors', async () => {
|
||||||
let stdout = undefined;
|
let stdout = undefined;
|
||||||
|
@ -54,7 +54,7 @@ describe('astro cli', () => {
|
||||||
}
|
}
|
||||||
|
|
||||||
expect(stdout).to.include('1 error');
|
expect(stdout).to.include('1 error');
|
||||||
});
|
}).timeout(35000);
|
||||||
|
|
||||||
it('astro dev welcome', async () => {
|
it('astro dev welcome', async () => {
|
||||||
const pkgURL = new URL('../package.json', import.meta.url);
|
const pkgURL = new URL('../package.json', import.meta.url);
|
||||||
|
|
Loading…
Reference in a new issue