2018-04-09 22:59:01 -05:00
|
|
|
var specTests = require('../../');
|
2018-03-04 00:47:02 -06:00
|
|
|
|
|
|
|
it('should run spec tests', function () {
|
|
|
|
// hide output
|
|
|
|
spyOn(console, 'log');
|
2019-03-11 15:02:13 -05:00
|
|
|
if (!specTests(['', '', '--stop'])) {
|
2018-03-04 00:47:02 -06:00
|
|
|
// if tests fail rerun tests and show output
|
|
|
|
console.log.and.callThrough();
|
2018-03-04 00:51:00 -06:00
|
|
|
specTests();
|
2018-03-04 00:47:02 -06:00
|
|
|
fail();
|
|
|
|
}
|
|
|
|
});
|