Skip to content

Commit 1cf42b8

Browse files
committed
chore: update Playwright to 1.52.0, update devDependencies
1 parent 45eb771 commit 1cf42b8

5 files changed

Lines changed: 37 additions & 32 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ After the run, a detailed HTML report and a summary lite report in JSON format a
1818

1919
## Adding e2ed to a project
2020

21-
Prerequisites: [node](https://nodejs.org/en/) >=20,
21+
Prerequisites: [node](https://nodejs.org/en/) >=22,
2222
[TypeScript](https://www.typescriptlang.org/) >=5.
2323

2424
All commands below are run from the root directory of the project.

package-lock.json

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

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
},
1717
"bugs": "https://github.com/joomcode/e2ed/issues",
1818
"engines": {
19-
"node": ">=20.16.0"
19+
"node": ">=22.14.0"
2020
},
2121
"packageManager": "npm@10",
2222
"homepage": "https://github.com/joomcode/e2ed#readme",
@@ -25,21 +25,21 @@
2525
"url": "git+https://github.com/joomcode/e2ed.git"
2626
},
2727
"dependencies": {
28-
"@playwright/test": "1.51.1",
28+
"@playwright/test": "1.52.0",
2929
"create-locator": "0.0.27",
3030
"get-modules-graph": "0.0.11",
3131
"sort-json-keys": "1.0.3"
3232
},
3333
"devDependencies": {
34-
"@playwright/browser-chromium": "1.51.1",
35-
"@types/node": "22.14.0",
34+
"@playwright/browser-chromium": "1.52.0",
35+
"@types/node": "22.15.19",
3636
"@typescript-eslint/eslint-plugin": "7.18.0",
3737
"@typescript-eslint/parser": "7.18.0",
3838
"assert-modules-support-case-insensitive-fs": "1.0.1",
3939
"assert-package-lock-is-consistent": "1.0.0",
4040
"eslint": "8.57.1",
4141
"eslint-config-airbnb-base": "15.0.0",
42-
"eslint-config-prettier": "10.1.1",
42+
"eslint-config-prettier": "10.1.5",
4343
"eslint-plugin-import": "2.31.0",
4444
"eslint-plugin-simple-import-sort": "12.1.1",
4545
"eslint-plugin-typescript-sort-keys": "3.3.0",

src/utils/error/getStackTrace.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ const getStackTraceBody = function getStackTrace(): readonly StackFrame[] | unde
99

1010
Error.stackTraceLimit = 5000;
1111

12+
// eslint-disable-next-line @typescript-eslint/unbound-method
1213
const originalPrepareStackTrace = Error.prepareStackTrace;
1314

1415
// eslint-disable-next-line no-restricted-syntax

src/utils/uiMode/fixSourceCode.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ if (isUiMode) {
7878

7979
// eslint-disable-next-line @typescript-eslint/unbound-method
8080
Error.captureStackTrace = OriginalError.captureStackTrace;
81+
// eslint-disable-next-line @typescript-eslint/unbound-method
8182
Error.prepareStackTrace = OriginalError.prepareStackTrace;
8283
Error.stackTraceLimit = OriginalError.stackTraceLimit;
8384
Error.toString = () => originalErrorString;

0 commit comments

Comments
 (0)