uncomments test

This commit is contained in:
vincelee888 2021-09-03 16:45:06 +01:00
parent fd35bf5be1
commit 3f223c611d

View File

@ -2,11 +2,9 @@ import { expect } from 'chai';
import { Item, GildedRose } from '../app/gilded-rose'; import { Item, GildedRose } from '../app/gilded-rose';
describe('Gilded Rose', function () { describe('Gilded Rose', function () {
it('should foo', function() {
// it('should foo', function() { const gildedRose = new GildedRose([ new Item('foo', 0, 0) ]);
// const gildedRose = new GildedRose([ new Item('foo', 0, 0) ]); const items = gildedRose.updateQuality();
// const items = gildedRose.updateQuality(); expect(items[0].name).to.equal('fixme');
// expect(items[0].name).to.equal('fixme'); });
// });
}); });