mirror of
https://github.com/modelec/modelec.club.git
synced 2026-01-18 16:37:30 +01:00
17 lines
374 B
TypeScript
17 lines
374 B
TypeScript
import { defineConfig } from "cypress";
|
|
|
|
export default defineConfig({
|
|
e2e: {
|
|
specPattern: "cypress/e2e/**/*.cy.{js,jsx,ts,tsx}",
|
|
supportFile: false,
|
|
},
|
|
|
|
component: {
|
|
specPattern: "cypress/components/**/*.cy.{js,jsx,ts,tsx}",
|
|
supportFile: "cypress/support/component.ts",
|
|
devServer: {
|
|
framework: "react",
|
|
bundler: "vite",
|
|
},
|
|
},
|
|
}); |