finalProject/Client/cypress.config.js
Lio 2ea8c6d791
Some checks failed
Test Environment Setup / setup-test-environment (push) Has been cancelled
copy
2025-06-26 13:38:01 +02:00

13 lines
334 B
JavaScript

const { defineConfig } = require("cypress");
const setupAnalyticsPlugin = require("./src/index");
module.exports = defineConfig({
historyTrackerURL: "http://localhost:3001",
e2e: {
setupNodeEvents(on, config) {
// Set up the analytics plugin
setupAnalyticsPlugin(on, config);
return config;
},
},
});