1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-09-19 22:15:53 +02:00
.profile/cypress/support/component.ts

15 lines
234 B
TypeScript
Raw Normal View History

import { mount } from 'cypress/react'
import './commands'
2022-08-27 02:30:55 +02:00
import '../../styles/global.css'
declare global {
namespace Cypress {
interface Chainable {
mount: typeof mount
}
}
}
Cypress.Commands.add('mount', mount)