From 40c9349c525b516dbd1d79dd043c09211726251b Mon Sep 17 00:00:00 2001 From: smacpherson64 Date: Wed, 1 Aug 2018 11:43:33 -0500 Subject: [PATCH] fix: Added testURL in jest.config Implemented fix from @jgoz to failing TI builds: https://github.com/gnapse/jest-dom/pull/47#issuecomment-409612156 --- jest.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/jest.config.js b/jest.config.js index bfd72697..17c6783a 100644 --- a/jest.config.js +++ b/jest.config.js @@ -2,5 +2,6 @@ const jestConfig = require('kcd-scripts/jest') module.exports = Object.assign(jestConfig, { testEnvironment: 'jest-environment-jsdom', + testURL: 'http://localhost/', setupTestFrameworkScriptFile: '/setupTests.js', })