astro-ghostcms/.pnpm-store/v3/files/8d/6e40e90573d47dd77506844c292...

68 lines
1.8 KiB
Plaintext

require('../auto');
var test = require('tape');
var defineProperties = require('define-properties');
var callBind = require('call-bind');
var hasStrictMode = require('has-strict-mode')();
var isEnumerable = Object.prototype.propertyIsEnumerable;
var functionsHaveNames = require('functions-have-names')();
var runTests = require('./tests');
test('shimmed', function (t) {
t.equal(Array.prototype.filter.length, 1, 'Array#filter has a length of 1');
t.test('Function name', { skip: !functionsHaveNames }, function (st) {
st.equal(Array.prototype.filter.name, 'filter', 'Array#filter has name "filter"');
st.end();
});
t.test('enumerability', { skip: !defineProperties.supportsDescriptors }, function (et) {
et.equal(false, isEnumerable.call(Array.prototype, 'filter'), 'Array#filter is not enumerable');
et.end();
});
t.test('bad array/this value', { skip: !hasStrictMode }, function (st) {
st['throws'](function () { return Array.prototype.filter.call(undefined, 'a'); }, TypeError, 'undefined is not an object');
st['throws'](function () { return Array.prototype.filter.call(null, 'a'); }, TypeError, 'null is not an object');
st.end();
});
t.test('receiver boxing', function (st) {
st.plan(hasStrictMode ? 3 : 2);
var context = 'x';
Array.prototype.filter.call(
'f',
function () {
st.equal(typeof this, 'object');
st.equal(String.prototype.toString.call(this), context);
},
context
);
st.test('strict mode', { skip: !hasStrictMode }, function (sst) {
sst.plan(2);
Array.prototype.filter.call(
'f',
function () {
'use strict';
sst.equal(typeof this, 'string');
sst.equal(this, context);
},
context
);
sst.end();
});
st.end();
});
runTests(callBind(Array.prototype.filter), t);
t.end();
});