Files

7 lines
261 B
TypeScript

// Huggingface plugin module implements model discovery env behavior.
export function isHuggingfaceModelDiscoveryTestEnvironment(
env: Record<string, string | undefined> = process.env,
): boolean {
return env.VITEST === "true" || env.NODE_ENV === "test";
}