This repository has been archived on 2025-04-22. You can view files and clone it, but cannot push or open issues or pull requests.
hlk_autotest/tests/utils/envUtils.ts
2024-12-29 21:51:02 +08:00

7 lines
195 B
TypeScript

export function getEnvVar(key: string): string {
const value = process.env[key];
if (!value) {
throw new Error(`Environment variable ${key} is not set`);
}
return value;
}