cypress.config.ts 257 B

123456789101112131415
  1. import { defineConfig } from "cypress";
  2. export default defineConfig({
  3. e2e: {
  4. baseUrl: "http://localhost:4200",
  5. },
  6. component: {
  7. devServer: {
  8. framework: "angular",
  9. bundler: "webpack",
  10. },
  11. specPattern: "**/*.cy.ts",
  12. },
  13. });