ensure karma fails if it cannot load all spec files

This commit is contained in:
Mike Greiling 2017-02-07 11:41:29 -06:00
parent 0b97dd7ee4
commit 8d29e4c4e3
1 changed files with 6 additions and 2 deletions

View File

@ -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();
});
});
}
});