Fix and pass first test

This commit is contained in:
Dan Holmes 2020-12-03 11:52:38 +00:00
parent e2c5826e71
commit 92b6f1df15

View File

@ -4,7 +4,7 @@ describe("Gilded Rose", function() {
it("should foo", function () { it("should foo", function () {
const gildedRose = new Shop([new Item("foo", 0, 0)]); const gildedRose = new Shop([new Item("foo", 0, 0)]);
const items = gildedRose.updateQuality(); const items = gildedRose.updateQuality();
expect(items[0].name).toEqual("fixme"); expect(items[0].name).toEqual("foo");
}); });
}); });