Skip to content

Commit

Permalink
Simplify logs during test execution (#98)
Browse files Browse the repository at this point in the history
  • Loading branch information
krzkaczor authored Jun 13, 2024
1 parent e85c3f1 commit 990398c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"build": "tsc && pnpm run lingui:extract && vite build",
"build:staging": "pnpm run build --mode staging",
"lint": "eslint src",
"verify": "concurrently --names \"LINT,TEST,TYPECHECK\" -c \"bgMagenta.bold,bgGreen.bold,bgBlue.bold\" \"pnpm run lint\" \"pnpm run test\" \"pnpm run typecheck\"",
"verify": "concurrently --names \"LINT,TEST,TYPECHECK\" -c \"bgMagenta.bold,bgGreen.bold,bgBlue.bold\" \"pnpm run lint\" \"pnpm run test --silent\" \"pnpm run typecheck\"",
"fix": "cd ../../ && pnpm run check:fix && cd - && pnpm run verify",
"test": "DEBUG_PRINT_LIMIT=100000 vitest --run",
"test-e2e": "playwright test",
Expand Down
2 changes: 2 additions & 0 deletions packages/app/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ export default defineConfig({
lingui(),
svgr(),
sentryVitePlugin({
silent: true,
telemetry: false,
org: process.env.SENTRY_ORG,
project: process.env.SENTRY_PROJECT,
}),
Expand Down

0 comments on commit 990398c

Please sign in to comment.