Fixed code smell identified by SonarQube

This commit is contained in:
Liviu Burcusel 2025-10-19 13:01:39 +02:00
parent a4dc9972ff
commit 278528b5de
Signed by: liviu
GPG key ID: 6CDB37A4AD2C610C

View file

@ -142,11 +142,11 @@ describe("Router Integration Tests", () => {
it("provides route metadata access", () => {
const routes = router.getRoutes();
routes.forEach(route => {
for (const route of routes) {
expect(route).toHaveProperty("path");
expect(route).toHaveProperty("name");
expect(route).toHaveProperty("meta");
});
}
});
it("is ready after initialization", async () => {