Skip to content

Commit cfa62ee

Browse files
authored
Update dependencies
1 parent 9d02d50 commit cfa62ee

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

test/change.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {
55
assert,
66
assertEquals,
77
assertNotEquals,
8-
} from "https://deno.land/std@0.192.0/testing/asserts.ts";
8+
} from "https://deno.land/std@0.224.0/testing/asserts.ts";
99

1010
Deno.test("Source code translation works", async () => {
1111
const source = "const x = 'https://deno.land/std@0.146.0/testing/asserts.ts'"; // i-deno-outdated

test/redirect.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { checkRedirect } from "../redirect.ts";
22
import {
33
assertEquals,
44
assertNotEquals,
5-
} from "https://deno.land/std@0.192.0/testing/asserts.ts";
5+
} from "https://deno.land/std@0.224.0/testing/asserts.ts";
66

77
Deno.test("Redirects redirect to another URL (against deno.land/x)", async () => {
88
const redirect = await checkRedirect("https://deno.land/x/cliffy/mod.ts"); // i-deno-outdated

test/regex.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
import { apply } from "../regex.ts";
2-
import { assertEquals } from "https://deno.land/std@0.192.0/testing/asserts.ts";
2+
import { assertEquals } from "https://deno.land/std@0.224.0/testing/asserts.ts";
33

44
Deno.test("Removal works (deno.land/x)", () => {
5-
const url = "https://deno.land/x/cliffy@v0.25.7/mod.ts";
5+
const url = "https://deno.land/x/cliffy@v1.0.0-rc.4/mod.ts";
66

77
assertEquals(apply(url), "https://deno.land/x/cliffy/mod.ts"); // i-deno-outdated
88
});
99

1010
Deno.test("Removal works (esm.sh)", () => {
11-
const url = "https://esm.sh/react@18.2.0";
11+
const url = "https://esm.sh/react@18.3.1";
1212

1313
assertEquals(apply(url), "https://esm.sh/react"); // i-deno-outdated
1414
});

0 commit comments

Comments
 (0)