diff --git a/tests/oauth.test.ts b/tests/oauth.test.ts index fe024f8b..023f024f 100644 --- a/tests/oauth.test.ts +++ b/tests/oauth.test.ts @@ -23,7 +23,7 @@ beforeAll(async () => { }); }); -describe("POST /v1/apps/", () => { +describe("POST /api/v1/apps/", () => { test("should create an application", async () => { const formData = new FormData(); @@ -32,7 +32,7 @@ describe("POST /v1/apps/", () => { formData.append("redirect_uris", "https://example.com"); formData.append("scopes", "read write"); const response = await fetch( - `${config.http.base_url}:${config.http.port}/v1/apps/`, + `${config.http.base_url}:${config.http.port}/api/v1/apps/`, { method: "POST", body: formData, diff --git a/tests/test-utils.ts b/tests/test-utils.ts deleted file mode 100644 index e69de29b..00000000