mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2025-12-12 04:12:13 +00:00
fix(js and ts): typo
- 'gilged' to 'gilded' in respective specs
This commit is contained in:
parent
de471eb175
commit
34c9b0bbca
@ -4,9 +4,9 @@ import { Item, GildedRose } from '../app/gilded-rose';
|
|||||||
describe('Gilded Rose', function () {
|
describe('Gilded Rose', function () {
|
||||||
|
|
||||||
it('should foo', function() {
|
it('should foo', function() {
|
||||||
const gilgedRose = new GildedRose([ new Item('foo', 0, 0) ]);
|
const gildedRose = new GildedRose([ new Item('foo', 0, 0) ]);
|
||||||
const items = gilgedRose.updateQuality();
|
const items = gildedRose.updateQuality();
|
||||||
expect(items[0].name).to.equal('fixme');
|
expect(items[0].name).to.equal('fixme');
|
||||||
});
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|||||||
@ -1,8 +1,8 @@
|
|||||||
describe("Gilded Rose", function() {
|
describe("Gilded Rose", function() {
|
||||||
|
|
||||||
it("should foo", function() {
|
it("should foo", function() {
|
||||||
const gilgedRose = new Shop([ new Item("foo", 0, 0) ]);
|
const gildedRose = new Shop([ new Item("foo", 0, 0) ]);
|
||||||
const items = gilgedRose.updateQuality();
|
const items = gildedRose.updateQuality();
|
||||||
expect(items[0].name).toEqual("fixme");
|
expect(items[0].name).toEqual("fixme");
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user