'use strict';vartest=require('tape');varhasSymbols=require('../');varrunSymbolTests=require('./tests');test('interface',function(t){t.equal(typeofhasSymbols,'function','is a function');t.equal(typeofhasSymbols(),'boolean','returns a boolean');t.end();});test('Symbols are supported',{skip:!hasSymbols()},function(t){runSymbolTests(t);t.end();});test('Symbols are not supported',{skip:hasSymbols()},function(t){t.equal(typeofSymbol,'undefined','global Symbol is undefined');t.equal(typeofObject.getOwnPropertySymbols,'undefined','Object.getOwnPropertySymbols does not exist');t.end();});