mirror of
https://github.com/seerr-team/seerr.git
synced 2026-06-15 20:09:33 -04:00
14 lines
238 B
TypeScript
14 lines
238 B
TypeScript
/* eslint-disable @typescript-eslint/no-namespace */
|
|
|
|
import { mount } from '@cypress/react';
|
|
|
|
declare global {
|
|
namespace Cypress {
|
|
interface Chainable {
|
|
mount: typeof mount;
|
|
}
|
|
}
|
|
}
|
|
|
|
Cypress.Commands.add('mount', mount);
|