diff --git a/CHANGELOG.md b/CHANGELOG.md index 64737724c07b..126eb8bdcbe3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -36,6 +36,7 @@ - `[jest-haste-map]` Avoid persisting haste map or processing files when not changed ([#8153](https://github.com/facebook/jest/pull/8153)) - `[jest-core]` Improve performance of SearchSource.findMatchingTests by 15% ([#8184](https://github.com/facebook/jest/pull/8184)) - `[jest-resolve]` Optimize internal cache lookup performance ([#8183](https://github.com/facebook/jest/pull/8183)) +- `[jest-core]` Dramatically improve watch mode performance ([#8201](https://github.com/facebook/jest/pull/8201)) ## 24.5.0 diff --git a/packages/jest-config/src/__tests__/getMaxWorkers.test.ts b/packages/jest-config/src/__tests__/getMaxWorkers.test.ts index aab3290c5357..a4a92a419131 100644 --- a/packages/jest-config/src/__tests__/getMaxWorkers.test.ts +++ b/packages/jest-config/src/__tests__/getMaxWorkers.test.ts @@ -32,7 +32,7 @@ describe('getMaxWorkers', () => { it('Returns based on the number of cpus', () => { expect(getMaxWorkers({})).toBe(3); - expect(getMaxWorkers({watch: true})).toBe(2); + expect(getMaxWorkers({watch: true})).toBe(3); }); describe('% based', () => { diff --git a/packages/jest-config/src/getMaxWorkers.ts b/packages/jest-config/src/getMaxWorkers.ts index 29e350b7a367..edf67a5de5d7 100644 --- a/packages/jest-config/src/getMaxWorkers.ts +++ b/packages/jest-config/src/getMaxWorkers.ts @@ -32,6 +32,6 @@ export default function getMaxWorkers( return parsed > 0 ? parsed : 1; } else { const cpus = os.cpus() ? os.cpus().length : 1; - return Math.max(argv.watch ? Math.floor(cpus / 2) : cpus - 1, 1); + return Math.max(cpus - 1, 1); } } diff --git a/packages/jest-haste-map/src/ModuleMap.ts b/packages/jest-haste-map/src/ModuleMap.ts index 8b86aa2845e5..73390e105092 100644 --- a/packages/jest-haste-map/src/ModuleMap.ts +++ b/packages/jest-haste-map/src/ModuleMap.ts @@ -32,8 +32,9 @@ export type SerializableModuleMap = { }; export default class ModuleMap { - private readonly _raw: RawModuleMap; static DuplicateHasteCandidatesError: typeof DuplicateHasteCandidatesError; + private readonly _raw: RawModuleMap; + private json: SerializableModuleMap | undefined; constructor(raw: RawModuleMap) { this._raw = raw; @@ -84,12 +85,15 @@ export default class ModuleMap { } toJSON(): SerializableModuleMap { - return { - duplicates: Array.from(this._raw.duplicates), - map: Array.from(this._raw.map), - mocks: Array.from(this._raw.mocks), - rootDir: this._raw.rootDir, - }; + if (!this.json) { + this.json = { + duplicates: Array.from(this._raw.duplicates), + map: Array.from(this._raw.map), + mocks: Array.from(this._raw.mocks), + rootDir: this._raw.rootDir, + }; + } + return this.json; } static fromJSON(serializableModuleMap: SerializableModuleMap) { diff --git a/packages/jest-runner/src/__tests__/testRunner.test.js b/packages/jest-runner/src/__tests__/testRunner.test.js index ca604b10c0ee..18a1333137c7 100644 --- a/packages/jest-runner/src/__tests__/testRunner.test.js +++ b/packages/jest-runner/src/__tests__/testRunner.test.js @@ -51,7 +51,6 @@ test('injects the serializable module map into each worker in watch mode', () => context: runContext, globalConfig, path: './file.test.js', - serializableModuleMap, }, ], [ @@ -60,7 +59,6 @@ test('injects the serializable module map into each worker in watch mode', () => context: runContext, globalConfig, path: './file2.test.js', - serializableModuleMap, }, ], ]); @@ -90,7 +88,6 @@ test('does not inject the serializable module map in serial mode', () => { context: runContext, globalConfig, path: './file.test.js', - serializableModuleMap: null, }, ], [ @@ -99,7 +96,6 @@ test('does not inject the serializable module map in serial mode', () => { context: runContext, globalConfig, path: './file2.test.js', - serializableModuleMap: null, }, ], ]); diff --git a/packages/jest-runner/src/index.ts b/packages/jest-runner/src/index.ts index 94a379592501..10712b94af9e 100644 --- a/packages/jest-runner/src/index.ts +++ b/packages/jest-runner/src/index.ts @@ -11,7 +11,7 @@ import exit from 'exit'; import throat from 'throat'; import Worker from 'jest-worker'; import runTest from './runTest'; -import {worker} from './testWorker'; +import {worker, SerializableResolver} from './testWorker'; import { OnTestFailure, OnTestStart, @@ -103,11 +103,31 @@ class TestRunner { onResult: OnTestSuccess, onFailure: OnTestFailure, ) { + let resolvers: Map | undefined = undefined; + if (watcher.isWatchMode()) { + resolvers = new Map(); + for (const test of tests) { + if (!resolvers.has(test.context.config.name)) { + resolvers.set(test.context.config.name, { + config: test.context.config, + serializableModuleMap: test.context.moduleMap.toJSON(), + }); + } + } + } + const worker = new Worker(TEST_WORKER_PATH, { exposedMethods: ['worker'], forkOptions: {stdio: 'pipe'}, maxRetries: 3, numWorkers: this._globalConfig.maxWorkers, + setupArgs: resolvers + ? [ + { + serializableResolvers: Array.from(resolvers.values()), + }, + ] + : undefined, }) as WorkerInterface; if (worker.getStdout()) worker.getStdout().pipe(process.stdout); @@ -135,9 +155,6 @@ class TestRunner { }, globalConfig: this._globalConfig, path: test.path, - serializableModuleMap: watcher.isWatchMode() - ? test.context.moduleMap.toJSON() - : null, }); }); diff --git a/packages/jest-runner/src/testWorker.ts b/packages/jest-runner/src/testWorker.ts index 6bb94790b204..a2b5edb0fa6d 100644 --- a/packages/jest-runner/src/testWorker.ts +++ b/packages/jest-runner/src/testWorker.ts @@ -8,18 +8,23 @@ import {Config} from '@jest/types'; import {SerializableError, TestResult} from '@jest/test-result'; -import HasteMap, {SerializableModuleMap, ModuleMap} from 'jest-haste-map'; +import HasteMap, {ModuleMap, SerializableModuleMap} from 'jest-haste-map'; import exit from 'exit'; import {separateMessageFromStack} from 'jest-message-util'; import Runtime from 'jest-runtime'; +import Resolver from 'jest-resolve'; import {ErrorWithCode, TestRunnerSerializedContext} from './types'; import runTest from './runTest'; +export type SerializableResolver = { + config: Config.ProjectConfig; + serializableModuleMap: SerializableModuleMap; +}; + type WorkerData = { config: Config.ProjectConfig; globalConfig: Config.GlobalConfig; path: Config.Path; - serializableModuleMap: SerializableModuleMap | null; context?: TestRunnerSerializedContext; }; @@ -47,45 +52,50 @@ const formatError = (error: string | ErrorWithCode): SerializableError => { }; }; -const resolvers = Object.create(null); -const getResolver = ( - config: Config.ProjectConfig, - moduleMap: ModuleMap | null, -) => { - // In watch mode, the raw module map with all haste modules is passed from - // the test runner to the watch command. This is because jest-haste-map's - // watch mode does not persist the haste map on disk after every file change. - // To make this fast and consistent, we pass it from the TestRunner. - if (moduleMap) { - return Runtime.createResolver(config, moduleMap); - } else { - const name = config.name; - if (!resolvers[name]) { - resolvers[name] = Runtime.createResolver( +const resolvers = new Map(); +const getResolver = (config: Config.ProjectConfig, moduleMap?: ModuleMap) => { + const name = config.name; + if (moduleMap || !resolvers.has(name)) { + resolvers.set( + name, + Runtime.createResolver( config, - Runtime.createHasteMap(config).readModuleMap(), - ); - } - return resolvers[name]; + moduleMap || Runtime.createHasteMap(config).readModuleMap(), + ), + ); } + return resolvers.get(name)!; }; +export function setup(setupData?: { + serializableResolvers: Array; +}) { + // Setup data is only used in watch mode to pass the latest version of all + // module maps that will be used during the test runs. Otherwise, module maps + // are loaded from disk as needed. + if (setupData) { + for (const { + config, + serializableModuleMap, + } of setupData.serializableResolvers) { + const moduleMap = HasteMap.ModuleMap.fromJSON(serializableModuleMap); + getResolver(config, moduleMap); + } + } +} + export async function worker({ config, globalConfig, path, - serializableModuleMap, context, }: WorkerData): Promise { try { - const moduleMap = serializableModuleMap - ? HasteMap.ModuleMap.fromJSON(serializableModuleMap) - : null; return await runTest( path, globalConfig, config, - getResolver(config, moduleMap), + getResolver(config), context && { ...context, changedFiles: context.changedFiles && new Set(context.changedFiles),