chore: auto-fix lint & formatting [skip ci]

This commit is contained in:
github-actions[bot] 2026-09-10 14:30:55 +00:00
parent b313cdc2fe
commit 6c6c67fd73
2 changed files with 10 additions and 13 deletions

View file

@ -182,10 +182,7 @@ describe("d1ConfigStore", () => {
routesTable.push(route("r1", "g1"), route("r2", "g2"));
// Simulate updating groups (e.g., changing a group's name)
const updatedGroups = [
{ ...group("g1"), name: "Updated Group 1" },
group("g2"),
];
const updatedGroups = [{ ...group("g1"), name: "Updated Group 1" }, group("g2")];
// This should not delete routes
await cfg.saveGroups(updatedGroups);