import "mocha"; import { expect } from "chai"; import { is, nonNullObjects } from "../helpers"; describe('Thunk "is._null"', () => { it('recognizes "null"', () => { expect(is._null(null)).to.be.true; for (const value of nonNullObjects) expect(is._null(value)).to.be.false; }); });