source: trip-planner-front/node_modules/has-tostringtag/test/index.js@ 8d391a1

Last change on this file since 8d391a1 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 679 bytes
Line 
1'use strict';
2
3var test = require('tape');
4var hasSymbolToStringTag = require('../');
5var runSymbolTests = require('./tests');
6
7test('interface', function (t) {
8 t.equal(typeof hasSymbolToStringTag, 'function', 'is a function');
9 t.equal(typeof hasSymbolToStringTag(), 'boolean', 'returns a boolean');
10 t.end();
11});
12
13test('Symbol.toStringTag exists', { skip: !hasSymbolToStringTag() }, function (t) {
14 runSymbolTests(t);
15 t.end();
16});
17
18test('Symbol.toStringTag does not exist', { skip: hasSymbolToStringTag() }, function (t) {
19 t.equal(typeof Symbol === 'undefined' ? 'undefined' : typeof Symbol.toStringTag, 'undefined', 'global Symbol.toStringTag is undefined');
20 t.end();
21});
Note: See TracBrowser for help on using the repository browser.