From b35bcb8ec768747be051d9146fe06259cbe97760 Mon Sep 17 00:00:00 2001 From: drashbot <59404681+drashbot@users.noreply.github.com> Date: Wed, 17 Jan 2024 00:34:50 +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..6c12964a 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.1247362/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.212.0/testing/asserts.ts"; +export { readLines } from "https://deno.land/std@0.212.0/io/mod.ts"; +export { deferred } from "https://deno.land/std@0.212.0/async/deferred.ts"; +export type { Deferred } from "https://deno.land/std@0.212.0/async/deferred.ts"; diff --git a/tests/deps.ts b/tests/deps.ts index 13a68001..e05e1de5 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.212.0/path/mod.ts"; +export { delay } from "https://deno.land/std@0.212.0/async/delay.ts"; diff --git a/tests/integration/docker_test/drivers.dockerfile b/tests/integration/docker_test/drivers.dockerfile index 38229ed8..04ff072b 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 "120.0.6099.224" # Install chrome driver RUN apt update -y \