18 lines
463 B
JavaScript
18 lines
463 B
JavaScript
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',
|
|
},
|
|
});
|