Skip to content

Commit 99360a4

Browse files
committed
PRO-19540 chore: update Playwright to 1.60.0 and TypeScript to 6.0.3
1 parent 1b7ec18 commit 99360a4

3 files changed

Lines changed: 82 additions & 64 deletions

File tree

autotests/tests/e2edReportExample/browserData.ts

Lines changed: 21 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,20 +28,36 @@ test(
2828
})();
2929

3030
const consoleMessages = getBrowserConsoleMessages();
31-
const columnNumber = 12;
31+
const column = 12;
32+
const columnNumber = column;
3233
const url = '';
3334

3435
const consoleMessagesWithoutDate = consoleMessages.map(
3536
({dateTimeInIso: _, ...messageWithoutDate}) => messageWithoutDate,
3637
);
3738

3839
await expect(consoleMessagesWithoutDate, 'getBrowserConsoleMessages read all of messages').eql([
39-
{args: ['error'], location: {columnNumber, lineNumber: 3, url}, text: 'error', type: 'error'},
40-
{args: ['info'], location: {columnNumber, lineNumber: 4, url}, text: 'info', type: 'info'},
41-
{args: ['log'], location: {columnNumber, lineNumber: 5, url}, text: 'log', type: 'log'},
40+
{
41+
args: ['error'],
42+
location: {column, columnNumber, line: 3, lineNumber: 3, url},
43+
text: 'error',
44+
type: 'error',
45+
},
46+
{
47+
args: ['info'],
48+
location: {column, columnNumber, line: 4, lineNumber: 4, url},
49+
text: 'info',
50+
type: 'info',
51+
},
52+
{
53+
args: ['log'],
54+
location: {column, columnNumber, line: 5, lineNumber: 5, url},
55+
text: 'log',
56+
type: 'log',
57+
},
4258
{
4359
args: ['warning'],
44-
location: {columnNumber, lineNumber: 6, url},
60+
location: {column, columnNumber, line: 6, lineNumber: 6, url},
4561
text: 'warning',
4662
type: 'warning',
4763
},

package-lock.json

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

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@
2525
"url": "git+https://github.com/joomcode/e2ed.git"
2626
},
2727
"dependencies": {
28-
"@playwright/test": "1.58.2",
28+
"@playwright/test": "1.60.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.58.2",
35-
"@types/node": "25.3.2",
34+
"@playwright/browser-chromium": "1.60.0",
35+
"@types/node": "25.9.1",
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",
@@ -41,11 +41,11 @@
4141
"eslint-config-airbnb-base": "15.0.0",
4242
"eslint-config-prettier": "10.1.8",
4343
"eslint-plugin-import": "2.32.0",
44-
"eslint-plugin-simple-import-sort": "12.1.1",
44+
"eslint-plugin-simple-import-sort": "13.0.0",
4545
"eslint-plugin-typescript-sort-keys": "3.3.0",
4646
"husky": "9.1.7",
47-
"prettier": "3.8.1",
48-
"typescript": "5.9.3"
47+
"prettier": "3.8.3",
48+
"typescript": "6.0.3"
4949
},
5050
"peerDependencies": {
5151
"@types/node": ">=20",

0 commit comments

Comments
 (0)