feat(platform): checkpoint current implementation state

This commit is contained in:
2026-04-01 07:42:03 +02:00
parent 3e53471f05
commit 8c5be51251
125 changed files with 10269 additions and 17808 deletions
@@ -142,7 +142,7 @@ describe("timeline router detail views", () => {
countryId: "country_de",
federalState: "BY",
metroCityId: "city_munich",
country: { code: "DE" },
country: { code: "DE", name: "Germany" },
metroCity: { name: "Muenchen" },
},
]);
@@ -177,6 +177,10 @@ describe("timeline router detail views", () => {
resourceId: "res_self",
note: "Heilige Drei Könige",
scope: "STATE",
countryCode: "DE",
countryName: "Germany",
federalState: "BY",
metroCityName: "Muenchen",
}),
]);
expect(demandFindMany).not.toHaveBeenCalled();
@@ -365,7 +369,7 @@ describe("timeline router detail views", () => {
countryId: "country_de",
federalState: "BY",
metroCityId: "city_munich",
country: { code: "DE" },
country: { code: "DE", name: "Germany" },
metroCity: { name: "Muenchen" },
},
{
@@ -373,7 +377,7 @@ describe("timeline router detail views", () => {
countryId: "country_de",
federalState: "HH",
metroCityId: "city_hamburg",
country: { code: "DE" },
country: { code: "DE", name: "Germany" },
metroCity: { name: "Hamburg" },
},
]),
@@ -409,6 +413,10 @@ describe("timeline router detail views", () => {
startDate: "2026-01-06",
note: "Heilige Drei Könige",
scope: "STATE",
countryCode: "DE",
countryName: "Germany",
federalState: "BY",
metroCityName: "Muenchen",
}),
]);
});