I have the following code:
describe("Player", function() {
var player;
beforeEach(function(){
player = new Player({
name: "Mark"
});
});
it("has a name", function() {
expect(player.name).toEqual("Mark");
});
it("has a score"), function() {
expect(player.score).toEqual(0);
};
});
Jasmine says it's passing 2 specs, even though player.score is undefined
If I do...
it("has a score"), function() {
console.log("hello")
expect(player.score).toEqual(0);
};
I can see the second test is never run. Any ideas why? (this is my first time using Jasmine).