mirror of
https://github.com/logos-messaging/js-waku.git
synced 2026-01-15 04:03:07 +00:00
9 lines
201 B
TypeScript
9 lines
201 B
TypeScript
export function isTestEnvironment(): boolean {
|
|
try {
|
|
return process?.env?.NODE_ENV === "test";
|
|
} catch (_e) {
|
|
// process variable is not defined in PROD environment
|
|
return false;
|
|
}
|
|
}
|