Skip to content

Commit

Permalink
Fix BrowserTool instantiation in test script (#86)
Browse files Browse the repository at this point in the history
  • Loading branch information
slavingia authored Nov 21, 2024
2 parents f164c1b + b7e4e1c commit c491260
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/shortest/scripts/test-loop.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ async function testBrowser() {
const context = await browserManager.launch();
const page = context.pages()[0];

const browserTool = new BrowserTool(page, {
const browserTool = new BrowserTool(page, browserManager, {
width: 1920,
height: 940
});
Expand Down

0 comments on commit c491260

Please sign in to comment.