mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-10 06:39:01 +02:00
152534415d
* Upgrade Cypress to v12.2.0 * Remove cy.unmount * Only record video in CI * Remove unmount definition and @cypress/react GitOrigin-RevId: 463bc216b1debc65ad066f7c1d479724cfa062d1
15 lines
379 B
TypeScript
15 lines
379 B
TypeScript
import { mount } from 'cypress/react'
|
|
|
|
// eslint-disable-next-line no-unused-vars,@typescript-eslint/no-namespace
|
|
declare global {
|
|
// eslint-disable-next-line @typescript-eslint/no-namespace,no-unused-vars
|
|
namespace Cypress {
|
|
// eslint-disable-next-line no-unused-vars
|
|
interface Chainable {
|
|
mount: typeof mount
|
|
}
|
|
}
|
|
}
|
|
|
|
Cypress.Commands.add('mount', mount)
|