import { defineConfig } from "cypress";
import { assurka } from "./src/index";

export default defineConfig({
  e2e: {
    setupNodeEvents(on, config) {
      assurka(on, config, {
        projectId: "eQNFVBG4ZMtP",
        secret: "dZrCMjvu-QU29oz",
        testPlanId: "VCirvvA_TcVS",
        host: "http://localhost:5001",
      });
    },
  },
  experimentalInteractiveRunEvents: true,
});
