chore: mark v0.0.15 (#250)

This commit is contained in:
Pavel Feldman 2025-04-22 16:17:36 -07:00 committed by GitHub
parent f7e9bae571
commit 586492a3f0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 7 additions and 7 deletions

View file

@ -371,11 +371,11 @@ export class Tab {
return this._snapshot;
}
async console(): Promise<playwright.ConsoleMessage[]> {
console(): playwright.ConsoleMessage[] {
return this._console;
}
async requests(): Promise<Map<playwright.Request, playwright.Response | null>> {
requests(): Map<playwright.Request, playwright.Response | null> {
return this._requests;
}