Skip to content
Snippets Groups Projects
cypress.config.ts 363 B
Newer Older
tzanmix's avatar
tzanmix committed
import { inject } from "@angular/core";
import { defineConfig } from "cypress";
tzanmix's avatar
tzanmix committed
import { AppService } from "src/app/shared/services/app.service";

//let appConfig = inject(AppService);

export default defineConfig({
  e2e: {
    setupNodeEvents(on, config) {
      // implement node event listeners here
    },
tzanmix's avatar
tzanmix committed
    baseUrl: "http://localhost:4200/",