diff --git a/packages/jest/src/utils/config/get-jest-projects.spec.ts b/packages/jest/src/utils/config/get-jest-projects.spec.ts index 626b82b0b99688..06f930a63da33f 100644 --- a/packages/jest/src/utils/config/get-jest-projects.spec.ts +++ b/packages/jest/src/utils/config/get-jest-projects.spec.ts @@ -147,7 +147,7 @@ describe('getJestProjects', () => { expect(getJestProjects()).toEqual(expectedResults); }); - test('other projects and targets that do not use the nrwl jest test runner', () => { + test('other projects and targets that do not use the nx jest test runner', () => { const mockedWorkspaceConfig: WorkspaceJsonConfiguration = { projects: { otherTarget: { @@ -299,7 +299,7 @@ describe('getJestProjectsAsync', () => { expect(await getJestProjectsAsync()).toEqual(expectedResults); }); - test('other projects and targets that do not use the nrwl jest test runner', async () => { + test('other projects and targets that do not use the nx jest test runner', async () => { addProject('otherTarget', { root: 'test', targets: { diff --git a/packages/jest/src/utils/config/get-jest-projects.ts b/packages/jest/src/utils/config/get-jest-projects.ts index 6f08f9575cb3d4..f06422b4937162 100644 --- a/packages/jest/src/utils/config/get-jest-projects.ts +++ b/packages/jest/src/utils/config/get-jest-projects.ts @@ -1,5 +1,8 @@ -import type { ProjectsConfigurations } from '@nx/devkit'; -import { createProjectGraphAsync, type TargetConfiguration } from '@nx/devkit'; +import { + createProjectGraphAsync, + type ProjectsConfigurations, + type TargetConfiguration, +} from '@nx/devkit'; import { readWorkspaceConfig } from 'nx/src/project-graph/file-utils'; import { join } from 'path'; import * as yargs from 'yargs-parser';