it("returns false for true and true for false", async (cb) => {
            expect(await notBoolean(true)).toBe(!true);
            expect(await notBoolean(false)).toBe(!false);
            cb();
        });