0
0
mirror of https://github.com/sp-tarkov/db-website.git synced 2025-02-08 07:50:46 -05:00
db-website/frontend/cypress.config.ts

18 lines
489 B
TypeScript
Raw Normal View History

import { defineConfig } from "cypress";
export default defineConfig({
e2e: {
experimentalRunAllSpecs: true,
baseUrl: "http://localhost:5173",
video: false,
async setupNodeEvents(on, config) {
return (await import("./cypress/plugins/e2e")).default(on, config);
}
},
env: {
VITE_SPTARKOV_HOME: "https://www.sp-tarkov.com/",
VITE_SPTARKOV_WORKSHOP: "https://mods.sp-tarkov.com/",
VITE_SPTARKOV_DOCUMENTATION: "https://docs.sp-tarkov.com/"
}
});