/
subscription-test2-cases
/
cypress
/
Upload File
HOME
const { defineConfig } = require('cypress') module.exports = defineConfig({ reporter: 'cypress-multi-reporters', reporterOptions: { reporterEnabled: 'mochawesome', mochawesomeReporterOptions: { reportDir: 'cypress/reports/mocha', quite: true, overwrite: false, html: false, json: true, pdf: false, }, }, projectId: 'ypn537', pageLoadTimeout: 120000, modifyObstructiveCode: false, chromeWebSecurity: false, video: false, viewportWidth: 1480, e2e: { // We've imported your old cypress plugins here. // You may want to clean this up later by importing these. setupNodeEvents(on, config) { return require('./cypress/plugins/index.js')(on, config) }, baseUrl: 'https://devtest.dev-techloyce.com/', // baseUrl: 'http://hassaan.sflocal.test/', specPattern: 'cypress/e2e/**/*.{js,jsx,ts,tsx}', }, env: { "adminEmail": "admin@subscriptionflow.com", "adminPassword": "sf@superadmin#$", }, })