diff --git a/lib/jasmine-core/jasmine.js b/lib/jasmine-core/jasmine.js index f618cced..26125ea1 100644 --- a/lib/jasmine-core/jasmine.js +++ b/lib/jasmine-core/jasmine.js @@ -2831,7 +2831,7 @@ getJasmineRequireObj().asymmetricEqualityTesterArgCompatShim = function(j$) { }); } - props = Object.getOwnPropertyDescriptors(Array.prototype); + props = Object.getOwnPropertyDescriptors(Array.prototype); // eslint-disable-line compat/compat a = []; for (k in props) { @@ -4114,13 +4114,14 @@ getJasmineRequireObj().GlobalErrors = function(j$) { return GlobalErrors; }; +/* eslint-disable compat/compat */ getJasmineRequireObj().toBePending = function(j$) { /** * Expect a promise to be pending, ie. the promise is neither resolved nor rejected. * @function * @async * @name async-matchers#toBePending - * @since 3.5.1 (should this be the next version or the version when it was added?) + * @since 3.6 * @example * await expectAsync(aPromise).toBePending(); */ @@ -4471,7 +4472,7 @@ getJasmineRequireObj().DiffBuilder = function (j$) { }; function dereferencePath(objectPath, actual, expected, pp) { - var i, asymmetricResult + var i, asymmetricResult; for (i = 0; i < objectPath.components.length; i++) { actual = actual[objectPath.components[i]]; @@ -6055,7 +6056,7 @@ getJasmineRequireObj().toHaveSize = function(j$) { }; } - var MAX_SAFE_INTEGER = Number.MAX_SAFE_INTEGER || 9007199254740991; + var MAX_SAFE_INTEGER = Number.MAX_SAFE_INTEGER || 9007199254740991; // eslint-disable-line compat/compat function isLength(value) { return (typeof value == 'number') && value > -1 && value % 1 === 0 && value <= MAX_SAFE_INTEGER; }