fix type issue

This commit is contained in:
fryorcraken 2025-09-09 13:14:27 +10:00
parent ec8cacb7e3
commit 6beb32dd83
No known key found for this signature in database
GPG Key ID: A82ED75A8DFC50A4

View File

@ -326,7 +326,7 @@ test.describe("Waku Server API", () => {
// If we get a 404, the route is not registered
expect(response.status).not.toBe(404);
} catch (error) {
} catch (error: any) {
console.warn(`Error checking endpoint ${endpoint}:`, error.message);
// Continue checking other endpoints even if one fails
}