@uuv/cypress
Version:
A solution to facilitate the writing and execution of E2E tests understandable by any human being using cucumber(BDD) and cypress
17 lines (15 loc) • 427 B
text/typescript
import { defineConfig } from "cypress";
import { setupNodeEvents } from "@uuv/cypress";
export default defineConfig({
port: 9000,
video: true,
videosFolder: "reports/videos",
screenshotsFolder: "reports/screenshots",
e2e: {
baseUrl: "http://localhost:4200",
specPattern: "e2e/**/*.{cy.ts,feature}",
supportFile: false,
setupNodeEvents,
viewportWidth: 1536
}
});