This commit is contained in:
Yury Semikhatsky 2024-04-02 15:28:58 -07:00
parent 5e292cca6b
commit 6b6240cf74

View file

@ -17,7 +17,7 @@
import fs from 'fs'; import fs from 'fs';
import path from 'path'; import path from 'path';
import os from 'os'; 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 { Location } from '../../types/testReporter';
import type { TestRunnerPluginRegistration } from '../plugins'; import type { TestRunnerPluginRegistration } from '../plugins';
import { getPackageJsonPath, mergeObjects } from '../util'; import { getPackageJsonPath, mergeObjects } from '../util';
@ -119,7 +119,7 @@ export class FullConfigInternal {
const webServers = takeFirst(userConfig.webServer, null); const webServers = takeFirst(userConfig.webServer, null);
if (Array.isArray(webServers)) { // multiple web server mode 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.config.webServer = null;
this.webServers = webServers; this.webServers = webServers;
} else if (webServers) { // legacy singleton mode } else if (webServers) { // legacy singleton mode