2022-06-08 03:39:09 -04:00
|
|
|
import '@testing-library/cypress/add-commands'
|
|
|
|
import { interceptCompile } from './compile'
|
|
|
|
import { interceptEvents } from './events'
|
2022-12-12 07:54:15 -05:00
|
|
|
import { interceptSpelling } from './spelling'
|
2022-06-08 03:39:09 -04:00
|
|
|
|
|
|
|
// 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
|
2022-12-12 07:54:15 -05:00
|
|
|
interceptSpelling: typeof interceptSpelling
|
2022-06-08 03:39:09 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Cypress.Commands.add('interceptCompile', interceptCompile)
|
|
|
|
Cypress.Commands.add('interceptEvents', interceptEvents)
|
2022-12-12 07:54:15 -05:00
|
|
|
Cypress.Commands.add('interceptSpelling', interceptSpelling)
|