From 544fc1df0efe4c0b5229105086ffee2cf0e4baed Mon Sep 17 00:00:00 2001 From: Rafe Goldberg Date: Mon, 13 Jan 2020 07:49:35 -0800 Subject: [PATCH] fix: coverage report handlebars instance errors Fix per this issue: https://github.com/facebook/jest/issues/9396#issuecomment-573328488 --- jest.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/jest.config.js b/jest.config.js index 940766a62..f767ca648 100644 --- a/jest.config.js +++ b/jest.config.js @@ -2,6 +2,7 @@ const path = require('path'); module.exports = { testURL: 'http://localhost', + coverageReporters: ['json', 'text', 'lcovonly', 'clover'], // per https://github.com/facebook/jest/issues/9396#issuecomment-573328488 coverageThreshold: { global: { branches: 90,