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.
		
		
		
		
		
			
		
			
				
	
	
		
			12 lines
		
	
	
		
			370 B
		
	
	
	
		
			TypeScript
		
	
			
		
		
	
	
			12 lines
		
	
	
		
			370 B
		
	
	
	
		
			TypeScript
		
	
import { _electron } from 'playwright-core';
 | 
						|
import { logIn } from '../setup/log_in';
 | 
						|
import { openApp } from '../setup/open';
 | 
						|
 | 
						|
export async function linkedDevice(recoveryPhrase: string) {
 | 
						|
  const [windowB] = await openApp(1); // not using sessionTest here as we need to close and reopen one of the window
 | 
						|
 | 
						|
  await logIn(windowB, recoveryPhrase);
 | 
						|
 | 
						|
  return [windowB];
 | 
						|
}
 |