Change shortcut separator to be + and no spaces

This commit is contained in:
Jonathan Tran
2024-08-22 13:59:35 -04:00
parent af7cb69831
commit 61f6e7bc99
2 changed files with 14 additions and 15 deletions

View File

@ -22,13 +22,13 @@ test.describe('Electron app header tests', () => {
let text
switch (process.platform) {
case 'darwin':
text = 'Commands⌘ K'
text = 'Commands⌘K'
break
case 'win32':
text = 'CommandsCtrl + K'
text = 'CommandsCtrl+K'
break
default: // 'linux' etc.
text = 'CommandsCtrl K'
text = 'CommandsCtrl+K'
break
}
const commandsButton = page.getByRole('button', { name: 'Commands' })