From 66f8b209fca51e83b90c39420462ce907904788a Mon Sep 17 00:00:00 2001 From: Simon Knott Date: Wed, 24 Jul 2024 15:19:08 +0200 Subject: [PATCH] fix lint --- packages/playwright/src/runner/runner.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/playwright/src/runner/runner.ts b/packages/playwright/src/runner/runner.ts index eecb645eb0..22eec44d68 100644 --- a/packages/playwright/src/runner/runner.ts +++ b/packages/playwright/src/runner/runner.ts @@ -108,7 +108,7 @@ export class Runner { return status; } - async loadAllTests(mode: 'in-process' | 'out-of-process' = 'in-process', options: { populatePluginDependencies?: boolean }): Promise<{ status: FullResult['status'], suite?: Suite, errors: TestError[] }> { + async loadAllTests(mode: 'in-process' | 'out-of-process' = 'in-process', options: { populatePluginDependencies?: boolean } = {}): Promise<{ status: FullResult['status'], suite?: Suite, errors: TestError[] }> { const config = this._config; const errors: TestError[] = []; const reporters = [wrapReporterAsV2({