We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a133fe commit 5112946Copy full SHA for 5112946
__tests__/integration/mirador/tests/annotations.test.js
@@ -42,12 +42,12 @@ describe('Annotations in Mirador', () => {
42
43
expect(await screen.findByRole('heading', { name: 'Annotations' })).toBeInTheDocument();
44
45
- expect(await screen.findByText('Showing 6 annotations')).toBeInTheDocument();
+ expect(await screen.findByText('Showing 12 annotations')).toBeInTheDocument();
46
47
const annotationPanel = await screen.findByRole('complementary', { name: /annotations/i });
48
expect(annotationPanel).toBeInTheDocument();
49
50
const listItems = await within(annotationPanel).findAllByRole('menuitem');
51
- expect(listItems).toHaveLength(6);
+ expect(listItems).toHaveLength(12);
52
});
53
0 commit comments