it("returns the bitwise complement for the boolean value", async (cb) => {
            expect(await tildeBoolean(true)).toBe(~true);
            expect(await tildeBoolean(false)).toBe(~false);
            cb();
        });