From 68d3cf6e57859252b507f0d210a27f7935317a42 Mon Sep 17 00:00:00 2001 From: Kaiyu Hsu Date: Mon, 10 Jan 2022 17:11:01 -0800 Subject: [PATCH] Fix a small test typo (#121) --- test/authenticator.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/authenticator.test.ts b/test/authenticator.test.ts index 5a3ebd2..7c4b207 100644 --- a/test/authenticator.test.ts +++ b/test/authenticator.test.ts @@ -91,7 +91,7 @@ describe(Authenticator, () => { } }); - test("should redirect after logut", async () => { + test("should redirect after logout", async () => { let user = { id: "123" }; let session = await sessionStorage.getSession(); session.set("user", user);