Permalink
Cannot retrieve contributors at this time
48 lines (42 sloc)
1.59 KB
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/node_modules/is-boolean-object/test/index.js
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
var test = require('tape'); | |
var isBoolean = require('../'); | |
var hasToStringTag = require('has-tostringtag/shams')(); | |
test('not Booleans', function (t) { | |
t.test('primitives', function (st) { | |
st.notOk(isBoolean(), 'undefined is not Boolean'); | |
st.notOk(isBoolean(null), 'null is not Boolean'); | |
st.notOk(isBoolean(0), '0 is not Boolean'); | |
st.notOk(isBoolean(NaN), 'NaN is not Boolean'); | |
st.notOk(isBoolean(Infinity), 'Infinity is not Boolean'); | |
st.notOk(isBoolean('foo'), 'string is not Boolean'); | |
st.end(); | |
}); | |
t.test('objects', function (st) { | |
st.notOk(isBoolean(Object(42)), 'number object is not Boolean'); | |
st.notOk(isBoolean([]), 'array is not Boolean'); | |
st.notOk(isBoolean({}), 'object is not Boolean'); | |
st.notOk(isBoolean(function () {}), 'function is not Boolean'); | |
st.notOk(isBoolean(/a/g), 'regex literal is not Boolean'); | |
st.notOk(isBoolean(new RegExp('a', 'g')), 'regex object is not Boolean'); | |
st.notOk(isBoolean(new Date()), 'new Date() is not Boolean'); | |
st.end(); | |
}); | |
t.end(); | |
}); | |
test('@@toStringTag', { skip: !hasToStringTag }, function (t) { | |
var fakeBoolean = { | |
toString: function () { return 'true'; }, | |
valueOf: function () { return true; } | |
}; | |
fakeBoolean[Symbol.toStringTag] = 'Boolean'; | |
t.notOk(isBoolean(fakeBoolean), 'fake Boolean with @@toStringTag "Boolean" is not Boolean'); | |
t.end(); | |
}); | |
test('Booleans', function (t) { | |
t.ok(isBoolean(true), 'true is Boolean'); | |
t.ok(isBoolean(false), 'false is Boolean'); | |
t.ok(isBoolean(Object(true)), 'Object(true) is Boolean'); | |
t.ok(isBoolean(Object(false)), 'Object(false) is Boolean'); | |
t.end(); | |
}); |