UNPKG

@revoloo/cypress6

Version:

Cypress.io end to end testing tool

15 lines (11 loc) 312 B
/// <reference types="cypress" /> const { useFixedFirefoxResolution } = require('../../../utils') /** * @type {Cypress.PluginConfig} */ module.exports = (on, config) => { on('before:browser:launch', (browser, options) => { useFixedFirefoxResolution(browser, options, config) return options }) }