11 lines
310 B
Plaintext
11 lines
310 B
Plaintext
"use strict";
|
|
|
|
var assert = require("chai").assert
|
|
, isToStringTagSupported = require("../../lib/is-to-string-tag-supported");
|
|
|
|
describe("lib/is-to-string-tag-supported", function () {
|
|
it("Should return boolean", function () {
|
|
assert(typeof isToStringTagSupported === "boolean");
|
|
});
|
|
});
|