Skip to main content
Module

x/url_concat/dev_deps.ts>expect

Concatenate URL parts
Latest
variable expect
import { expect } from "https://deno.land/x/url_concat@1.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({});
});