mirror of
https://github.com/go-gitea/gitea.git
synced 2026-02-23 21:33:19 +01:00
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>
8 lines
127 B
TypeScript
8 lines
127 B
TypeScript
declare namespace NodeJS {
|
|
interface ProcessEnv {
|
|
E2E_USER: string;
|
|
E2E_PASSWORD: string;
|
|
E2E_URL: string;
|
|
}
|
|
}
|