mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 05:30:42 +00:00
6 lines
191 B
TypeScript
6 lines
191 B
TypeScript
export function isHuggingfaceModelDiscoveryTestEnvironment(
|
|
env: Record<string, string | undefined> = process.env,
|
|
): boolean {
|
|
return env.VITEST === "true" || env.NODE_ENV === "test";
|
|
}
|