From cfb79cb6a6ef5ec0f878b0c92879307db8ef5225 Mon Sep 17 00:00:00 2001 From: Filip Maj Date: Wed, 5 Jun 2024 11:33:46 -0400 Subject: [PATCH] Use dev deps appropriately. --- src/dev_deps.ts | 1 + src/tests.ts | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/dev_deps.ts b/src/dev_deps.ts index dd63679..d03534a 100644 --- a/src/dev_deps.ts +++ b/src/dev_deps.ts @@ -5,6 +5,7 @@ export { export type { Spy } from "https://deno.land/std@0.177.0/testing/mock.ts"; export { assertEquals, + assertMatch, assertNotEquals, assertThrows, } from "https://deno.land/std@0.177.0/testing/asserts.ts"; diff --git a/src/tests.ts b/src/tests.ts index 8f784a3..c3314a8 100644 --- a/src/tests.ts +++ b/src/tests.ts @@ -1,6 +1,6 @@ -import { assertMatch } from "https://deno.land/std@0.177.0/testing/asserts.ts"; import { assertEquals, + assertMatch, assertNotEquals, assertSpyCall, assertThrows,