| 12 | } |
| 13 | |
| 14 | interface Fixtures { |
| 15 | emulatorUrl: string; |
| 16 | runTestServer(): Promise<void>; |
| 17 | getBridgeFrameLocator(): Promise<Locator>; |
| 18 | getPreviewFrameLocator(): Promise<Locator>; |
| 19 | |
| 20 | /** |
| 21 | * Returns the preview frame of the application. |
| 22 | * @note This awaits both the bridge and the preview locators |
| 23 | * before returning. |
| 24 | */ |
| 25 | getPreviewFrame(): Promise<Locator>; |
| 26 | runExample(path: string): Promise<void>; |
| 27 | } |
| 28 | |
| 29 | const EMULATOR_URL = `https://${process.env.EMULATOR_HOST}?layout=debug`; |
| 30 |
nothing calls this directly
no outgoing calls
no test coverage detected