Fix extension test

This commit is contained in:
Nathan Bierema 2023-08-08 23:04:53 -04:00
parent 3069a1536f
commit 6f1a4b7c38

View File

@ -37,8 +37,6 @@ describe('App container', () => {
</Provider>, </Provider>,
); );
const actionList = screen.getByTestId('actionList'); const actionList = screen.getByTestId('actionList');
expect( expect(within(actionList).queryByRole('button')).not.toBeInTheDocument();
within(actionList).getByTestId('actionListRows'),
).toBeEmptyDOMElement();
}); });
}); });