@@ -87,6 +87,7 @@ const entriesList = [
87
87
[ { "name" : "option" } , [ "option" ] ] ,
88
88
[ { "name" : "p" } , [ "paragraph" ] ] ,
89
89
[ { "attributes" : [ { "name" : "alt" , "value" : "" } ] , "name" : "img" } , [ "presentation" ] ] ,
90
+ [ { "attributes" : [ { "name" : "alt" , "value" : "" } ] , "name" : "img" } , [ "none" ] ] ,
90
91
[ { "name" : "progress" } , [ "progressbar" ] ] ,
91
92
[ { "attributes" : [ { "name" : "aria-valuemax" } , { "name" : "aria-valuemin" , "value" : 0 } , { "name" : "aria-valuenow" } ] , "constraints" : [ "the progress bar is determinate" ] , "name" : "progress" } , [ "progressbar" ] ] ,
92
93
[ { "attributes" : [ { "name" : "type" , "value" : "radio" } ] , "name" : "input" } , [ "radio" ] ] ,
@@ -230,7 +231,7 @@ describe('elementRolesMap', function () {
230
231
} ) ;
231
232
describe ( 'spread operator' , function ( ) {
232
233
it ( 'should have a specific length' , function ( ) {
233
- expect ( [ ...elementRoleMap ] . length ) . toEqual ( 113 ) ;
234
+ expect ( [ ...elementRoleMap ] . length ) . toEqual ( 114 ) ;
234
235
} ) ;
235
236
test . each ( [ ...elementRoleMap ] ) ( 'Testing element: %o' , ( obj , roles ) => {
236
237
expect ( entriesList ) . toEqual (
0 commit comments