Skip to content
Merged
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
4 changes: 4 additions & 0 deletions zeppelin-web-angular/playwright.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ module.exports = defineConfig({
name: 'chromium',
use: {
...devices['Desktop Chrome'],
// Monaco reads the UA to pick its keybinding platform; the faked Windows string
// breaks Ctrl+P/N and Meta+A on macOS. https://playwright.dev/docs/emulation#devices
// webkit must keep its mac UA — the page objects' Meta+A branch relies on it.
userAgent: undefined,
permissions: ['clipboard-read', 'clipboard-write'],
storageState: 'playwright/.auth/user.json'
},
Expand Down
Loading