Sha256: f9611c20544d19c9001a4b393bcb2f2046a9c6f73af8d735e8c46ffad92373ec

Contents?: true

Size: 1.26 KB

Versions: 52

Compression:

Stored size: 1.26 KB

Contents

'use strict';

require('../auto');

var test = require('tape');
var defineProperties = require('define-properties');
var callBind = require('call-bind');
var isEnumerable = Object.prototype.propertyIsEnumerable;
var functionsHaveNames = function f() {}.name === 'f';

var runTests = require('./tests');

test('shimmed', function (t) {
	t.equal(Array.prototype.flatMap.length, 1, 'Array#flatMap has a length of 1');
	t.test('Function name', { skip: !functionsHaveNames }, function (st) {
		st.equal(Array.prototype.flatMap.name, 'flatMap', 'Array#flatMap has name "flatMap"');
		st.end();
	});

	t.test('enumerability', { skip: !defineProperties.supportsDescriptors }, function (et) {
		et.equal(false, isEnumerable.call(Array.prototype, 'flatMap'), 'Array#flatMap is not enumerable');
		et.end();
	});

	var supportsStrictMode = (function () { return typeof this === 'undefined'; }());

	t.test('bad array/this value', { skip: !supportsStrictMode }, function (st) {
		st['throws'](function () { return Array.prototype.flatMap.call(undefined, 'a'); }, TypeError, 'undefined is not an object');
		st['throws'](function () { return Array.prototype.flatMap.call(null, 'a'); }, TypeError, 'null is not an object');
		st.end();
	});

	runTests(callBind(Array.prototype.flatMap), t);

	t.end();
});

Version data entries

52 entries across 52 versions & 3 rubygems

Version Path
rapid_stack-0.1.1 templates/FrontEnd/node_modules/array.prototype.flatmap/test/shimmed.js
rapid_stack-0.1.0 templates/FrontEnd/node_modules/array.prototype.flatmap/test/shimmed.js
immosquare-cleaner-0.1.60 node_modules/array.prototype.flatmap/test/shimmed.js
immosquare-cleaner-0.1.59 node_modules/array.prototype.flatmap/test/shimmed.js
immosquare-cleaner-0.1.58 node_modules/array.prototype.flatmap/test/shimmed.js
immosquare-cleaner-0.1.57 node_modules/array.prototype.flatmap/test/shimmed.js
immosquare-cleaner-0.1.56 node_modules/array.prototype.flatmap/test/shimmed.js
immosquare-cleaner-0.1.55 node_modules/array.prototype.flatmap/test/shimmed.js
immosquare-cleaner-0.1.54 node_modules/array.prototype.flatmap/test/shimmed.js
immosquare-cleaner-0.1.53 node_modules/array.prototype.flatmap/test/shimmed.js
immosquare-cleaner-0.1.52 node_modules/array.prototype.flatmap/test/shimmed.js
immosquare-cleaner-0.1.51 node_modules/array.prototype.flatmap/test/shimmed.js
immosquare-cleaner-0.1.50 node_modules/array.prototype.flatmap/test/shimmed.js
immosquare-cleaner-0.1.49 node_modules/array.prototype.flatmap/test/shimmed.js
immosquare-cleaner-0.1.48 node_modules/array.prototype.flatmap/test/shimmed.js
immosquare-cleaner-0.1.47 node_modules/array.prototype.flatmap/test/shimmed.js
immosquare-cleaner-0.1.46 node_modules/array.prototype.flatmap/test/shimmed.js
immosquare-cleaner-0.1.45 node_modules/array.prototype.flatmap/test/shimmed.js
immosquare-cleaner-0.1.44 node_modules/array.prototype.flatmap/test/shimmed.js
immosquare-cleaner-0.1.43 node_modules/array.prototype.flatmap/test/shimmed.js