Currently, I have multiple jest.config.ts files in projects throughout my monorepo. All tests are passing, but when I added a global setup file, all but 1 are passing. The failing config file is identical to a config file in a passing project. What could be the cause of this / how can I resolve this one issue?
passing config file:
export default {
displayName: 'server-maintain-products',
preset: '../../../jest.preset.js',
testEnvironment: 'node',
transform: {
'^.+\\.[tj]s$': ['ts-jest', { tsconfig: '<rootDir>/tsconfig.spec.json' }],
},
moduleFileExtensions: ['ts', 'js', 'html'],
coverageDirectory: '../../../coverage/libs/server/maintain-products',
};
failing config file:
export default {
displayName: 'shared-data',
preset: '../../../jest.preset.js',
testEnvironment: 'node',
transform: {
'^.+\\.[tj]s$': ['ts-jest', { tsconfig: '<rootDir>/tsconfig.spec.json' }],
},
moduleFileExtensions: ['ts', 'js', 'html'],
coverageDirectory: '../../../coverage/libs/shared/data',
};
global configs: jest.preset.js
const nxPreset = require('@nx/jest/preset').default;
module.exports = {
...nxPreset,
/* TODO: Update to latest Jest snapshotFormat
* By default Nx has kept the older style of Jest Snapshot formats
* to prevent breaking of any existing tests with snapshots.
* It's recommend you update to the latest format.
* You can do this by removing snapshotFormat property
* and running tests with --update-snapshot flag.
* Example: "nx affected --targets=test --update-snapshot"
* More info:
*/
snapshotFormat: { escapeString: true, printBasicPrototype: true },
setupFiles: ['./jest.setup.ts'],
};
jest.setup.ts
import { registerTsProject } from '@nx/js/src/internal';
const cleanupRegisteredPaths = registerTsProject('./tsconfig.base.json');
export default async function () {
// make sure to run the clean up!
cleanupRegisteredPaths();
}
This is the error I'm getting:
Error: ● Validation Error:
Module ./jest.setup.ts in the setupFiles option was not found.
<rootDir> is: C:<\path\to\dir>\libs\shared\data
Configuration Documentation: