Complete About version test wiring

Co-authored-by: mroxso <24775431+mroxso@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-09-07 14:58:28 +00:00
committed by GitHub
parent 8f31095cf7
commit 66b044c165

View File

@@ -8,7 +8,14 @@ vi.mock('@/os/useWindowManager', () => ({
describe('About app', () => {
test('displays the package version', () => {
render(<AboutApp setTitle={vi.fn()} />);
render(
<AboutApp
windowId="about"
params={{}}
setTitle={vi.fn()}
setParams={vi.fn()}
/>,
);
expect(screen.getByText('Version 1.0.0')).toBeInTheDocument();
});