-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjest.preset.js
More file actions
27 lines (26 loc) · 1004 Bytes
/
jest.preset.js
File metadata and controls
27 lines (26 loc) · 1004 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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= --update-snapshot"
* More info: https://jestjs.io/docs/upgrading-to-jest29#snapshot-format
*/
snapshotFormat: { escapeString: true, printBasicPrototype: true },
transformIgnorePatterns: ['/node_modules/(?!.*(better-auth|@noble|jose)/)'],
coverageReporters: ['html', 'json', 'text'],
collectCoverageFrom: [
'src/**/*.{js,jsx,ts,tsx}',
'!**/*.d.ts',
'!**/*.spec.{js,jsx,ts,tsx}',
'!**/*.test.{js,jsx,ts,tsx}',
'!**/node_modules/**',
'!**/__tests__/**',
'!**/mocks/**',
'!**/test/**',
],
};