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.
		
		
		
		
		
			
		
			
				
	
	
		
			28 lines
		
	
	
		
			760 B
		
	
	
	
		
			TypeScript
		
	
			
		
		
	
	
			28 lines
		
	
	
		
			760 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 isAutoLogin() {
 | |
|   return !!process.env.SESSION_AUTO_REGISTER;
 | |
| }
 | |
| 
 | |
| 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
 | |
| }
 |