Reputation: 9512
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
Reputation: 689
It could be the version. Try using ddescribe
and iit
instead.
Upvotes: 2