assessment-model/cypress.config.ts

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",
},
},
});