Skip to content

Commit

Permalink
test: migrate test deps to JSR
Browse files Browse the repository at this point in the history
  • Loading branch information
KnorpelSenf committed Oct 27, 2024
1 parent a638e32 commit e8e8f9f
Showing 1 changed file with 4 additions and 18 deletions.
22 changes: 4 additions & 18 deletions test/deps.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,24 +8,10 @@ export {
assertRejects,
assertStringIncludes,
assertThrows,
} from "https://deno.land/[email protected]/assert/mod.ts";
export {
afterEach,
beforeEach,
describe,
it,
} from "https://deno.land/[email protected]/testing/bdd.ts";
export {
type Spy,
spy,
type Stub,
stub,
} from "https://deno.land/[email protected]/testing/mock.ts";
export {
assertType,
type Has,
type IsExact,
} from "https://deno.land/[email protected]/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<Uint8Array> | AsyncIterable<Uint8Array>,
Expand Down

0 comments on commit e8e8f9f

Please sign in to comment.