Skip to content

Commit

Permalink
chore: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
drashbot committed Jan 31, 2024
1 parent 0d870c9 commit 93266fe
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions deps.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
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@0.0.1253724/types/protocol.d.ts";
export { Protocol };
export {
assertEquals,
AssertionError,
assertNotEquals,
} from "https://deno.land/std@0.139.0/testing/asserts.ts";
export { readLines } from "https://deno.land/std@0.139.0/io/mod.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.213.0/testing/asserts.ts";
export { readLines } from "https://deno.land/std@0.213.0/io/mod.ts";
export { deferred } from "https://deno.land/std@0.213.0/async/deferred.ts";
export type { Deferred } from "https://deno.land/std@0.213.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.213.0/path/mod.ts";
export { delay } from "https://deno.land/std@0.213.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 "101.0.4951.54"
ENV CHROME_VERSION "121.0.6167.139"

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

0 comments on commit 93266fe

Please sign in to comment.