describe("===", () => {
        it("returns true for equal boolean values and false otherwise", async (cb) => {
            expect(await boolsEqual(true, true)).toBe(true === true);
            expect(await boolsEqual(true, false)).toBe(true === false as any);
            cb();