Skip to content

Commit

Permalink
remove silent
Browse files Browse the repository at this point in the history
  • Loading branch information
melikhov-dev committed Dec 12, 2023
1 parent 63f58b6 commit 37a5c06
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@
"scripts": {
"build": "npm run clear:dist && tsc",
"dev": "node ./scripts/setup-dev-env.js opensource && npm run clear:dist && APP_DEV_MODE=1 tsc-watch --onSuccess 'node dist/server'",
"test:unit": "jest -c './jest/unit/jest.config.js' --silent",
"test:unit": "jest -c './jest/unit/jest.config.js'",
"build:test:unit": "npm run build && npm run test:unit",
"test:int": "ENV=int-testing node ./scripts/setup-dev-env.js opensource && JEST_TESTCONTAINERS_CONFIG_PATH='./jest/int/testcontainers-config.js' NODE_TLS_REJECT_UNAUTHORIZED=0 jest -c './jest/int/jest.config.js' --testMatch '**/dist/server/tests/int/opensource/**/(*.)+(test|spec).[tj]s' --detectOpenHandles --silent",
"test:int": "ENV=int-testing node ./scripts/setup-dev-env.js opensource && JEST_TESTCONTAINERS_CONFIG_PATH='./jest/int/testcontainers-config.js' NODE_TLS_REJECT_UNAUTHORIZED=0 jest -c './jest/int/jest.config.js' --testMatch '**/dist/server/tests/int/opensource/**/(*.)+(test|spec).[tj]s' --detectOpenHandles",
"build:test:int": "npm run build && npm run test:int",
"test": "npm run build && npm run test:unit && npm run test:int",
"console": "node dist/server/console",
Expand Down

0 comments on commit 37a5c06

Please sign in to comment.