Skip to content

Commit

Permalink
Bump eslint-plugin-playwright from 1.6.2 to 1.7.0 (#9280)
Browse files Browse the repository at this point in the history
* Bump eslint-plugin-playwright from 1.6.2 to 1.7.0

Bumps [eslint-plugin-playwright](https://github.com/playwright-community/eslint-plugin-playwright) from 1.6.2 to 1.7.0.
- [Release notes](https://github.com/playwright-community/eslint-plugin-playwright/releases)
- [Changelog](https://github.com/playwright-community/eslint-plugin-playwright/blob/main/CHANGELOG.md)
- [Commits](playwright-community/eslint-plugin-playwright@v1.6.2...v1.7.0)

---
updated-dependencies:
- dependency-name: eslint-plugin-playwright
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* Fix lint

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Todd Schiller <todd.schiller@gmail.com>
  • Loading branch information
dependabot[bot] and twschiller authored Oct 15, 2024
1 parent d4726d6 commit a4f9e42
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions end-to-end-tests/tests/runtime/allFrames.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ test("8527: availability allFrames declaration", async ({

// Wait because `all()` doesn't wait and Playwright needs to wait for the triggers to run
await page.locator("mark").first().waitFor();
const markLocators = await page.locator("mark").all();
const markLocators = page.locator("mark");

expect(markLocators).toHaveLength(2);
await expect(markLocators).toHaveCount(2);

for (const markLocator of markLocators) {
for (const markLocator of await markLocators.all()) {
// Expect yellow
await expect(markLocator).toHaveCSS("background-color", "rgb(255, 255, 0)");
}
Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@
"eslint": "^8.57.0",
"eslint-config-pixiebrix": "^0.39.0",
"eslint-plugin-local-rules": "^3.0.2",
"eslint-plugin-playwright": "^1.6.2",
"eslint-plugin-playwright": "^1.7.0",
"fake-indexeddb": "^6.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
Expand Down

0 comments on commit a4f9e42

Please sign in to comment.