Skip to content

Commit a07ca15

Browse files
authored
Merge pull request #3029 from nwalters512/upgrade-compute-engine-0.58.0
Upgrade Compute Engine and Playwright
2 parents bae49ce + e15eed3 commit a07ca15

3 files changed

Lines changed: 26 additions & 26 deletions

File tree

package-lock.json

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

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,12 +128,12 @@
128128
},
129129
"prettier": "@cortex-js/prettier-config",
130130
"dependencies": {
131-
"@cortex-js/compute-engine": "0.55.6"
131+
"@cortex-js/compute-engine": "0.58.0"
132132
},
133133
"devDependencies": {
134134
"@arnog/esbuild-plugin-less": "^1.1.0",
135135
"@cortex-js/prettier-config": "^1.2.0",
136-
"@playwright/test": "^1.58.2",
136+
"@playwright/test": "^1.60.0",
137137
"@types/jest": "^30.0.0",
138138
"@typescript-eslint/eslint-plugin": "^8.46.3",
139139
"@typescript-eslint/parser": "^8.26.1",

test/playwright-tests/physical-keyboard.spec.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -483,11 +483,11 @@ test('keyboard cut and paste', async ({ page, browserName }) => {
483483
const modifierKey = process.platform === 'darwin' ? 'Meta' : 'Control';
484484

485485
// On macOS, Cmd+A doesn't trigger select-all in Playwright's bundled
486-
// Chromium/Firefox (both spoof a Win32 user agent). Use Ctrl+A instead;
487-
// it works in Playwright on Mac and is the standard select-all on other
488-
// platforms. Cmd+A works correctly in real Chrome/Edge/Firefox on Mac.
486+
// Chromium. Use Ctrl+A instead; it works in Playwright on Mac and is the
487+
// standard select-all on other platforms. Cmd+A works correctly in real
488+
// Chrome/Edge on Mac and in Playwright's bundled Firefox.
489489
const selectAllCommand =
490-
modifierKey === 'Meta' && (browserName === 'chromium' || browserName === 'firefox')
490+
modifierKey === 'Meta' && browserName === 'chromium'
491491
? 'Control+a'
492492
: `${modifierKey}+a`;
493493

0 commit comments

Comments
 (0)