add initial test case for Javascript like all other (failing) test cases

This commit is contained in:
Peter Kofler 2013-10-22 21:08:34 +02:00
parent 4cb34a7c73
commit f185c17187

View File

@ -1,7 +1,9 @@
describe("Gilded Rose", function() { describe("Gilded Rose", function() {
it("should do something", function() { it("should foo", function() {
update_quality items = [ new Item("foo", 0, 0) ];
update_quality();
expect(items[0].name).toEqual("fixme");
}); });
}); });