Merge pull request #10858 from overleaf/ae-source-editor-tests

Refactor source editor Cypress tests into smaller files

GitOrigin-RevId: fb80e7ddf3553f384c06c279404e16375dadaa44
This commit is contained in:
Alf Eaton 2022-12-12 12:54:15 +00:00 committed by Copybot
parent 9f1f62b9be
commit 1ad8a99887
2 changed files with 6 additions and 0 deletions

View file

@ -1,6 +1,7 @@
import '@testing-library/cypress/add-commands'
import { interceptCompile } from './compile'
import { interceptEvents } from './events'
import { interceptSpelling } from './spelling'
// eslint-disable-next-line no-unused-vars,@typescript-eslint/no-namespace
declare global {
@ -10,9 +11,11 @@ declare global {
interface Chainable {
interceptCompile: typeof interceptCompile
interceptEvents: typeof interceptEvents
interceptSpelling: typeof interceptSpelling
}
}
}
Cypress.Commands.add('interceptCompile', interceptCompile)
Cypress.Commands.add('interceptEvents', interceptEvents)
Cypress.Commands.add('interceptSpelling', interceptSpelling)

View file

@ -0,0 +1,3 @@
export const interceptSpelling = () => {
cy.intercept('POST', '/spelling/check', [])
}