This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues or pull requests.
frontend/src/types/cypress.d.ts
Dominik Pschenitschni c6d214b9eb
All checks were successful
continuous-integration/drone/push Build is passing
fix: cypress plugins
2022-07-04 21:50:48 +00:00

12 lines
222 B
TypeScript

import { mount } from 'cypress/vue'
type MountParams = Parameters<typeof mount>;
type OptionsParam = MountParams[1];
declare global {
namespace Cypress {
interface Chainable {
mount: typeof mount;
}
}
}