Skip to content

Commit

Permalink
add global timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
ada-x64 committed Dec 4, 2023
1 parent 8a1af5a commit b7d0ab8
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tools/perspective-test/src/js/fixture.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ export const test = base.extend<{
consoleLogs: [
async ({ page }, use) => {
const logs: Logs = {};

page.setDefaultTimeout(5000);

page.on("console", (msg) => {
let type = msg.type();
let text = msg.text();
Expand Down

0 comments on commit b7d0ab8

Please sign in to comment.