diff --git a/TypeScript/test/gilded-rose.spec.ts b/TypeScript/test/gilded-rose.spec.ts index c8dadac1..07711d71 100644 --- a/TypeScript/test/gilded-rose.spec.ts +++ b/TypeScript/test/gilded-rose.spec.ts @@ -2,11 +2,9 @@ import { expect } from 'chai'; import { Item, GildedRose } from '../app/gilded-rose'; describe('Gilded Rose', function () { - - // it('should foo', function() { - // const gildedRose = new GildedRose([ new Item('foo', 0, 0) ]); - // const items = gildedRose.updateQuality(); - // expect(items[0].name).to.equal('fixme'); - // }); - + it('should foo', function() { + const gildedRose = new GildedRose([ new Item('foo', 0, 0) ]); + const items = gildedRose.updateQuality(); + expect(items[0].name).to.equal('fixme'); + }); });