Skip to content

Commit

Permalink
increase timeout in browser tests
Browse files Browse the repository at this point in the history
  • Loading branch information
koddsson committed Jan 4, 2024
1 parent d7ee19c commit 9a6e979
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ exports.default = _default;`;
});

it('passes the in-browser tests', async function () {
this.timeout(20000);
this.timeout(40000);

await runTests({
files: [resolve(__dirname, '..', 'fixtures', 'commonjs', 'commonjs-browser-test.js')],
Expand Down
3 changes: 2 additions & 1 deletion packages/dev-server-rollup/test/node/plugins/postcss.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@ html {
}
});

it('passes the in-browser tests', async () => {
it('passes the in-browser tests', async function () {
this.timeout(40000);
await runTests({
files: [resolve(__dirname, '..', 'fixtures', 'postcss', 'postcss-browser-test.js')],
browsers: [chromeLauncher()],
Expand Down

0 comments on commit 9a6e979

Please sign in to comment.