Method
launch
(
content: string,
options: Partial<AnyChromiumLaunchConfiguration> = {},
)
Source from the content-addressed store, hash-verified
| 572 | } |
| 573 | |
| 574 | async launch( |
| 575 | content: string, |
| 576 | options: Partial<AnyChromiumLaunchConfiguration> = {}, |
| 577 | ): Promise<TestP> { |
| 578 | const url = 'data:text/html;base64,' + Buffer.from(content).toString('base64'); |
| 579 | return this._launch(url, options); |
| 580 | } |
| 581 | |
| 582 | async launchAndLoad( |
| 583 | content: string, |
Callers
nothing calls this directly
Tested by
no test coverage detected