Skip to content

Commit

Permalink
fix type
Browse files Browse the repository at this point in the history
  • Loading branch information
yannbf committed Jun 22, 2024
1 parent 1f25446 commit d12895b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/setup-page-script.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const TEST_RUNNER_DEBUG_PRINT_LIMIT = parseInt('{{debugPrintLimit}}', 10);
// Type definitions for globals
declare global {
// this is defined in setup-page.ts and can be used for logging from the browser to node, helpful for debugging
var logToPage: (message: string) => void;
var logToPage: (message: string) => Promise<void>;
var testRunner_errorMessageFormatter: (message: string) => Promise<string>;
}

Expand Down

0 comments on commit d12895b

Please sign in to comment.