diff --git a/tests/bidi/expectationReporter.ts b/tests/bidi/expectationReporter.ts index 3e6e7db82d..e83c93a524 100644 --- a/tests/bidi/expectationReporter.ts +++ b/tests/bidi/expectationReporter.ts @@ -22,7 +22,7 @@ import { projectExpectationPath } from './expectationUtil'; type ReporterOptions = { rebase?: boolean; -} +}; class ExpectationReporter implements Reporter { private _suite: Suite; diff --git a/tests/bidi/expectationUtil.ts b/tests/bidi/expectationUtil.ts index 21e0d5fcbd..f271a4981c 100644 --- a/tests/bidi/expectationUtil.ts +++ b/tests/bidi/expectationUtil.ts @@ -16,7 +16,7 @@ import fs from 'fs'; import path from 'path'; -import { TestInfo } from 'playwright/test'; +import type { TestInfo } from 'playwright/test'; type ShouldSkipPredicate = (info: TestInfo) => boolean; @@ -42,7 +42,7 @@ export async function parseBidiExpectations(projectName: string): Promise