Cypress 0.20.0 should accept config object via module api
Should be same as passing objects via command line switch cypress run --config pageLoadTimeout=100000,watchForFileChanges=false
const cy = require('cypress')
cy.run({
config: {
pageLoadTimeout: 10000,
watchForFileChanges: false
}
})
Cypress 0.20.0 should accept config object via module api
Should be same as passing objects via command line switch cypress run --config pageLoadTimeout=100000,watchForFileChanges=false