diff --git a/jest-playwright.config.js b/jest-playwright.config.js index a8b5202..ed2b558 100644 --- a/jest-playwright.config.js +++ b/jest-playwright.config.js @@ -6,7 +6,7 @@ module.exports = { command: `npx next dev -p ${PORT}`, port: PORT, launchTimeout: 30_000, - debug: true, + debug: false, options: { env: { E2E_TESTS: 'true', @@ -17,5 +17,5 @@ module.exports = { headless: true, // slowMo: 25, }, - collectCoverage: true, + collectCoverage: false, // doesn't really do what we need }; diff --git a/jest.config.js b/jest.config.js index 1dd4520..bf5a207 100644 --- a/jest.config.js +++ b/jest.config.js @@ -3,6 +3,7 @@ const isUnit = process.env.type !== 'e2e'; const sharedConfig = { setupFilesAfterEnv: ['jest-partial'], modulePathIgnorePatterns: ['/docs', '/lib'], + verbose: true, }; if (isUnit) { @@ -12,7 +13,7 @@ if (isUnit) { testEnvironment: 'node', globals: { 'ts-jest': { - tsConfig: './tsconfig.build.json', + tsconfig: './tsconfig.build.json', }, }, };