We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb1f062 commit ca5617fCopy full SHA for ca5617f
exercises/practice/roman-numerals/roman-numerals.spec.js
@@ -27,6 +27,7 @@ describe('toRoman()', () => {
27
xtest('converts 1666', () => expect(toRoman(1666)).toEqual('MDCLXVI'));
28
xtest('converts 3000', () => expect(toRoman(3000)).toEqual('MMM'));
29
xtest('converts 3001', () => expect(toRoman(3001)).toEqual('MMMI'));
30
- xtest('converts 3888', () => expect(toRoman(3888)).toEqual('MMMDCCCLXXXVIII'));
+ xtest('converts 3888', () =>
31
+ expect(toRoman(3888)).toEqual('MMMDCCCLXXXVIII'));
32
xtest('converts 3999', () => expect(toRoman(3999)).toEqual('MMMCMXCIX'));
33
});
0 commit comments