mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2025-12-12 04:12:13 +00:00
10 lines
271 B
TypeScript
10 lines
271 B
TypeScript
import { Item, GildedRose } from '@/gilded-rose';
|
|
|
|
describe('Gilded Rose', () => {
|
|
it('should foo', () => {
|
|
const gildedRose = new GildedRose([new Item('foo', 0, 0)]);
|
|
const items = gildedRose.updateQuality();
|
|
expect(items[0].name).toBe('fixme');
|
|
});
|
|
});
|