UNPKG
hydro-fail-fast
Version:
latest (0.0.2)
0.0.2
0.0.1
Abort hydro tests on first failure
github.com/hydrojs/hydro-fail-fast
hydrojs/hydro-fail-fast
hydro-fail-fast
/
test
/
fixtures
/
fail.js
10 lines
(8 loc)
•
190 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
describe
(
'--fail-fast test'
,
function
(
) {
it
(
'fails'
,
function
(
) {
throw
new
Error
(
'test'
); });
it
(
'should not be executed'
,
function
(
) {
throw
new
Error
(
'test 2'
); }); });