11 lines
214 B
TypeScript
11 lines
214 B
TypeScript
import { defineConfig } from "cypress";
|
|
|
|
export default defineConfig({
|
|
e2e: {
|
|
setupNodeEvents(on, config) {
|
|
// implement node event listeners here
|
|
},
|
|
"baseUrl": "http://localhost:4200"
|
|
},
|
|
});
|