From 36ef1c776bd932b512244c6bcca13473a9fcf66a Mon Sep 17 00:00:00 2001 From: Nish Sinha Date: Fri, 13 Oct 2023 10:57:46 -0400 Subject: [PATCH] Use the GitHub Actions reporter to stop failing on core.setFailure tests --- jest.config.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/jest.config.js b/jest.config.js index e4cd261d..ee190c59 100644 --- a/jest.config.js +++ b/jest.config.js @@ -2,5 +2,6 @@ module.exports = { preset: 'ts-jest', transform: { '^.+\\.(ts|tsx)?$': 'ts-jest' - } + }, + reporters: [['github-actions', {silent: false}], 'summary'] }