mirror of
https://github.com/go-vikunja/vikunja.git
synced 2026-02-01 22:47:40 +00:00
- Removes Cypress test framework entirely, using only Playwright for E2E tests - All Cypress tests were already covered by Playwright; added 2 missing tests for URL filter/search parameters - Removes ~2000 lines of Cypress code and configuration - Updated ESLint and Stylelint configurations to reflect testing changes 🐰 Farewell to Cypress, dear and bright, We hop to Playwright's testing light, Factories cleared, the config gone, Our tests now march in Playwright's song! ~✨ The Testing Rabbit
25 lines
632 B
TypeScript
25 lines
632 B
TypeScript
/// <reference types="vite/client" />
|
|
/// <reference types="vite-svg-loader" />
|
|
/// <reference types="@histoire/plugin-vue/components" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VIKUNJA_API_URL?: string
|
|
readonly VIKUNJA_HTTP_PORT?: number
|
|
readonly VIKUNJA_HTTPS_PORT?: number
|
|
|
|
readonly VIKUNJA_SENTRY_ENABLED?: boolean
|
|
readonly VIKUNJA_SENTRY_DSN?: string
|
|
|
|
readonly SENTRY_AUTH_TOKEN?: string
|
|
readonly SENTRY_ORG?: string
|
|
readonly SENTRY_PROJECT?: string
|
|
|
|
readonly VITE_IS_ONLINE: boolean
|
|
|
|
readonly VUE_DEVTOOLS_LAUNCH_EDITOR: VitePluginVueDevToolsOptions.launchEditor
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv
|
|
}
|