FAIL src/__testing__/hideRootObjectTitle.test.tsx
● hideRootObjectTitle — RJSF root title/description derivation › renders the canonical root title by default (the duplicative heading)
expect(received).toBe(expected) // Object.is equality
Expected: "Import Design"
Received: ""
107 | it('renders the canonical root title by default (the duplicative heading)', () => {
108 | const recorded = recordRootRender(importDesignUiSchema);
> 109 | expect(recorded.title).toBe('Import Design');
| ^
110 | });
Current Behavior
The
hideRootObjectTitle.test.tsxtest is failing because the title value is returned as an empty string ("") instead of"Import Design".View failing test output
Expected Behavior
The test should pass and return the expected title value
"Import Design".Contributor Guides and Resources