feat(KB-332): rename task prefix from KB to FN and branches from kb/ to fusion/

- Change default task prefix from KB to FN across all packages

- Rename branch naming pattern from kb/{id} to fusion/{id}

- Update all test assertions and fixtures to use new prefixes

- Add changeset for the breaking change

- Resolve merge conflicts in TaskCard.test.tsx touch gesture tests
This commit is contained in:
gsxdsm
2026-03-31 19:29:47 -07:00
parent 5de661976d
commit e4579728ba
75 changed files with 2303 additions and 2189 deletions

View File

@@ -22,7 +22,7 @@ const MOCK_MODELS = [
const mockTasks: Task[] = [
{
id: "KB-001",
id: "FN-001",
title: "Test task 1",
description: "First test task",
column: "todo",
@@ -34,7 +34,7 @@ const mockTasks: Task[] = [
updatedAt: "2026-01-01T00:00:00Z",
},
{
id: "KB-002",
id: "FN-002",
title: "Test task 2",
description: "Second test task",
column: "todo",
@@ -529,7 +529,7 @@ describe("QuickEntryBox", () => {
expect(props.onCreate).toHaveBeenCalledWith(
expect.objectContaining({
description: "Task with deps",
dependencies: expect.arrayContaining(["KB-002"]), // Most recent task
dependencies: expect.arrayContaining(["FN-002"]), // Most recent task
}),
);
});