Skip to content

Commit

Permalink
update some deps
Browse files Browse the repository at this point in the history
  • Loading branch information
ebebbington committed May 25, 2024
1 parent ade97ac commit 204f1a8
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
3 changes: 1 addition & 2 deletions deps.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import type { Protocol } from "https://unpkg.com/[email protected].979918/types/protocol.d.ts";
import type { Protocol } from "https://unpkg.com/[email protected].1305504/types/protocol.d.ts";
export { Protocol };
export { assertEquals } from "https://deno.land/[email protected]/testing/asserts.ts";
export { deferred } from "https://deno.land/[email protected]/async/deferred.ts";
export type { Deferred } from "https://deno.land/[email protected]/async/deferred.ts";
5 changes: 3 additions & 2 deletions tests/deps.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
export * as Drash from "https://deno.land/x/[email protected]/mod.ts";
export { resolve } from "https://deno.land/[email protected]/path/mod.ts";
export { delay } from "https://deno.land/[email protected]/async/delay.ts";
export { resolve } from "https://deno.land/[email protected]/path/mod.ts";
export { delay } from "https://deno.land/[email protected]/async/delay.ts";
export { assertEquals } from "https://deno.land/[email protected]/assert/assert_equals.ts";
2 changes: 1 addition & 1 deletion tests/integration/csrf_protected_pages_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "../../deps.ts";
import { assertEquals } from "../deps.ts";
/**
* Other ways you can achieve this are:
*
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/manipulate_page_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "../../deps.ts";
import { assertEquals } from "../deps.ts";
import { Client } from "../../mod.ts";

Deno.test(
Expand Down
3 changes: 2 additions & 1 deletion tests/unit/client_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { assertEquals, deferred } from "../../deps.ts";
import { assertEquals } from "../deps.ts";
import { deferred } from "../../deps.ts";
import { Client } from "../../mod.ts";

Deno.test("create()", async (t) => {
Expand Down
3 changes: 1 addition & 2 deletions tests/unit/page_test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { Client } from "../../mod.ts";
import { assertEquals } from "../../deps.ts";
import { server } from "../server.ts";
import { resolve } from "../deps.ts";
import { assertEquals, resolve } from "../deps.ts";
Deno.test("screenshot()", async (t) => {
await t.step(
"Takes a Screenshot",
Expand Down

0 comments on commit 204f1a8

Please sign in to comment.