diff options
author | chiefbiiko <noah.anabiik.schwarz@gmail.com> | 2019-05-17 20:03:01 +0200 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-05-17 14:03:01 -0400 |
commit | 00f6fa46b34b78e926a907ee24faec78a65eafc1 (patch) | |
tree | 856ba74eb30c595f98683d0aa3161c73caa13e5e /js/test_util.ts | |
parent | 7f6549532c22e5e58deb37334fca06c949902e5f (diff) |
Add crypto.getRandomValues() (#2327)
Diffstat (limited to 'js/test_util.ts')
-rw-r--r-- | js/test_util.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/js/test_util.ts b/js/test_util.ts index 9d13af634..af5dbd2b5 100644 --- a/js/test_util.ts +++ b/js/test_util.ts @@ -14,7 +14,9 @@ import { } from "./deps/https/deno.land/std/testing/asserts.ts"; export { assert, - assertEquals + assertEquals, + assertNotEquals, + assertStrictEq } from "./deps/https/deno.land/std/testing/asserts.ts"; interface TestPermissions { |