Create cypress.config.ts
taylor_socfortress committed
Jul 10, 2023 at 16:36 UTC
296625f93136f40f6ff5af67c4205db5142975aa
1 file changed
+8
cypress.config.ts
new
+8
@@ -0,0 +1,8 @@
1
+import { defineConfig } from "cypress"
2
+
3
+export default defineConfig({
4
+ e2e: {
5
+ specPattern: "cypress/e2e/**/*.{cy,spec}.{js,jsx,ts,tsx}",
6
+ baseUrl: "http://localhost:4173"
7
+ }
8
+})