Merge pull request #1 from Kozer2/firstTest

First test
This commit is contained in:
Ben 2021-06-04 16:39:21 -05:00 committed by GitHub
commit 7ae6652573
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,7 +6,7 @@ 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');
expect(items[0].name).to.equal('foo');
});
});