Skip to content

Commit

Permalink
Fix missing , in README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
elie222 authored Nov 15, 2023
1 parent 6637b06 commit 1a9fab5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ test("auto Playwright example", async ({ page }) => {
// `auto` can assert the state of the website
// In this case, the result is a boolean outcome
const searchInputHasHeaderText = await auto(`Is the contents of the search box equal to "${headerText}"?` { page, test });
const searchInputHasHeaderText = await auto(`Is the contents of the search box equal to "${headerText}"?`, { page, test });
expect(searchInputHasHeaderText).toBe(true);
});
Expand Down

0 comments on commit 1a9fab5

Please sign in to comment.