Sha256: f3b1bcd3c20abdbd06c21e271be5870994346f24290b94723b19030a88cde2b8

Contents?: true

Size: 686 Bytes

Versions: 127

Compression:

Stored size: 686 Bytes

Contents

'use strict';

var test = require('tape');

if (typeof Symbol === 'function' && typeof Symbol() === 'symbol') {
	test('has native Symbol support', function (t) {
		t.equal(typeof Symbol, 'function');
		t.equal(typeof Symbol(), 'symbol');
		t.end();
	});
	return;
}

var hasSymbols = require('../../shams');

test('polyfilled Symbols', function (t) {
	/* eslint-disable global-require */
	t.equal(hasSymbols(), false, 'hasSymbols is false before polyfilling');

	require('get-own-property-symbols');

	require('../tests')(t);

	var hasSymbolsAfter = hasSymbols();
	t.equal(hasSymbolsAfter, true, 'hasSymbols is true after polyfilling');
	/* eslint-enable global-require */
	t.end();
});

Version data entries

127 entries across 126 versions & 15 rubygems

Version Path
govuk_publishing_components-17.7.0 node_modules/has-symbols/test/shams/get-own-property-symbols.js
govuk_publishing_components-17.6.1 node_modules/has-symbols/test/shams/get-own-property-symbols.js
govuk_publishing_components-17.6.0 node_modules/has-symbols/test/shams/get-own-property-symbols.js
govuk_publishing_components-17.5.0 node_modules/has-symbols/test/shams/get-own-property-symbols.js
govuk_publishing_components-17.4.0 node_modules/has-symbols/test/shams/get-own-property-symbols.js
govuk_publishing_components-17.3.0 node_modules/has-symbols/test/shams/get-own-property-symbols.js
govuk_publishing_components-17.2.0 node_modules/has-symbols/test/shams/get-own-property-symbols.js
govuk_publishing_components-17.1.1 node_modules/has-symbols/test/shams/get-own-property-symbols.js
govuk_publishing_components-17.1.0 node_modules/has-symbols/test/shams/get-own-property-symbols.js
govuk_publishing_components-17.0.0 node_modules/has-symbols/test/shams/get-own-property-symbols.js
govuk_publishing_components-16.29.0 node_modules/has-symbols/test/shams/get-own-property-symbols.js
govuk_publishing_components-16.28.0 node_modules/has-symbols/test/shams/get-own-property-symbols.js
govuk_publishing_components-16.27.1 node_modules/has-symbols/test/shams/get-own-property-symbols.js
govuk_publishing_components-16.27.0 node_modules/has-symbols/test/shams/get-own-property-symbols.js
govuk_publishing_components-16.26.0 node_modules/has-symbols/test/shams/get-own-property-symbols.js
govuk_publishing_components-16.25.0 node_modules/has-symbols/test/shams/get-own-property-symbols.js
govuk_publishing_components-16.24.0 node_modules/has-symbols/test/shams/get-own-property-symbols.js
govuk_publishing_components-16.23.0 node_modules/has-symbols/test/shams/get-own-property-symbols.js
govuk_publishing_components-16.22.0 node_modules/has-symbols/test/shams/get-own-property-symbols.js
govuk_publishing_components-16.21.0 node_modules/has-symbols/test/shams/get-own-property-symbols.js