overleaf/services/web/cypress/support/shared/commands/index.ts
Alf Eaton 1ad8a99887 Merge pull request #10858 from overleaf/ae-source-editor-tests
Refactor source editor Cypress tests into smaller files

GitOrigin-RevId: fb80e7ddf3553f384c06c279404e16375dadaa44
2022-12-13 09:04:01 +00:00

21 lines
781 B
TypeScript

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 {
// eslint-disable-next-line @typescript-eslint/no-namespace,no-unused-vars
namespace Cypress {
// eslint-disable-next-line no-unused-vars
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)