Skip to content

Commit 1601799

Browse files
committed
fix(e2e): use destructuring pattern for Playwright beforeEach fixtures
1 parent 1c0e2f2 commit 1601799

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

crates/web/ui/e2e/specs/agents.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ async function deleteAgentByName(page, agentName) {
8080
}
8181

8282
test.describe("Agents settings page", () => {
83-
test.beforeEach((_fixtures, testInfo) => {
83+
test.beforeEach(async ({ page: _page }, testInfo) => {
8484
testInfo.setTimeout(90_000);
8585
});
8686

0 commit comments

Comments
 (0)