From cf1b17f7d6129d125e5a0acf867eeaafa8ccce14 Mon Sep 17 00:00:00 2001 From: drashbot <59404681+drashbot@users.noreply.github.com> Date: Sat, 2 Mar 2024 00:31:18 +0000 Subject: [PATCH] chore: update deps --- deps.ts | 10 +++++----- tests/deps.ts | 6 +++--- tests/integration/docker_test/drivers.dockerfile | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/deps.ts b/deps.ts index 7a75a793..4fbc6c2c 100644 --- a/deps.ts +++ b/deps.ts @@ -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.1266816/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.218.2/testing/asserts.ts"; +export { readLines } from "https://deno.land/std@0.218.2/io/mod.ts"; +export { deferred } from "https://deno.land/std@0.218.2/async/deferred.ts"; +export type { Deferred } from "https://deno.land/std@0.218.2/async/deferred.ts"; diff --git a/tests/deps.ts b/tests/deps.ts index 13a68001..74dff5fe 100644 --- a/tests/deps.ts +++ b/tests/deps.ts @@ -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.218.2/path/mod.ts"; +export { delay } from "https://deno.land/std@0.218.2/async/delay.ts"; diff --git a/tests/integration/docker_test/drivers.dockerfile b/tests/integration/docker_test/drivers.dockerfile index 38229ed8..e7ec5471 100644 --- a/tests/integration/docker_test/drivers.dockerfile +++ b/tests/integration/docker_test/drivers.dockerfile @@ -1,6 +1,6 @@ FROM debian:stable-slim -ENV CHROME_VERSION "101.0.4951.54" +ENV CHROME_VERSION "122.0.6261.95" # Install chrome driver RUN apt update -y \