Files
helm-dashboard/frontend/cypress/support/component.ts
2024-01-09 10:05:43 +02:00

12 lines
205 B
TypeScript

import "./commands";
import { mount } from "cypress/react18";
declare global {
namespace Cypress {
interface Chainable {
mount: typeof mount;
}
}
}
Cypress.Commands.add("mount", mount);