-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathjest.config.js
44 lines (44 loc) · 2.28 KB
/
jest.config.js
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
module.exports = {
projects: [
'<rootDir>/apps/playground',
'<rootDir>/libs/playground/shared/idb/data-access',
'<rootDir>/libs/playground/shared/idb/util',
'<rootDir>/libs/playground/shared/ui/data-access',
'<rootDir>/libs/playground/shared/ui/util',
'<rootDir>/libs/playground/shared/ui/components/footer',
'<rootDir>/libs/playground/shared/ui/components/header',
'<rootDir>/libs/playground/shared/ui/components/icon',
'<rootDir>/libs/playground/shared/ui/components/loading',
'<rootDir>/libs/playground/shared/ui/components/page',
'<rootDir>/libs/playground/shell',
'<rootDir>/libs/playground/todos/feature',
'<rootDir>/libs/playground/todos/data-access',
'<rootDir>/libs/playground/shared/utils/rx',
'<rootDir>/libs/playground/shared/utils/types',
'<rootDir>/libs/playground/shared/ui/components/forms',
'<rootDir>/libs/playground/home/feature',
'<rootDir>/libs/playground/auth/feature',
'<rootDir>/libs/playground/workflows/util',
'<rootDir>/libs/playground/workflows/workflow-list/feature',
'<rootDir>/libs/playground/workflows/workflow-details/feature',
'<rootDir>/libs/playground/workflows/workflow-list/data-access',
'<rootDir>/libs/playground/workflows/feature',
'<rootDir>/libs/playground/workflows/workflow-details/data-access',
'<rootDir>/libs/playground/workflows/workflow-details/ui/components/workflow-group',
'<rootDir>/libs/playground/workflows/workflow-details/ui/components/workflow-condition',
'<rootDir>/libs/playground/forms-demo/feature',
'<rootDir>/libs/playground/forms-demo/forms-demo-detail/feature',
'<rootDir>/libs/playground/forms-demo/forms-demo-list/feature',
'<rootDir>/libs/playground/forms-demo/data-access',
'<rootDir>/libs/shared/util/custom-component-store',
'<rootDir>/libs/playground/fetch-demo/feature/shell',
'<rootDir>/libs/playground/fetch-demo/feature/list',
'<rootDir>/libs/playground/fetch-demo/feature/client-side-filter',
'<rootDir>/libs/shared/ui/sidenav',
'<rootDir>/libs/shared/data-access/models',
'<rootDir>/libs/playground/fetch-demo/ui/paginator',
'<rootDir>/libs/playground/fetch-demo/data-access',
'<rootDir>/libs/playground/fetch-demo/feature/detail',
'<rootDir>/libs/playground/fetch-demo/ui/pokemon-card',
],
}