marked/test/specs/original/specs-spec.js
2018-04-10 09:34:26 -05:00

13 lines
275 B
JavaScript

var specTests = require('../../');
it('should run spec tests', function () {
// hide output
spyOn(console, 'log');
if (!specTests({stop: true})) {
// if tests fail rerun tests and show output
console.log.and.callThrough();
specTests();
fail();
}
});