Intellisense for jasmine JS tests?
[7.0]
Is there any way I can get intellisense from JS for code below?
/// <reference path="jasmine.js"/>//...
describe("Something", function () {Thanks.
it("can do something", function () {
expect(1). //I want .toBe etc. to popup here
});
});
Please sign in to leave a comment.
Seems to work if I hit ctrl+space, but the default intellisense poup will not display them.