Skip to content

Commit

Permalink
Add import to jest test
Browse files Browse the repository at this point in the history
  • Loading branch information
Colin McDonnell committed Jul 6, 2021
1 parent 5a14940 commit 23b0b27
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions deno/lib/__tests__/firstparty.test.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
import { expect } from "https://deno.land/x/[email protected]/mod.ts";
const test = Deno.test;

import { util } from "../helpers/util.ts";
import * as z from "../index.ts";

Expand Down
2 changes: 2 additions & 0 deletions src/__tests__/firstparty.test.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import { test } from "@jest/globals";

import { util } from "../helpers/util";
import * as z from "../index";

Expand Down

0 comments on commit 23b0b27

Please sign in to comment.