I am running jasmine tests like this;

   jasmine.getEnv().addReporter(new jasmine.TrivialReporter());
   jasmine.getEnv().execute();

I would like to detect, using JavaScript, when the tests complete. How can I?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

I found two different ways to solve this issue. One is to hack jasmine to throw a custom event when it completes. Because I wanted to screen scrape after the test loaded, I inserted the event trigger into jasmine-html.js at the end of "reportRunnerResults"

$( 'body' ).trigger( "jasmine:complete" );

Then it's a matter of listening for the event:

$( 'body' ).bind("jasmine:complete", function(e) { ... }

In my case, I was running jasmine in an iFrame and wanted to pass the results to a parent window, so I trigger an event in the parent from my first bind:

$(window.parent).find('body').trigger("jasmine:complete");

It is also possible to do this without jquery. My strategy was to poll for text to be added to the "finished-at" span. In this example I poll every .5 seconds for 8 seconds.

var counter = 0;

function checkdone() {
    if ( $('#test-frame' ).contents().find('span.finished-at').text().length > 0) {
        ...
        clearInterval(timer);
    } else {
        counter += 500;
        if (counter > 8000) {
            ...
            clearInterval(timer);
        }
    }
}

var timer = setInterval( "checkdone()", 500 );
link|improve this answer
Thanks, this is great. I'm using it to run code after tests to create hyperlinks back to IntelliJ Idea from stack traces. – reckoner Mar 6 at 15:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.