Sha256: 1e209ddea1c70925d03329861031b7af9790e98c7b5d8d26b6b8ae9d84936dc2

Contents?: true

Size: 1.7 KB

Versions: 52

Compression:

Stored size: 1.7 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 = require('functions-have-names')();
var functionsHaveConfigurableNames = require('functions-have-names').functionsHaveConfigurableNames();
var hasStrictMode = require('has-strict-mode')();

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

test('shimmed', function (t) {
	var descriptor = Object.getOwnPropertyDescriptor(RegExp.prototype, 'flags');

	t.equal(descriptor.get.length, 0, 'RegExp#flags getter has a length of 0');

	t.test('Function name', { skip: !functionsHaveNames }, function (st) {
		st.equal(descriptor.get.name, functionsHaveConfigurableNames ? 'get flags' : 'flags', 'RegExp#flags getter has name "get flags" (or "flags" if function names are not configurable)');
		st.end();
	});

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

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

	t.test('has the correct descriptor', function (st) {
		st.equal(descriptor.configurable, true);
		st.equal(descriptor.enumerable, false);
		st.equal(typeof descriptor.get, 'function');
		st.equal(descriptor.set, undefined);
		st.end();
	});

	runTests(callBind(descriptor.get), t);

	t.end();
});

Version data entries

52 entries across 52 versions & 2 rubygems

Version Path
immosquare-cleaner-0.1.42 node_modules/regexp.prototype.flags/test/shimmed.js
immosquare-cleaner-0.1.41 node_modules/regexp.prototype.flags/test/shimmed.js
immosquare-cleaner-0.1.40 node_modules/regexp.prototype.flags/test/shimmed.js
immosquare-cleaner-0.1.39 node_modules/regexp.prototype.flags/test/shimmed.js
immosquare-cleaner-0.1.38 node_modules/regexp.prototype.flags/test/shimmed.js
immosquare-cleaner-0.1.32 node_modules/regexp.prototype.flags/test/shimmed.js
immosquare-cleaner-0.1.31 node_modules/regexp.prototype.flags/test/shimmed.js
immosquare-cleaner-0.1.30 node_modules/regexp.prototype.flags/test/shimmed.js
immosquare-cleaner-0.1.29 node_modules/regexp.prototype.flags/test/shimmed.js
immosquare-cleaner-0.1.28 node_modules/regexp.prototype.flags/test/shimmed.js
immosquare-cleaner-0.1.27 node_modules/regexp.prototype.flags/test/shimmed.js
immosquare-cleaner-0.1.26 node_modules/regexp.prototype.flags/test/shimmed.js
immosquare-cleaner-0.1.25 node_modules/regexp.prototype.flags/test/shimmed.js
immosquare-cleaner-0.1.24 node_modules/regexp.prototype.flags/test/shimmed.js
immosquare-cleaner-0.1.23 node_modules/regexp.prototype.flags/test/shimmed.js
immosquare-cleaner-0.1.22 node_modules/regexp.prototype.flags/test/shimmed.js
immosquare-cleaner-0.1.21 node_modules/regexp.prototype.flags/test/shimmed.js
immosquare-cleaner-0.1.20 node_modules/regexp.prototype.flags/test/shimmed.js
immosquare-cleaner-0.1.19 node_modules/regexp.prototype.flags/test/shimmed.js
immosquare-cleaner-0.1.18 node_modules/regexp.prototype.flags/test/shimmed.js