From f9d1b64927d10e7f93d99c9dc206c5f737f0f4e7 Mon Sep 17 00:00:00 2001 From: Adam Gastineau Date: Mon, 10 Feb 2025 06:14:10 -0800 Subject: [PATCH] Fix incorrect import order --- packages/playwright/src/program.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/playwright/src/program.ts b/packages/playwright/src/program.ts index f875b08c86..19eabe6517 100644 --- a/packages/playwright/src/program.ts +++ b/packages/playwright/src/program.ts @@ -28,11 +28,11 @@ export { program } from 'playwright-core/lib/cli/program'; import { prepareErrorStack } from './reporters/base'; import { showHTMLReport } from './reporters/html'; import { createMergedReport } from './reporters/merge'; +import { filterProjects } from './runner/projectUtils'; import { Runner } from './runner/runner'; import * as testServer from './runner/testServer'; import { runWatchModeLoop } from './runner/watchMode'; import { serializeError } from './util'; -import { filterProjects } from './runner/projectUtils'; import type { TestError } from '../types/testReporter'; import type { ConfigCLIOverrides } from './common/ipc';