Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
"@babel/plugin-proposal-decorators": "^7.29.0",
"@eslint/js": "^10.0.0",
"@rolldown/plugin-babel": "^0.2.2",
"@types/node": "^25.9.3",
"@types/notifyjs": "^3.0.5",
"@types/react": "^19.1.9",
"@types/react-dom": "^19.1.7",
Expand All @@ -58,7 +59,7 @@
"eslint": "^10.0.0",
"get-port": "^7.1.0",
"prettier": "^3.6.2",
"puppeteer": "^24.15.0",
"puppeteer": "^25.0.0",
"rimraf": "^6.0.1",
"tree-kill": "^1.2.0",
"typescript": "^6.0.0",
Expand Down
2 changes: 1 addition & 1 deletion ui/src/tests/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export const clearField = async (element: ElementHandle | Page, selector: string
await elementHandle.click();
await elementHandle.focus();
// click three times to select all
await elementHandle.click({clickCount: 3});
await elementHandle.click({count: 3});
await elementHandle.press('Backspace');
};

Expand Down
Loading
Loading