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'));