Skip to content

Commit

Permalink
chore: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
drashbot committed May 8, 2024
1 parent b49f838 commit cd72ecd
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions deps.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import type { Protocol } from "https://unpkg.com/devtools-protocol@0.0.979918/types/protocol.d.ts";
import type { Protocol } from "https://unpkg.com/devtools-protocol@/types/protocol.d.ts";
export { Protocol };
export {
assertEquals,
AssertionError,
assertNotEquals,
} from "https://deno.land/std@0.139.0/testing/asserts.ts";
export { deferred } from "https://deno.land/std@0.139.0/async/deferred.ts";
export type { Deferred } from "https://deno.land/std@0.139.0/async/deferred.ts";
} from "https://deno.land/std@0.224.0/testing/asserts.ts";
export { deferred } from "https://deno.land/std@0.224.0/async/deferred.ts";
export type { Deferred } from "https://deno.land/std@0.224.0/async/deferred.ts";
6 changes: 3 additions & 3 deletions tests/deps.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export * as Drash from "https://deno.land/x/drash@v2.5.4/mod.ts";
export { resolve } from "https://deno.land/std@0.136.0/path/mod.ts";
export { delay } from "https://deno.land/std@0.126.0/async/delay.ts";
export * as Drash from "https://deno.land/x/drash@v3.0.0-beta.2/mod.ts";
export { resolve } from "https://deno.land/std@0.224.0/path/mod.ts";
export { delay } from "https://deno.land/std@0.224.0/async/delay.ts";
2 changes: 1 addition & 1 deletion tests/integration/docker_test/drivers.dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM debian:stable-slim

ENV CHROME_VERSION "124.0.6367.91"
ENV CHROME_VERSION "124.0.6367.155"

# Install chrome driver
RUN apt update -y \
Expand Down

0 comments on commit cd72ecd

Please sign in to comment.