You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
1.0 KiB
JavaScript

/* eslint-disable global-require */
// eslint-disable-next-line import/no-extraneous-dependencies
const { defineConfig } = require('cypress')
module.exports = defineConfig({
numTestsKeptInMemory: 25,
defaultCommandTimeout: 15000,
experimentalFetchPolyfill: true,
env: {
apiUrl: 'https://api.realworld.io/api',
oldApiUrl: 'https://conduit.productionready.io/api',
device: 'desktop',
email: 'test@test.com',
password: 'Cypress123'
},
retries: {
runMode: 1,
openMode: 0
},
userAgent:
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.190 Safari/537.36',
viewportHeight: 768,
viewportWidth: 1266,
e2e: {
// We've imported your old cypress plugins here.
// You may want to clean this up later by importing these.
setupNodeEvents: function (on, config) {
return require('./cypress/plugins/index.js')(on, config)
},
baseUrl: 'http://angularjs.realworld.io/#'
}
})