import "mocha"; import { expect } from "chai"; import { is } from "./helpers"; describe('Thunk "is._any"', () => { it('always returns "true"', () => { const values = [ NaN, 0, false, Error, "text", () => { throw null; }, [] ]; for (const value of values) expect(is._any(value)).to.be.true; }); });