Skip to content

Commit 1152b5e

Browse files
chore(deps-dev): bump eslint-plugin-playwright from 2.8.0 to 2.9.0 (#3476)
1 parent 444b7d7 commit 1152b5e

5 files changed

Lines changed: 15 additions & 11 deletions

File tree

package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@
132132
"eslint-plugin-jest": "~29.15.0",
133133
"eslint-plugin-jest-extended": "^3.0.1",
134134
"eslint-plugin-notice": "~1.0.0",
135-
"eslint-plugin-playwright": "~2.8.0",
135+
"eslint-plugin-playwright": "~2.9.0",
136136
"eslint-plugin-prettier": "~5.5.5",
137137
"eslint-plugin-unicorn": "~56.0.1",
138138
"expect-playwright": "~0.8.0",

test/e2e/.eslintrc.cjs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ limitations under the License.
1717
module.exports = {
1818
extends: ['plugin:playwright/recommended'],
1919
rules: {
20-
/* This rule is for playwright-test and we are using jest-playwright */
20+
// This rule is for playwright-test and we are using jest-playwright
2121
'playwright/no-standalone-expect': 'off',
22+
// not working as expected when introduced in version 2.9.0 of eslint-plugin-playwright
23+
'playwright/no-duplicate-hooks': 'off',
2224
},
2325
};

test/e2e/overlays.rendering.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ class OverlaysPageTester extends PageTester {
126126
}
127127

128128
private async setBpmnElementId(id: string): Promise<void> {
129-
await this.page.fill('#bpmn-id-input', id);
129+
await this.page.locator('#bpmn-id-input').fill(id);
130130
}
131131
}
132132

test/performance/.eslintrc.cjs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ limitations under the License.
1717
module.exports = {
1818
extends: ['plugin:playwright/recommended'],
1919
rules: {
20-
/* This rule is for playwright-test and we are using jest-playwright */
20+
// This rule is for playwright-test and we are using jest-playwright
2121
'playwright/no-standalone-expect': 'off',
22+
// not working as expected when introduced in version 2.9.0 of eslint-plugin-playwright
23+
'playwright/no-duplicate-hooks': 'off',
2224
},
2325
};

0 commit comments

Comments
 (0)