From 17fd2fef091b15e38afe7d8e40dbe95494ae4798 Mon Sep 17 00:00:00 2001 From: nukeop <12746779+nukeop@users.noreply.github.com> Date: Mon, 8 Aug 2022 01:49:08 +0200 Subject: [PATCH] Suppress test warnings --- lerna.json | 3 +-- packages/app/package.json | 4 ++-- packages/core/package.json | 4 ++-- packages/main/package.json | 2 +- packages/ui/package.json | 4 ++-- 5 files changed, 8 insertions(+), 9 deletions(-) diff --git a/lerna.json b/lerna.json index 02157ad525..14986222ab 100644 --- a/lerna.json +++ b/lerna.json @@ -2,6 +2,5 @@ "packages": [ "packages/*" ], - "version": "0.6.17", - "maxBuffer": 100000000 + "version": "0.6.17" } \ No newline at end of file diff --git a/packages/app/package.json b/packages/app/package.json index 34ff2f64e1..b31f086b29 100644 --- a/packages/app/package.json +++ b/packages/app/package.json @@ -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", @@ -128,4 +128,4 @@ "webpack-cli": "^4.9.2", "webpack-dev-server": "^4.7.4" } -} +} \ No newline at end of file diff --git a/packages/core/package.json b/packages/core/package.json index cd57527a32..e2c22dde2f 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -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", diff --git a/packages/main/package.json b/packages/main/package.json index 74a9d50643..cc9b4f0215 100644 --- a/packages/main/package.json +++ b/packages/main/package.json @@ -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", diff --git a/packages/ui/package.json b/packages/ui/package.json index 6838f3e95b..1261002e5c 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -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",