File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- 20
1+ 24
Original file line number Diff line number Diff line change 105105 },
106106 "dependencies" : {
107107 "@typed-mxgraph/typed-mxgraph" : " ~1.0.8" ,
108- "es-toolkit" : " ~1.42 .0" ,
108+ "es-toolkit" : " ~1.45 .0" ,
109109 "fast-xml-parser" : " 5.4.1" ,
110110 "mxgraph" : " 4.2.2"
111111 },
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" ,
139- "fs-extra" : " ~11.3.2 " ,
139+ "fs-extra" : " ~11.3.3 " ,
140140 "husky" : " ~9.1.7" ,
141141 "jest" : " ~30.2.0" ,
142142 "jest-environment-jsdom" : " ~30.2.0" ,
152152 "npm-run-all" : " ~4.1.5" ,
153153 "pinst" : " ~3.0.0" ,
154154 "playwright" : " ~1.58.2" ,
155- "postcss" : " ~8.5.6 " ,
155+ "postcss" : " ~8.5.8 " ,
156156 "postcss-cli" : " ~11.0.1" ,
157157 "prettier" : " ~3.8.1" ,
158158 "rimraf" : " ~6.1.2" ,
Original file line number Diff line number Diff line change @@ -17,7 +17,9 @@ limitations under the License.
1717module . 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} ;
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -17,7 +17,9 @@ limitations under the License.
1717module . 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} ;
You can’t perform that action at this time.
0 commit comments