chore: remove root assets

This commit is contained in:
Peter Steinberger
2026-05-03 13:20:23 +01:00
parent 2b82c05a7f
commit 4760ee4055
15 changed files with 27 additions and 34 deletions

View File

@@ -781,6 +781,21 @@ describe("scripts/changed-lanes", () => {
expect(plan.commands.map((command) => command.args[0])).not.toContain("tsgo:all");
});
it("routes legacy root asset deletions as tooling during root cleanup", () => {
const result = detectChangedLanes([
"assets/avatar-placeholder.svg",
"assets/chrome-extension/icons/icon128.png",
]);
const plan = createChangedCheckPlan(result);
expect(result.lanes).toMatchObject({
tooling: true,
all: false,
});
expect(plan.commands.map((command) => command.args[0])).toContain("lint:scripts");
expect(plan.commands.map((command) => command.args[0])).not.toContain("tsgo:all");
});
it("keeps shared Vitest wiring changes out of check test execution", () => {
const result = detectChangedLanes(["test/vitest/vitest.shared.config.ts"]);
const plan = createChangedCheckPlan(result);