Theme: More theme updates (#33076)

* Theme: More theme updates

* Updated so Switch design

* increase limit
This commit is contained in:
Torkel Ödegaard
2021-04-17 07:13:25 +02:00
committed by GitHub
parent 7d5a46ffda
commit c46f992bfb
8 changed files with 61 additions and 62 deletions

View File

@@ -91,8 +91,8 @@ describe('AppRootPage', () => {
// check that plugin and nav links were rendered, and plugin is mounted only once
expect(await screen.findByText('my great plugin')).toBeVisible();
expect(await screen.findByRole('link', { name: 'A page' })).toBeVisible();
expect(await screen.findByRole('link', { name: 'Another page' })).toBeVisible();
expect(await screen.findByLabelText('Tab A page')).toBeVisible();
expect(await screen.findByLabelText('Tab Another page')).toBeVisible();
expect(RootComponent.timesMounted).toEqual(1);
});