diff --git a/extension/test/app/containers/App.spec.js b/extension/test/app/containers/App.spec.js index 7817da64..051f5b30 100644 --- a/extension/test/app/containers/App.spec.js +++ b/extension/test/app/containers/App.spec.js @@ -37,8 +37,6 @@ describe('App container', () => { , ); const actionList = screen.getByTestId('actionList'); - expect( - within(actionList).getByTestId('actionListRows'), - ).toBeEmptyDOMElement(); + expect(within(actionList).queryByRole('button')).not.toBeInTheDocument(); }); });