UNPKG

@revoloo/cypress6

Version:

Cypress.io end to end testing tool

14 lines (11 loc) 261 B
// wrapper around opn due to issues with proxyquire + istanbul const os = require('os') const opn = require('opn') module.exports = { opn (arg, opts = {}) { if (os.platform() === 'darwin') { opts.args = '-R' } return opn(arg, opts) }, }