You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
679 B
TypeScript
24 lines
679 B
TypeScript
function envAppInstanceIncludes(prefix: string) {
|
|
if (!process.env.NODE_APP_INSTANCE) {
|
|
return false;
|
|
}
|
|
return !!process.env.NODE_APP_INSTANCE.includes(prefix);
|
|
}
|
|
|
|
export function isCI() {
|
|
// this is set by session-playwright to run a build on CI
|
|
return !!process.env.CI;
|
|
}
|
|
|
|
export function isDevProd() {
|
|
return envAppInstanceIncludes('devprod');
|
|
}
|
|
|
|
export function isTestNet() {
|
|
return envAppInstanceIncludes('testnet') || isCI(); // when running on CI, we always want to use testnet
|
|
}
|
|
|
|
export function isTestIntegration() {
|
|
return envAppInstanceIncludes('test-integration') || isCI(); // when running on CI, we always want the 'test-integration' behavior
|
|
}
|