|
| 1 | +describe('axe.utils.parseTabindex', function () { |
| 2 | + 'use strict'; |
| 3 | + |
| 4 | + it('should return 0 for "0"', function () { |
| 5 | + assert.strictEqual(axe.utils.parseTabindex('0'), 0); |
| 6 | + }); |
| 7 | + |
| 8 | + it('should return 1 for "+1"', function () { |
| 9 | + assert.strictEqual(axe.utils.parseTabindex('+1'), 1); |
| 10 | + }); |
| 11 | + |
| 12 | + it('should return -1 for "-1"', function () { |
| 13 | + assert.strictEqual(axe.utils.parseTabindex('-1'), -1); |
| 14 | + }); |
| 15 | + |
| 16 | + it('should return null for null', function () { |
| 17 | + assert.strictEqual(axe.utils.parseTabindex(null), null); |
| 18 | + }); |
| 19 | + |
| 20 | + it('should return null for an empty string', function () { |
| 21 | + assert.strictEqual(axe.utils.parseTabindex(''), null); |
| 22 | + }); |
| 23 | + |
| 24 | + it('should return null for a whitespace string', function () { |
| 25 | + assert.strictEqual(axe.utils.parseTabindex(' '), null); |
| 26 | + }); |
| 27 | + |
| 28 | + it('should return null for non-numeric strings', function () { |
| 29 | + assert.strictEqual(axe.utils.parseTabindex('abc'), null); |
| 30 | + }); |
| 31 | + |
| 32 | + it('should return the first valid digit(s) for decimal numbers', function () { |
| 33 | + assert.strictEqual(axe.utils.parseTabindex('2.5'), 2); |
| 34 | + }); |
| 35 | + |
| 36 | + it('should return 123 for "123abc"', function () { |
| 37 | + assert.strictEqual(axe.utils.parseTabindex('123abc'), 123); |
| 38 | + }); |
| 39 | +}); |
0 commit comments