feat(FN-1685): normalize changeset frontmatter and fix test expectations

- Remove unnecessary name fields from changeset files that reference @fusion/* packages
- Fix experimentalFeatures test expectation to match actual merge behavior
- Update test description to clarify merge vs replace semantics
This commit is contained in:
gsxdsm
2026-04-14 11:23:43 -07:00
9 changed files with 1 additions and 19 deletions

View File

@@ -1210,6 +1210,7 @@ describe("TaskStore", () => {
const settings = await store.getSettings();
// Note: updateSettings merges experimentalFeatures, preserving existing features
// To replace entirely, pass null for experimentalFeatures first, then the new object
expect(settings.experimentalFeatures).toEqual({ "feature-a": true, "feature-b": true });
});