????

Your IP : 3.145.79.94


Current Path : C:/inetpub/vhost/binhdinhinvest.gdtvietnam.com/api/node_modules/es-aggregate-error/test/
Upload File :
Current File : C:/inetpub/vhost/binhdinhinvest.gdtvietnam.com/api/node_modules/es-aggregate-error/test/builtin.js

'use strict';

var defineProperties = require('define-properties');
var isEnumerable = Object.prototype.propertyIsEnumerable;

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

module.exports = function (t) {
	if (typeof AggregateError === 'undefined') {
		t.fail('AggregateError does not exist');
		return;
	}
	t.test('enumerability', { skip: !defineProperties.supportsDescriptors }, function (et) {
		et.equal(false, isEnumerable.call(global, 'AggregateError'), 'AggregateError is not enumerable');
		et.end();
	});

	runTests(AggregateError, t);
};