Organizes 11 projects for Cerbo GX/Venus OS into a single repository: - axiom-nmea: Raymarine LightHouse protocol decoder - dbus-generator-ramp: Generator current ramp controller - dbus-lightning: Blitzortung lightning monitor - dbus-meteoblue-forecast: Meteoblue weather forecast - dbus-no-foreign-land: noforeignland.com tracking - dbus-tides: Tide prediction from depth + harmonics - dbus-vrm-history: VRM cloud history proxy - dbus-windy-station: Windy.com weather upload - mfd-custom-app: MFD app deployment package - venus-html5-app: Custom Victron HTML5 app fork - watermaker: Watermaker PLC control UI Adds root README, .gitignore, project template, and per-project .gitignore files. Sensitive config files excluded via .gitignore with .example templates provided. Made-with: Cursor
22 lines
500 B
TypeScript
22 lines
500 B
TypeScript
import { defineConfig } from "cypress"
|
|
|
|
export default defineConfig({
|
|
video: true,
|
|
viewportWidth: 1280,
|
|
viewportHeight: 720,
|
|
projectId: "gho3jq",
|
|
reporter: "mochawesome",
|
|
chromeWebSecurity: false,
|
|
reporterOptions: {
|
|
reportDir: "cypress/results",
|
|
reportFilename: "result",
|
|
overwrite: false,
|
|
html: false,
|
|
json: true,
|
|
},
|
|
e2e: {
|
|
baseUrl: "http://localhost:8000/?host=localhost&port=9001&path=%02%03",
|
|
specPattern: "cypress/e2e/**/*.{js,jsx,ts,tsx}",
|
|
},
|
|
})
|