0
0
mirror of https://github.com/go-gitea/gitea.git synced 2026-02-23 21:33:19 +01:00
gitea/tests/e2e/env.d.ts
silverwind 530b86e244
Add ambient type declarations for e2e env variables
Declare E2E_USER, E2E_PASSWORD and E2E_URL as string in ProcessEnv so
non-null assertions are no longer needed throughout the e2e tests.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-18 03:03:16 +01:00

8 lines
127 B
TypeScript

declare namespace NodeJS {
interface ProcessEnv {
E2E_USER: string;
E2E_PASSWORD: string;
E2E_URL: string;
}
}