From 5c8a767d208fd3124220ca96837d710d860f9c1c Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Tue, 10 Sep 2024 17:18:46 -0700 Subject: [PATCH] fix lint --- tests/bidi/expectationReporter.ts | 2 +- tests/bidi/expectationUtil.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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