From 064d6a2495409c0e364d317b2463488501b89e08 Mon Sep 17 00:00:00 2001 From: aeneasr <3372410+aeneasr@users.noreply.github.com> Date: Thu, 2 Jan 2025 11:51:17 +0100 Subject: [PATCH] ci: use dedicated project --- src/next-edge/index.test.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/next-edge/index.test.ts b/src/next-edge/index.test.ts index f01bf65..2448823 100644 --- a/src/next-edge/index.test.ts +++ b/src/next-edge/index.test.ts @@ -15,7 +15,11 @@ interface AppResult { function createApp(options: CreateApiHandlerOptions): AppResult { const app = express() - const handler = createApiHandler(options) + const handler = createApiHandler({ + apiBaseUrlOverride: + "https://youthful-feynman-ml50dfb20g.projects.staging.oryapis.dev", + ...options, + }) const router = express.Router() router.use((req, res) => { handler(req as any as NextApiRequest, res as any as NextApiResponse)