From 66b044c1652d0a61aab59f1ad8609936c7006ac6 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 7 Sep 2026 14:58:28 +0000 Subject: [PATCH] Complete About version test wiring Co-authored-by: mroxso <24775431+mroxso@users.noreply.github.com> --- src/apps/about/index.test.tsx | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/apps/about/index.test.tsx b/src/apps/about/index.test.tsx index 9d98dc5..4f28368 100644 --- a/src/apps/about/index.test.tsx +++ b/src/apps/about/index.test.tsx @@ -8,7 +8,14 @@ vi.mock('@/os/useWindowManager', () => ({ describe('About app', () => { test('displays the package version', () => { - render(); + render( + , + ); expect(screen.getByText('Version 1.0.0')).toBeInTheDocument(); });