Skip to content

Commit

Permalink
fix(test-utils): BrowserTestDriver injected function types (#254)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pessimistress authored Apr 8, 2024
1 parent b595a8b commit 6222374
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ export type DiffImageResult = {

declare global {
function browserTestDriver_fail(): void;
function browserTestDriver_finish(): string;
function browserTestDriver_emulateInput(event: unknown): void;
function browserTestDriver_finish(message?: string): void;
function browserTestDriver_emulateInput(event: unknown): Promise<void>;
function browserTestDriver_captureAndDiffScreen(opts: DiffImagesOpts): Promise<DiffImageResult>;
}

Expand Down

0 comments on commit 6222374

Please sign in to comment.