Last active
July 22, 2021 17:20
-
-
Save brandonroberts/8577ef46b8d72d5b8789ce9e584d773e to your computer and use it in GitHub Desktop.
Jest Config w/helper
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
+ const { getJestProjects } = require('@nrwl/jest'); | |
+ module.exports = { projects: getJestProjects() }; | |
- module.exports = { | |
- projects: [ | |
- '<rootDir>/apps/products', | |
- '<rootDir>/apps/cart', | |
- '<rootDir>/libs/shared/product/ui', | |
- '<rootDir>/libs/products/home-page', | |
- '<rootDir>/libs/cart/cart-page', | |
- '<rootDir>/libs/shared/cart/state', | |
- '<rootDir>/libs/shared/product/state', | |
- '<rootDir>/libs/shared/header', | |
- '<rootDir>/libs/products/product-detail-page', | |
- ], | |
- projects: getJestProjects() | |
- }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment