mirror of
https://github.com/komodorio/helm-dashboard.git
synced 2026-03-24 11:48:04 +00:00
* Added Error Boundary * Test improvements * Introduced useDevLogger * Updated Cypress to latest and aligned the tests * Added eslint-enable * Set allowCypressEnv: false for security reasons.
14 lines
308 B
TypeScript
14 lines
308 B
TypeScript
import "./commands";
|
|
import { mount } from "cypress/react";
|
|
|
|
/* eslint-disable @typescript-eslint/no-namespace */
|
|
declare global {
|
|
namespace Cypress {
|
|
interface Chainable {
|
|
mount: typeof mount;
|
|
}
|
|
}
|
|
}
|
|
/* eslint-enable @typescript-eslint/no-namespace */
|
|
Cypress.Commands.add("mount", mount);
|