File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -104,6 +104,7 @@ import {
104104 PackageManagerSelect ,
105105 PackageMetricsBadges ,
106106 PackagePlaygrounds ,
107+ PackageScoreBars ,
107108 PackageReplacement ,
108109 PackageSkeleton ,
109110 PackageSkillsCard ,
@@ -1011,6 +1012,16 @@ describe('component accessibility audits', () => {
10111012 } )
10121013 } )
10131014
1015+ describe ( 'PackageScoreBars' , ( ) => {
1016+ it ( 'should have no accessibility violations' , async ( ) => {
1017+ const component = await mountSuspended ( PackageScoreBars , {
1018+ props : { packageName : 'vue' } ,
1019+ } )
1020+ const results = await runAxe ( component )
1021+ expect ( results . violations ) . toEqual ( [ ] )
1022+ } )
1023+ } )
1024+
10141025 describe ( 'PackageAccessControls' , ( ) => {
10151026 it ( 'should have no accessibility violations' , async ( ) => {
10161027 const component = await mountSuspended ( PackageAccessControls , {
You can’t perform that action at this time.
0 commit comments