mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2025-12-12 04:12:13 +00:00
10 lines
186 B
JavaScript
10 lines
186 B
JavaScript
describe("Gilded Rose", function() {
|
|
|
|
it("should foo", function() {
|
|
items = [ new Item("foo", 0, 0) ];
|
|
update_quality();
|
|
expect(items[0].name).toEqual("fixme");
|
|
});
|
|
|
|
});
|