summaryrefslogtreecommitdiffhomepage
path: root/packages/server/src/authentication/generateAuthenticationOptions.test.ts
diff options
context:
space:
mode:
authorMatthew Miller <matthew@millerti.me>2024-02-22 21:37:38 -0800
committerMatthew Miller <matthew@millerti.me>2024-02-22 21:37:38 -0800
commit64b7d91d97874cdf7548a3a3adfda6dd7be0b779 (patch)
tree2bcf28d390dd944d17cc7da0978be8b94623722f /packages/server/src/authentication/generateAuthenticationOptions.test.ts
parentb11b4a2aec5fd8a202019cb117bc0d3d1f7f260f (diff)
Rename isoBase64URL.isBase64url to isBase64URL
Diffstat (limited to 'packages/server/src/authentication/generateAuthenticationOptions.test.ts')
-rw-r--r--packages/server/src/authentication/generateAuthenticationOptions.test.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/server/src/authentication/generateAuthenticationOptions.test.ts b/packages/server/src/authentication/generateAuthenticationOptions.test.ts
index 8d55580..7acb250 100644
--- a/packages/server/src/authentication/generateAuthenticationOptions.test.ts
+++ b/packages/server/src/authentication/generateAuthenticationOptions.test.ts
@@ -129,7 +129,7 @@ Deno.test('should generate a challenge if one is not provided', async () => {
// Assert basic properties of the challenge
assert(options.challenge.length >= 16);
- assert(isoBase64URL.isBase64url(options.challenge));
+ assert(isoBase64URL.isBase64URL(options.challenge));
});
Deno.test('should treat string challenges as UTF-8 strings', async () => {