Skip to content

Commit

Permalink
Suppress test warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
nukeop committed Aug 7, 2022
1 parent 964d017 commit 17fd2fe
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 9 deletions.
3 changes: 1 addition & 2 deletions lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,5 @@
"packages": [
"packages/*"
],
"version": "0.6.17",
"maxBuffer": 100000000
"version": "0.6.17"
}
4 changes: 2 additions & 2 deletions packages/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"scripts": {
"start": "webpack-dev-server --env NODE_ENV=development",
"build": "cross-env NODE_OPTIONS=--max-old-space-size=8192 webpack --progress --env NODE_ENV=production",
"test": "cross-env TZ=GMT jest",
"test": "cross-env TZ=GMT jest --silent",
"coverage": "cross-env TZ=GMT jest --coverage",
"lint": "eslint \"{app,test}/**/**.{js,jsx,ts,tsx}\"",
"lint:fix": "eslint \"{app,test}/**/**.{js,jsx,ts,tsx}\" --fix",
Expand Down Expand Up @@ -128,4 +128,4 @@
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
}
}
}
4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
"scripts": {
"lint": "eslint \"{test,src}/**/**.{js,ts}\"",
"lint:fix": "eslint \"{test,src}/**/**.{js,ts}\" --fix",
"test": "jest",
"coverage": "jest --coverage"
"test": "jest --silent",
"coverage": "jest --silent --coverage"
},
"dependencies": {
"@babel/core": "^7.9.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/main/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"build": "cross-env NODE_OPTIONS=--max-old-space-size=8192 webpack --env NODE_ENV=production",
"lint": "eslint src/**/**.ts",
"lint:fix": "eslint src/**/**.ts --fix",
"test": "jest"
"test": "jest --silent"
},
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions packages/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
"storybook": "start-storybook -p 9001 -c .storybook",
"lint": "eslint \"{lib,stories}/**.{ts,tsx,js,jsx}\"",
"lint:fix": "eslint \"{lib,stories}/**.{ts,tsx,js,jsx}\" --fix",
"test": "jest",
"coverage": "jest --coverage"
"test": "jest --silent",
"coverage": "jest --silent --coverage"
},
"peerDependencies": {
"react": "16.14.0",
Expand Down

0 comments on commit 17fd2fe

Please sign in to comment.