1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-09-18 21:55:52 +02:00
.profile/cypress/support/component.ts

15 lines
232 B
TypeScript

import { mount } from "cypress/react"
import "./commands"
import "../../app/globals.css"
declare global {
namespace Cypress {
interface Chainable {
mount: typeof mount
}
}
}
Cypress.Commands.add("mount", mount)