Skip to content

Commit 828cc0f

Browse files
authored
Merge branch 'master' into fix/correctly_ignore_activity_label_bounds
2 parents 51b0dd7 + e9dfc68 commit 828cc0f

6 files changed

Lines changed: 40 additions & 37 deletions

File tree

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20
1+
24

package-lock.json

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

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
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
},
@@ -132,11 +132,11 @@
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",
@@ -152,7 +152,7 @@
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",

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)