123456789101112131415161718192021222324252627282930313233343536373839 |
- import './commands'
- import { mount } from 'cypress/angular'
- declare global {
- namespace Cypress {
- interface Chainable {
- mount: typeof mount
- }
- }
- }
- Cypress.Commands.add('mount', mount)
|