We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1573dac commit a3f12ceCopy full SHA for a3f12ce
e2e_tests/integration/saved-scripts.spec.ts
@@ -41,8 +41,10 @@ describe('Saved Scripts', () => {
41
cy.get('[data-testid="scriptTitle-script name"]').click()
42
cy.get('[data-testid="currentlyEditing"]').contains('script name')
43
// Editing script updates name and content
44
+ const clearInput =
45
+ Cypress.platform == 'darwin' ? '{cmd}a{del}' : '{ctrl}a{del}'
46
cy.get('[data-testid="activeEditor"] textarea')
- .type('{meta}a{del}') // select all and delete
47
+ .type(clearInput)
48
.type('// Guide{shift}{enter}:play movies', { force: true })
49
cy.get('[title="Update favorite"]').click()
50
0 commit comments