mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2025-12-12 20:32:15 +00:00
12 lines
270 B
Plaintext
12 lines
270 B
Plaintext
open Jest
|
|
open Expect
|
|
open GildedRose
|
|
|
|
describe("Gilded Rose", () => {
|
|
test("should foo", () => {
|
|
let items: array<Item.t> = [{name: "foo", sellIn: 0, quality: 0}]
|
|
let updatedItems = updateQuality(items)
|
|
expect(updatedItems[0].name)->toBe("fixme")
|
|
})
|
|
})
|