Skip to content

Commit 7fc3bf7

Browse files
committed
Update test file
1 parent 0e5ce18 commit 7fc3bf7

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

exercises/practice/say/say.spec.js

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,14 @@ describe('say', () => {
2222
expect(say(22)).toBe('twenty-two');
2323
});
2424

25+
xtest('thirty', () => {
26+
expect(say(30)).toBe('thirty');
27+
});
28+
29+
xtest('ninety-nine', () => {
30+
expect(say(99)).toBe('ninety-nine');
31+
});
32+
2533
xtest('one hundred', () => {
2634
expect(say(100)).toBe('one hundred');
2735
});
@@ -30,6 +38,14 @@ describe('say', () => {
3038
expect(say(123)).toBe('one hundred twenty-three');
3139
});
3240

41+
xtest('two hundred', () => {
42+
expect(say(200)).toBe('two hundred');
43+
});
44+
45+
xtest('nine hundred ninety-nine', () => {
46+
expect(say(999)).toBe('nine hundred ninety-nine');
47+
});
48+
3349
xtest('one thousand', () => {
3450
expect(say(1000)).toBe('one thousand');
3551
});

0 commit comments

Comments
 (0)