Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

When I run a suite of jasmine tests from the command line I'd like some type of fail fast option so it stops at the first assertion error

Does anything like this exist today?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.2k views
Welcome To Ask or Share your Answers For Others

1 Answer

Just threw together jasmine-bail-fast to get this behavior.

npm install jasmine-bail-fast

Then before your first spec:

require('jasmine-bail-fast');
jasmine.getEnv().bailFast();

Hoping to get it merged to jasmine core then added as a flag to jasmine-node.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...