Make timeout higher for astro check tests as TypeScript is very slow on Windows in CI (#3966)

This commit is contained in:
Erika 2022-07-18 17:59:08 -04:00 committed by GitHub
parent f5c9d8e829
commit 72e777aad8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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);