Fix incorrect import order

This commit is contained in:
Adam Gastineau 2025-02-10 06:14:10 -08:00
parent 9e9be6a3f5
commit f9d1b64927

View file

@ -28,11 +28,11 @@ export { program } from 'playwright-core/lib/cli/program';
import { prepareErrorStack } from './reporters/base'; import { prepareErrorStack } from './reporters/base';
import { showHTMLReport } from './reporters/html'; import { showHTMLReport } from './reporters/html';
import { createMergedReport } from './reporters/merge'; import { createMergedReport } from './reporters/merge';
import { filterProjects } from './runner/projectUtils';
import { Runner } from './runner/runner'; import { Runner } from './runner/runner';
import * as testServer from './runner/testServer'; import * as testServer from './runner/testServer';
import { runWatchModeLoop } from './runner/watchMode'; import { runWatchModeLoop } from './runner/watchMode';
import { serializeError } from './util'; import { serializeError } from './util';
import { filterProjects } from './runner/projectUtils';
import type { TestError } from '../types/testReporter'; import type { TestError } from '../types/testReporter';
import type { ConfigCLIOverrides } from './common/ipc'; import type { ConfigCLIOverrides } from './common/ipc';