cypress.config.ts 351 B

1234567891011
  1. import { defineConfig } from 'cypress';
  2. export default defineConfig({
  3. e2e: {
  4. baseUrl: 'http://localhost:10086/#/pages/index/index', // Adjust this to match your application's base URL
  5. specPattern: '__e2e_test__/**/*.spec.ts',
  6. setupNodeEvents(on, config) {
  7. return require('./cypress/plugins/index.js')(on, config);
  8. },
  9. },
  10. });