mirror of
https://github.com/mue/mue.git
synced 2026-06-05 23:45:53 +02:00
13 lines
294 B
JavaScript
13 lines
294 B
JavaScript
import { defineConfig } from "cypress";
|
|
|
|
export default defineConfig({
|
|
e2e: {
|
|
baseUrl: "http://localhost:5173",
|
|
viewportWidth: 1920,
|
|
viewportHeight: 1080,
|
|
setupNodeEvents(on, config) {
|
|
// implement node event listeners here
|
|
},
|
|
},
|
|
});
|