From e8e8f9f6210a28077d3b04e0baaa3b3c23b9ceeb Mon Sep 17 00:00:00 2001 From: KnorpelSenf Date: Sun, 27 Oct 2024 14:07:53 +0100 Subject: [PATCH] test: migrate test deps to JSR --- test/deps.test.ts | 22 ++++------------------ 1 file changed, 4 insertions(+), 18 deletions(-) diff --git a/test/deps.test.ts b/test/deps.test.ts index 4f4777e1..69035ace 100644 --- a/test/deps.test.ts +++ b/test/deps.test.ts @@ -8,24 +8,10 @@ export { assertRejects, assertStringIncludes, assertThrows, -} from "https://deno.land/std@0.211.0/assert/mod.ts"; -export { - afterEach, - beforeEach, - describe, - it, -} from "https://deno.land/std@0.211.0/testing/bdd.ts"; -export { - type Spy, - spy, - type Stub, - stub, -} from "https://deno.land/std@0.211.0/testing/mock.ts"; -export { - assertType, - type Has, - type IsExact, -} from "https://deno.land/std@0.211.0/testing/types.ts"; +} from "jsr:@std/assert"; +export { afterEach, beforeEach, describe, it } from "jsr:@std/testing/bdd"; +export { type Spy, spy, type Stub, stub } from "jsr:@std/testing/mock"; +export { assertType, type Has, type IsExact } from "jsr:@std/testing/types"; export async function convertToUint8Array( data: Iterable | AsyncIterable,