chore: clean up editor metadata

This commit is contained in:
Peter Steinberger
2026-05-03 12:39:11 +01:00
parent 54a81e0080
commit 5ab4e6f9d9
5 changed files with 24 additions and 26 deletions

View File

@@ -320,6 +320,19 @@ describe("scripts/changed-lanes", () => {
expect(plan.commands.map((command) => command.args[0])).not.toContain("test");
});
it("routes VS Code workspace settings to tooling instead of all lanes", () => {
const result = detectChangedLanes([".vscode/settings.json", ".vscode/extensions.json"]);
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");
expect(plan.commands.map((command) => command.args[0])).not.toContain("test");
});
it("routes legacy root sandbox Dockerfile moves to tooling instead of all lanes", () => {
const result = detectChangedLanes([
"Dockerfile.sandbox",