1
0
mirror of https://github.com/jcwimer/wrestlingApp synced 2026-03-24 17:04:43 +00:00
Files
wrestlingdev.com/cypress-tests/cypress.config.js

15 lines
361 B
JavaScript

const { defineConfig } = require('cypress')
module.exports = defineConfig({
e2e: {
baseUrl: 'http://localhost',
supportFile: 'cypress/support/e2e.js', // Path to e2e.js
video: false,
experimentalMemoryManagement: true,
numTestsKeptInMemory: 0,
},
env: {
CYPRESS_PASSWORD: 'password',
CYPRESS_USERNAME: 'test@test.com',
},
})