Method
launch
(
content: string,
options: Partial<AnyChromiumLaunchConfiguration> = {},
)
Source from the content-addressed store, hash-verified
| 545 | } |
| 546 | |
| 547 | async launch( |
| 548 | content: string, |
| 549 | options: Partial<AnyChromiumLaunchConfiguration> = {}, |
| 550 | ): Promise<TestP> { |
| 551 | const url = 'data:text/html;base64,' + Buffer.from(content).toString('base64'); |
| 552 | return this._launch(url, options); |
| 553 | } |
| 554 | |
| 555 | async launchAndLoad( |
| 556 | content: string, |
Callers
nothing calls this directly
Tested by
no test coverage detected