add jest config file

This commit is contained in:
Philipp Kühn
2018-11-11 15:47:21 +01:00
parent 0eba7b48b5
commit e1c5bd4eda
2 changed files with 7 additions and 0 deletions

1
.gitignore vendored
View File

@@ -1,6 +1,7 @@
.DS_Store .DS_Store
node_modules node_modules
dist/ dist/
coverage/
# local env files # local env files
.env.local .env.local

6
jest.config.js Normal file
View File

@@ -0,0 +1,6 @@
module.exports = {
verbose: true,
roots: [
'<rootDir>/packages/',
],
}