Skip to content

Commit

Permalink
test: cast express to any
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfy1339 committed Feb 25, 2024
1 parent d1474d6 commit 11c6961
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/node-middleware.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { createNodeMiddleware, OAuthApp } from "../src/index.ts";

// import without types
// @ts-ignore
const express = (await import("express")).default;
const express = (await import("express")).default as any;

describe("createNodeMiddleware(app)", () => {
it("allow pre-flight requests", async () => {
Expand Down

0 comments on commit 11c6961

Please sign in to comment.