node -v: v12.13.0npm -v: 6.12.1npm ls jest or npm ls react-scripts (if you haven鈥檛 ejected): [email protected] C:\_SSD_DEV\ionic\my_project
`-- [email protected]
npm run test -- --silent --coverage --watchAll./jest.config.jsjest.config.js
module.exports = {
preset: 'jest-preset-angular',
setupFilesAfterEnv: ['<rootDir>/src/setupJest.ts'],
transformIgnorePatterns: ['<rootDir>/node_modules/(?!@ionic|@saninn|@ngrx)'],
coverageReporters: process.env.CI ? ['text'] : ['lcov'],
coveragePathIgnorePatterns: ['/node_modules/', 'package.json', '<rootDir>/src/test.ts', './manual-plugins/'],
testPathIgnorePatterns: ['/node_modules/', './src/test.ts', './plugins/', '<rootDir>/coverage/', './manual-plugins/'],
modulePathIgnorePatterns: ['<rootDir>/coverage/', '<rootDir>/plugins/'],
collectCoverage: true,
coverageDirectory: './coverage',
collectCoverageFrom: ['.src/**/*.ts']
};
npm run test -- --silent --coverage --watchAllJest output text should be visible in the complete width of the output tab in VScode
Output is truncated in several parts

It happens just for the Summary part, the first output is correctly rendered.

can you create a sample repo to help us diagnose?
I also encounter this issue. It happens with any jest project.
Just wanted to say we've been encountering the same problem. Funnily enough it seems to only mangle the output for test failures (ironically the most important part).

Most helpful comment
Just wanted to say we've been encountering the same problem. Funnily enough it seems to only mangle the output for test failures (ironically the most important part).
