次のコードがあります。
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 は、2 つの仕様に合格していると言っていますplayer.score
が、undefined
私が行った場合...
it("has a score"), function() {
console.log("hello")
expect(player.score).toEqual(0);
};
2 番目のテストが実行されていないことがわかります。理由はありますか?(ジャスミンを使うのはこれが初めてです)。