From 0b2a74e9ac14b5a9afcb0bfb73191f061e5f2098 Mon Sep 17 00:00:00 2001 From: Simon Knott Date: Fri, 19 Jul 2024 14:21:11 +0200 Subject: [PATCH] fix lint issues --- packages/playwright/src/util.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/playwright/src/util.ts b/packages/playwright/src/util.ts index 8963f5cbb2..a4ddce7a3b 100644 --- a/packages/playwright/src/util.ts +++ b/packages/playwright/src/util.ts @@ -19,14 +19,12 @@ import type { StackFrame } from '@protocol/channels'; import util from 'util'; import path from 'path'; import url from 'url'; -import childProcess from 'child_process'; import { debug, mime, minimatch, parseStackTraceLine } from 'playwright-core/lib/utilsBundle'; import { formatCallLog } from 'playwright-core/lib/utils'; import type { TestInfoError } from './../types/test'; import type { Location } from './../types/testReporter'; import { calculateSha1, isRegExp, isString, sanitizeForFilePath, stringifyStackFrames } from 'playwright-core/lib/utils'; import type { RawStack } from 'playwright-core/lib/utils'; -import { affectedTestFiles } from './transform/compilationCache'; const PLAYWRIGHT_TEST_PATH = path.join(__dirname, '..'); const PLAYWRIGHT_CORE_PATH = path.dirname(require.resolve('playwright-core/package.json'));