UNPKG

@pedwise/next-firebase-auth-edge

Version:

Next.js 13 Firebase Authentication for Edge and server runtimes. Dedicated for Next 13 server components. Compatible with Next.js middleware.

12 lines (10 loc) 288 B
import { base64StringToObject } from "./utils"; describe("jwt utils", () => { it("should parse base 64 string to object", () => { expect( base64StringToObject("eyJpbmNvcnJlY3RWYWx1ZSI6Ij8_Pz8_Pz8_Pz8ifQ") ).toEqual({ incorrectValue: "??????????", }); }); });