Scott Walter
Scott Walter

Reputation: 9512

Karma + Jasmine + fdescribe

When I attempt to use fdescribe I receive the error "^ 'fdescribe' is not defined.".

I have verified that I am using Jasmin 2.3 with the following:

  describe('Test to print out jasmine version', function() {
    it('prints jasmine version', function() {
        console.log('jasmine-version:');
        console.log(jasmine.version || (jasmine.getEnv().versionString && jasmine.getEnv().versionString()));
    });
});

Also I am using "karma": "0.13.19" and "karma-jasmine": "0.3.4".

Any ideas on why I can't use fdescribe or fit?

Upvotes: 2

Views: 2404

Answers (1)

Josh Leeb-du Toit
Josh Leeb-du Toit

Reputation: 689

It could be the version. Try using ddescribe and iit instead.

Upvotes: 2

Related Questions