Skip to content

Commit 43bce06

Browse files
committed
chore: update std for tests
1 parent 19506a0 commit 43bce06

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

_test_util.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
import { assert } from "https://deno.land/std@0.203.0/assert/assert.ts";
2-
export { delay } from "https://deno.land/std@0.203.0/async/delay.ts";
3-
export { assert } from "https://deno.land/std@0.203.0/assert/assert.ts";
4-
export { assertEquals } from "https://deno.land/std@0.203.0/assert/assert_equals.ts";
1+
import { assert } from "https://deno.land/std@0.214.0/assert/assert.ts";
2+
export { delay } from "https://deno.land/std@0.214.0/async/delay.ts";
3+
export { assert } from "https://deno.land/std@0.214.0/assert/assert.ts";
4+
export { assertEquals } from "https://deno.land/std@0.214.0/assert/assert_equals.ts";
55
export {
66
assertNotEquals,
7-
} from "https://deno.land/std@0.203.0/assert/assert_not_equals.ts";
8-
export { timingSafeEqual } from "https://deno.land/std@0.203.0/crypto/timing_safe_equal.ts";
7+
} from "https://deno.land/std@0.214.0/assert/assert_not_equals.ts";
8+
export { timingSafeEqual } from "https://deno.land/std@0.214.0/crypto/timing_safe_equal.ts";
99

1010
let kv: Deno.Kv | undefined;
1111
let path: string | undefined;

deno.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"./keys": "./keys.ts"
88
},
99
"tasks": {
10-
"test": "deno test --allow-read --allow-write --unstable"
10+
"test": "deno test --allow-read --allow-write --unstable-kv"
1111
},
1212
"lock": false
1313
}

0 commit comments

Comments
 (0)