diff --git a/tests/spec/s-global.js b/tests/spec/s-global.js index 96206815..707a134b 100644 --- a/tests/spec/s-global.js +++ b/tests/spec/s-global.js @@ -69,6 +69,7 @@ describe('global methods', function () { }); it('NaN parsing', function () { + expect(parseInt()).toBeNaN(); expect(parseInt(undefined)).toBeNaN(); expect(parseInt(null)).toBeNaN(); expect(parseInt(NaN)).toBeNaN();