Skip to content

Commit eb1dc4a

Browse files
committed
Use official BDD modules and upgrade deps
1 parent e3f351d commit eb1dc4a

File tree

5 files changed

+9
-19
lines changed

5 files changed

+9
-19
lines changed

builtins.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
import { assertThrows, describe, expect, it } from "./deps_test.ts";
1+
import { assertThrows } from "https://deno.land/[email protected]/testing/asserts.ts";
2+
import { describe, it } from "https://deno.land/[email protected]/testing/bdd.ts";
3+
import { expect } from "https://deno.land/x/[email protected]/mod.ts";
24
import {
35
all,
46
any,

custom.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
import { describe, expect, it } from "./deps_test.ts";
1+
import { describe, it } from "https://deno.land/[email protected]/testing/bdd.ts";
2+
import { expect } from "https://deno.land/x/[email protected]/mod.ts";
23
import { compact, compactObject, flatmap } from "./custom.ts";
34
import { repeat } from "./itertools.ts";
45

deps_test.ts

Lines changed: 0 additions & 15 deletions
This file was deleted.

itertools.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
import { describe, expect, it } from "./deps_test.ts";
1+
import { describe, it } from "https://deno.land/[email protected]/testing/bdd.ts";
2+
import { expect } from "https://deno.land/x/[email protected]/mod.ts";
23
import { all, iter, range } from "./builtins.ts";
34
import {
45
chain,

more-itertools.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
import { describe, expect, it } from "./deps_test.ts";
1+
import { describe, it } from "https://deno.land/[email protected]/testing/bdd.ts";
2+
import { expect } from "https://deno.land/x/[email protected]/mod.ts";
23
import { range } from "./builtins.ts";
34
import { first } from "./custom.ts";
45
import {

0 commit comments

Comments
 (0)