Fix app test

This commit is contained in:
Nathan Bierema 2023-08-08 23:00:09 -04:00
parent 32240ddf64
commit 3069a1536f

View File

@ -45,9 +45,7 @@ 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();
}); });
}); });