diff --git a/spec/javascripts/test_bundle.js b/spec/javascripts/test_bundle.js index bf11ddbbea8..7df8d2fd8b4 100644 --- a/spec/javascripts/test_bundle.js +++ b/spec/javascripts/test_bundle.js @@ -34,7 +34,11 @@ testsContext.keys().forEach(function (path) { try { testsContext(path); } catch (err) { - console.error('[ERROR] WITH SPEC FILE: ', path); - console.error(err); + console.error('[ERROR] Unable to load spec: ', path); + describe('Test bundle', function () { + it(`includes '${path}'`, function () { + expect(err).toBeNull(); + }); + }); } });