Skip to content
This repository was archived by the owner on Jun 5, 2020. It is now read-only.

Commit 1f979fe

Browse files
committed
trigger publish
1 parent 752dd47 commit 1f979fe

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

README.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,26 @@ module.exports = createTsJestConfig({
3838
```bash
3939
$ jest --config jest.config.js --coverage
4040
```
41+
42+
### FAQ
43+
44+
- I have `jest-haste-map: Haste module naming collision`
45+
46+
```ts
47+
module.exports = createTsJestConfig({
48+
// ...
49+
modulePathIgnorePatterns: ['<rootDir>/dist/']
50+
});
51+
```
52+
53+
- How can I define other properties that do not exist in `createTsJestConfig`?
54+
55+
```ts
56+
// jest.config.js
57+
module.exports = {
58+
...createTsJestConfig({
59+
// ...
60+
}),
61+
watch: true
62+
};
63+
```

0 commit comments

Comments
 (0)