()
| 315 | } |
| 316 | |
| 317 | public async flutterAppStarted(): Promise<void> { |
| 318 | await this.waitForCustomEvent("flutter.appStarted"); |
| 319 | await delay(100); |
| 320 | } |
| 321 | |
| 322 | public waitForCustomEvent<T>(type: string, filter?: (notification: T) => boolean): Promise<T> { |
| 323 | return new Promise((resolve, reject) => { |
no test coverage detected