From a8a380c0684a2d49d56cc63471f71550d378cee0 Mon Sep 17 00:00:00 2001 From: drashbot <59404681+drashbot@users.noreply.github.com> Date: Fri, 29 Mar 2024 00:32:27 +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..98d96c60 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.1279463/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.221.0/testing/asserts.ts"; +export { readLines } from "https://deno.land/std@0.221.0/io/mod.ts"; +export { deferred } from "https://deno.land/std@0.221.0/async/deferred.ts"; +export type { Deferred } from "https://deno.land/std@0.221.0/async/deferred.ts"; diff --git a/tests/deps.ts b/tests/deps.ts index 13a68001..3a88d4ce 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.221.0/path/mod.ts"; +export { delay } from "https://deno.land/std@0.221.0/async/delay.ts"; diff --git a/tests/integration/docker_test/drivers.dockerfile b/tests/integration/docker_test/drivers.dockerfile index 38229ed8..b678234c 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 "123.0.6312.86" # Install chrome driver RUN apt update -y \