fix test
parent
b41595f0f5
commit
145fcca0f0
|
@ -135,7 +135,7 @@ describe("verifyFirebaseAuth middleware", () => {
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
])("%s", async (_, { headerKey, env, config, wantStatus }) => {
|
])("%s", async (_, { headerKey, env, config, wantStatus }) => {
|
||||||
const app = new Hono<VerifyFirebaseAuthEnv>();
|
const app = new Hono<{ Bindings: VerifyFirebaseAuthEnv }>();
|
||||||
|
|
||||||
resetAuth();
|
resetAuth();
|
||||||
|
|
||||||
|
@ -167,7 +167,7 @@ describe("verifyFirebaseAuth middleware", () => {
|
||||||
const getSpy = jest.spyOn(nopKeyStore, "get");
|
const getSpy = jest.spyOn(nopKeyStore, "get");
|
||||||
const putSpy = jest.spyOn(nopKeyStore, "put");
|
const putSpy = jest.spyOn(nopKeyStore, "put");
|
||||||
|
|
||||||
const app = new Hono<VerifyFirebaseAuthEnv>();
|
const app = new Hono<{ Bindings: VerifyFirebaseAuthEnv }>();
|
||||||
|
|
||||||
resetAuth();
|
resetAuth();
|
||||||
|
|
||||||
|
@ -202,7 +202,7 @@ describe("verifyFirebaseAuth middleware", () => {
|
||||||
const testingJWT = generateDummyJWT();
|
const testingJWT = generateDummyJWT();
|
||||||
|
|
||||||
const nopKeyStore = new NopKeyStore();
|
const nopKeyStore = new NopKeyStore();
|
||||||
const app = new Hono<VerifyFirebaseAuthEnv>();
|
const app = new Hono<{ Bindings: VerifyFirebaseAuthEnv }>();
|
||||||
|
|
||||||
resetAuth();
|
resetAuth();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue