brackt/cypress.config.js

19 lines
463 B
JavaScript
Raw Permalink Normal View History

import { defineConfig } from 'cypress';
export default defineConfig({
e2e: {
baseUrl: 'http://localhost:3000',
setupNodeEvents(_on, _config) {
// implement node event listeners here
},
supportFile: 'cypress/support/e2e.ts',
specPattern: 'cypress/e2e/**/*.cy.{js,jsx,ts,tsx}',
video: true,
screenshotOnRunFailure: true,
},
env: {
TEST_USER_EMAIL: 'test@example.com',
TEST_USER_PASSWORD: 'testpassword123',
},
});