We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 704ae74 commit 0b81644Copy full SHA for 0b81644
1 file changed
test/nuxt/a11y.spec.ts
@@ -3586,6 +3586,22 @@ describe('background theme accessibility', () => {
3586
}
3587
3588
const components = [
3589
+ {
3590
+ name: 'AlertWarning',
3591
+ mount: () =>
3592
+ mountSuspended(Alert, {
3593
+ props: { variant: 'warning', title: 'Warning title' },
3594
+ slots: { default: '<p>Warning body</p>' },
3595
+ }),
3596
+ },
3597
3598
+ name: 'AlertError',
3599
3600
3601
+ props: { variant: 'error', title: 'Error title' },
3602
+ slots: { default: '<p>Error body</p>' },
3603
3604
3605
{ name: 'AppHeader', mount: () => mountSuspended(AppHeader) },
3606
{ name: 'AppFooter', mount: () => mountSuspended(AppFooter) },
3607
{ name: 'HeaderSearchBox', mount: () => mountSuspended(HeaderSearchBox) },
0 commit comments