From 555d88bc725154802ba5b3931a1b756b9f48cf91 Mon Sep 17 00:00:00 2001 From: Andi Pieper Date: Wed, 18 Dec 2024 15:34:45 +0100 Subject: [PATCH] fixed test path --- test/apiv2.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/apiv2.test.js b/test/apiv2.test.js index ca76fa5..18aa763 100644 --- a/test/apiv2.test.js +++ b/test/apiv2.test.js @@ -32,7 +32,7 @@ describeOrSkip("API V2", function () { const app = await createServer(); const response = await app.inject({ method: "GET", - url: "/version", + url: "/api/v2/version", }); assert.equal(response.statusCode, 200); const j = response.json();