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.62 node_modules/regexp.prototype.flags/test/shimmed.js
immosquare-cleaner-0.1.61 node_modules/regexp.prototype.flags/test/shimmed.js
immosquare-cleaner-0.1.60 node_modules/regexp.prototype.flags/test/shimmed.js
immosquare-cleaner-0.1.59 node_modules/regexp.prototype.flags/test/shimmed.js
immosquare-cleaner-0.1.58 node_modules/regexp.prototype.flags/test/shimmed.js
immosquare-cleaner-0.1.57 node_modules/regexp.prototype.flags/test/shimmed.js
immosquare-cleaner-0.1.56 node_modules/regexp.prototype.flags/test/shimmed.js
immosquare-cleaner-0.1.55 node_modules/regexp.prototype.flags/test/shimmed.js
immosquare-cleaner-0.1.54 node_modules/regexp.prototype.flags/test/shimmed.js
immosquare-cleaner-0.1.53 node_modules/regexp.prototype.flags/test/shimmed.js
immosquare-cleaner-0.1.52 node_modules/regexp.prototype.flags/test/shimmed.js
immosquare-cleaner-0.1.51 node_modules/regexp.prototype.flags/test/shimmed.js
immosquare-cleaner-0.1.50 node_modules/regexp.prototype.flags/test/shimmed.js
immosquare-cleaner-0.1.49 node_modules/regexp.prototype.flags/test/shimmed.js
immosquare-cleaner-0.1.48 node_modules/regexp.prototype.flags/test/shimmed.js
immosquare-cleaner-0.1.47 node_modules/regexp.prototype.flags/test/shimmed.js
immosquare-cleaner-0.1.46 node_modules/regexp.prototype.flags/test/shimmed.js
immosquare-cleaner-0.1.45 node_modules/regexp.prototype.flags/test/shimmed.js
immosquare-cleaner-0.1.44 node_modules/regexp.prototype.flags/test/shimmed.js
immosquare-cleaner-0.1.43 node_modules/regexp.prototype.flags/test/shimmed.js