Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to write some tests with Jasmine, but now have a problem if there are some code is asynchronous in beforeEach.

The sample code looks like:

describe("Jasmine", function() {

    var data ;

    beforeEach(function(){
        console.log('Before each');
        getSomeDataFromRemote(function(res){
            data = res;
        });
    });

    it("test1", function() {
        expect(data).toBe(something);
        console.log('Test finished');
    });

});

You can see, in the beforeEach, I want to get some data from remote, and assign it to the data asynchronously.

But in the test1, when I try to verify:

 expect(data).toBe(something);

The data is undefined, because getSomeDataFromRemote has not finished yet.

How to fix it?

share|improve this question
I know Mocha can do async setup, but I'm less familiar with Jasmine. Have you tried using the async spec constructs in your beforeEach? The docs only show them being used inside specs, but they might work in the beforeEach too. – Joe White May 10 '12 at 4:26

2 Answers

up vote 5 down vote accepted

Just like the async stuff within an it you can use the runs and waitsFor in your beforeEach:

define( 'Jasmine' , function () {
    var data ;

    beforeEach(function(){
        runs( function () {
            getSomeDataFromRemote(function(res){
                data = res;
            });
        });

        waitsFor(function () { return !!data; } , 'Timed out', 1000);
    });

    it("test1", function() {
        runs( function () {
              expect(data).toBe(something);
        });
    });
});

Although I'm going to assume that it's because this was test code I think you should probably have the getSomeDataFromRemote call inside your it as that's actually what you're testing ;)

You can see some larger examples in some tests I've written for an async API here: https://github.com/aaronpowell/db.js/blob/f8a1c331a20e14e286e3f21ff8cea8c2e3e57be6/tests/public/specs/open-db.js

share|improve this answer
Works perfect, thank you! – Freewind May 10 '12 at 6:31

In this case I typically stub the asynchronous call to respond immediately.

I'm not sure if you've seen it or not, but here is some documentation about asynchronous testing with Jasmine.

share|improve this answer
I just checked your link, but still don't know how to do it in my case. – Freewind May 10 '12 at 5:07
You wrap your getSomeDataFromRemote call in a runs function, as well as the expectations. You use waits to provide some timeout that's long enough before your expectation runs. It's fiddly for sure, and can cause random failures. This is why i just stub the call to return immediately. Sinon.js also provides some help in the ajax stubbing area if you prefer something further from the metal. – x1a4 May 10 '12 at 5:20
thank you, runs and waitsFor is exactly what I'm looking for. But since @Slace gave me an working and detail example, I have to accept his answer. Sorry~ – Freewind May 10 '12 at 6:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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