UNPKG

reakit-utils

Version:

Reakit utils

7 lines (5 loc) 165 B
import { isPromise } from "../isPromise"; test("isPromise", () => { expect(isPromise(new Promise(() => {}))).toBe(true); expect(isPromise({})).toBe(false); });