Ad
  • Custom User Avatar

    Those test don't exist, click reset.

        assert.strictEqual(RomanNumerals.fromRoman('IV'), 4);
        assert.strictEqual(RomanNumerals.fromRoman('MMVIII'), 2008);
    

    These are the ones you should see.

  • Custom User Avatar

    This js tests always fails:
    assert.strictEqual(RomanNumerals.fromRoman('IV'), 3);
    assert.strictEqual(RomanNumerals.fromRoman('MMVIII'), 2005);