const { defineConfig } = require("cypress"); const { functions } = require("./src/utils"); module.exports = defineConfig({ snapshot: { // snapshotPath: "cypress/snapshots/", SNAPSHOT_UPDATE: true }, e2e: { setupNodeEvents(on, config) { functions.tasks(on, config); }, }, });