UNPKG

@revoloo/cypress6

Version:

Cypress.io end to end testing tool

14 lines (11 loc) 290 B
import './setup' describe('docs url', () => { it('displays as button in interactive mode', () => { Cypress.config('isInteractive', true) cy.viewport() }) it('is text in error message in run mode', () => { Cypress.config('isInteractive', false) cy.viewport() }) })