Merge pull request #10960 from overleaf/mj-keybindinging-cypress

[web] Add cypress tests for emacs and vim keybindings

GitOrigin-RevId: 17ada42d39ed81e2a0947fd102e5782428c1c619
This commit is contained in:
Mathias Jakobsen
2023-01-04 11:14:57 +00:00
committed by Copybot
parent 3bf630431d
commit 88cc38149d

View File

@@ -12,6 +12,7 @@ declare global {
interceptCompile: typeof interceptCompile
interceptEvents: typeof interceptEvents
interceptSpelling: typeof interceptSpelling
index: () => Chainable<number>
}
}
}
@@ -19,3 +20,6 @@ declare global {
Cypress.Commands.add('interceptCompile', interceptCompile)
Cypress.Commands.add('interceptEvents', interceptEvents)
Cypress.Commands.add('interceptSpelling', interceptSpelling)
Cypress.Commands.add('index', { prevSubject: true }, subject => {
return cy.wrap(subject).invoke('index')
})