Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/aax/dev_deps.ts>expect

Universal AAX API client
Latest
variable expect
import { expect } from "https://deno.land/x/aax@v1.0.0-beta.1/dev_deps.ts";

Consists of a built-in matcher for jest and is ready to use out of the box.

import { expect, test } from "https://deno.land/x/unitest@$VERSION/mod.ts";

test("expect should have default jest matchers", async () => {
  await expect(Promise.resolve("test")).resolves.toBe("test");
  expect({}).toEqual({});
});