mirror of
https://github.com/logos-messaging/js-waku.git
synced 2026-02-07 23:43:06 +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;
|
||
|
|
}
|
||
|
|
}
|