mirror of
https://github.com/Hestia-Homes/assessment-model.git
synced 2026-06-08 11:37:25 +00:00
21 lines
467 B
TypeScript
21 lines
467 B
TypeScript
import { defineConfig } from "cypress";
|
|
|
|
export default defineConfig({
|
|
chromeWebSecurity: false,
|
|
|
|
e2e: {
|
|
baseUrl: "http://localhost:3000",
|
|
setupNodeEvents(on, config) {
|
|
// This will include the plugins file, which is needed to test oauth login
|
|
require("./cypress/plugins")(on, config);
|
|
// implement node event listeners here
|
|
},
|
|
},
|
|
|
|
component: {
|
|
devServer: {
|
|
framework: "next",
|
|
bundler: "webpack",
|
|
},
|
|
},
|
|
});
|