From 768e59938ced3b6bcf6aa58e192fe2edc578237c Mon Sep 17 00:00:00 2001 From: Henry Heino <46334387+personalizedrefrigerator@users.noreply.github.com> Date: Mon, 27 May 2024 01:01:32 -0700 Subject: [PATCH] Chore: Mobile: Fix warnings in NoteExportButton tests (#10472) --- .../ConfigScreen/NoteExportSection/NoteExportButton.test.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/app-mobile/components/screens/ConfigScreen/NoteExportSection/NoteExportButton.test.tsx b/packages/app-mobile/components/screens/ConfigScreen/NoteExportSection/NoteExportButton.test.tsx index d1e34a190..0eec7d561 100644 --- a/packages/app-mobile/components/screens/ConfigScreen/NoteExportSection/NoteExportButton.test.tsx +++ b/packages/app-mobile/components/screens/ConfigScreen/NoteExportSection/NoteExportButton.test.tsx @@ -45,5 +45,7 @@ describe('NoteExportButton', () => { // With the default folder setup, there should be no warnings expect(view.queryByText(/Warnings/g)).toBeNull(); + + view.unmount(); }); });