Skip to content

Commit 8f40b1d

Browse files
test: update import
1 parent fc08134 commit 8f40b1d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/nuxt/a11y.spec.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ import {
101101
FilterPanel,
102102
HeaderAccountMenu,
103103
HeaderConnectorModal,
104-
HeaderSearchBox,
104+
SearchBox,
105105
LicenseDisplay,
106106
LoadingSpinner,
107107
PackageProvenanceSection,
@@ -2077,9 +2077,9 @@ describe('component accessibility audits', () => {
20772077
})
20782078
})
20792079

2080-
describe('HeaderSearchBox', () => {
2080+
describe('SearchBox', () => {
20812081
it('should have no accessibility violations', async () => {
2082-
const component = await mountSuspended(HeaderSearchBox)
2082+
const component = await mountSuspended(SearchBox)
20832083
const results = await runAxe(component)
20842084
expect(results.violations).toEqual([])
20852085
})
@@ -2274,7 +2274,7 @@ describe('background theme accessibility', () => {
22742274
const components = [
22752275
{ name: 'AppHeader', mount: () => mountSuspended(AppHeader) },
22762276
{ name: 'AppFooter', mount: () => mountSuspended(AppFooter) },
2277-
{ name: 'HeaderSearchBox', mount: () => mountSuspended(HeaderSearchBox) },
2277+
{ name: 'SearchBox', mount: () => mountSuspended(SearchBox) },
22782278
{
22792279
name: 'LoadingSpinner',
22802280
mount: () => mountSuspended(LoadingSpinner, { props: { text: 'Loading...' } }),

0 commit comments

Comments
 (0)