This commit is contained in:
James Sayer 2022-05-27 10:24:46 -04:00
parent 6f9729cd2e
commit a38520c273

View File

@ -16,7 +16,7 @@ describe('Gilded Rose', () => {
const items = gildedRose.updateQuality();
expect(items[0].name).toBe('foo');
});
it('The quality of Conjured item should be degraded by twice', () => {
it('The quality of Conjured item should be degraded by twice more than normal items', () => {
const items = gildedRose.updateQuality();
expect(items[1].quality).toBe(6);
});