From 6b6240cf74f265a3aa945629b8196b38b5961939 Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Tue, 2 Apr 2024 15:28:58 -0700 Subject: [PATCH] Fix lint --- packages/playwright/src/common/config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/playwright/src/common/config.ts b/packages/playwright/src/common/config.ts index 4e202e382f..9b8be8e730 100644 --- a/packages/playwright/src/common/config.ts +++ b/packages/playwright/src/common/config.ts @@ -17,7 +17,7 @@ import fs from 'fs'; import path from 'path'; import os from 'os'; -import type { Config, ConfigInWorker, Fixtures, Project, ReporterDescription } from '../../types/test'; +import type { Config, Fixtures, Project, ReporterDescription } from '../../types/test'; import type { Location } from '../../types/testReporter'; import type { TestRunnerPluginRegistration } from '../plugins'; import { getPackageJsonPath, mergeObjects } from '../util'; @@ -119,7 +119,7 @@ export class FullConfigInternal { const webServers = takeFirst(userConfig.webServer, null); if (Array.isArray(webServers)) { // multiple web server mode - // Due to previous choices, this value shows up to the user in globalSetup as part of ConfigInWorker. Arrays are not supported by the old type. + // Due to previous choices, this value shows up to the user in globalSetup as part of FullConfig. Arrays are not supported by the old type. this.config.webServer = null; this.webServers = webServers; } else if (webServers) { // legacy singleton mode