最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Does jasmine-node offer any type of "fail fast" option? - Stack Overflow

programmeradmin3浏览0评论

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

Does anything like this exist today?

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

Does anything like this exist today?

Share Improve this question asked Jul 19, 2012 at 14:17 Toran BillupsToran Billups 27.4k41 gold badges158 silver badges272 bronze badges
Add a ment  | 

4 Answers 4

Reset to default 5

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.

I was able to monkey-patch jasmine for fast failures.

https://gist.github./btakita/4718081

As far as I'm aware, the answer is "No". We get around this to some extent by splitting the tests into separate files and running them one by one, so it stops once it hits a file with a failing test.

You can do it manually / artificially through a custom reporter. They seem to be working on that feature but issue is still open. Right now this is what I'm doing in jasmine-node:

function installExitOnFail(runner)
{
    var SpecReporter = require('jasmine-spec-reporter')
    var exitOnFailReporter = new SpecReporter({displayStacktrace: true});
    var specDone = exitOnFailReporter.specDone
    exitOnFailReporter.specDone = function(result)
    {
        if(result.status === 'failed')
        {
            console.log(outpcolors.red('\nFailed test: ' + result.fullName +
                '\nReason: '+result.failedExpectations[0].message) +
                '\n' + result.failedExpectations[0].stackut);
            process.exit(1);
        }
        else
        {
            specDone.apply(exitOnFailReporter, arguments)
        }
    };
    runner.addReporter(exitOnFailReporter);
}

var jasmineRunner = new require('jasmine')();
installExitOnFail(jasmineRunner);
jasmine.DEFAULT_TIMEOUT_INTERVAL = 99999999;
jasmineRunner.specFiles = [your specs files....];
jasmineRunner.execute();
发布评论

评论列表(0)

  1. 暂无评论