| 24 | const { start } = oop; |
| 25 | |
| 26 | interface TestMode { |
| 27 | setup(): Promise<client.Playwright>; |
| 28 | teardown(): Promise<void>; |
| 29 | } |
| 30 | |
| 31 | export class DriverTestMode implements TestMode { |
| 32 | private _impl: { playwright: client.Playwright; stop: () => Promise<void> }; |
no outgoing calls
no test coverage detected