From 7268d203caf9f599c22e7084e0f281a1282bc4f3 Mon Sep 17 00:00:00 2001 From: ncdiehl11 Date: Wed, 22 May 2024 13:30:05 -0400 Subject: [PATCH] fix test --- .../src/components/FileSidebar/__tests__/FileSidebar.test.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/protocol-designer/src/components/FileSidebar/__tests__/FileSidebar.test.tsx b/protocol-designer/src/components/FileSidebar/__tests__/FileSidebar.test.tsx index d03d2127ad5..11bda8345c6 100644 --- a/protocol-designer/src/components/FileSidebar/__tests__/FileSidebar.test.tsx +++ b/protocol-designer/src/components/FileSidebar/__tests__/FileSidebar.test.tsx @@ -230,7 +230,7 @@ describe('FileSidebar', () => { 'One or more modules specified in your protocol in Slot(s) A1,B1 are not currently used in any step. In order to run this protocol you will need to power up and connect the modules to your robot.' ) }) - it.only('renders the formatted unused pipettes and modules warning sorted by count', () => { + it('renders the formatted unused pipettes and modules warning sorted by count', () => { vi.mocked(getInitialDeckSetup).mockReturnValue({ modules: { moduleId1: { @@ -280,7 +280,6 @@ describe('FileSidebar', () => { }) render() fireEvent.click(screen.getByRole('button', { name: 'Export' })) - screen.debug() screen.getByText( 'The mock display name pipette and Temperature modules, Thermocycler module, and Heater-Shaker module in your protocol are not currently used in any step. In order to run this protocol you will need to attach this pipette as well as power up and connect the module to your robot.' )