mirror of
https://github.com/komodorio/helm-dashboard.git
synced 2026-03-24 11:48:04 +00:00
12 lines
205 B
TypeScript
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); |