describe("x > y", () => {
        it("returns true for true compared to false and false otherwise", async (cb) => {
            expect(await boolGreaterThan(true, false)).toBe(true > false);
            expect(await boolGreaterThan(true, true)).toBe(true > true);
            expect(await boolGreaterThan(false, false)).toBe(false > false);