@@ -11,21 +11,15 @@ describe("GH001: No Default Alt Text", () => {
11
11
] ;
12
12
13
13
const results = await runTest ( strings , altTextRule ) ;
14
-
15
- for ( const result of results ) {
16
- expect ( result ) . not . toBeDefined ( ) ;
17
- }
14
+ expect ( results . length ) . toBe ( 0 ) ;
18
15
} ) ;
19
16
test ( "html image" , async ( ) => {
20
17
const strings = [
21
18
'<img alt="A helpful description" src="https://user-images.githubusercontent.com/abcdef.png">' ,
22
19
] ;
23
20
24
21
const results = await runTest ( strings , altTextRule ) ;
25
-
26
- for ( const result of results ) {
27
- expect ( result ) . not . toBeDefined ( ) ;
28
- }
22
+ expect ( results . length ) . toBe ( 0 ) ;
29
23
} ) ;
30
24
} ) ;
31
25
describe ( "failures" , ( ) => {
@@ -77,6 +71,17 @@ describe("GH001: No Default Alt Text", () => {
77
71
}
78
72
} ) ;
79
73
74
+ test ( "flags multiple consecutive inline images" , async ( ) => {
75
+ const strings = [ '<img alt="image"><img alt="Image">' ] ;
76
+ const results = await runTest ( strings , altTextRule ) ;
77
+ expect ( results ) . toHaveLength ( 2 ) ;
78
+
79
+ expect ( results [ 0 ] . errorRange ) . toEqual ( [ 11 , 5 ] ) ;
80
+ expect ( results [ 0 ] . errorDetail ) . toEqual ( "Flagged alt: image" ) ;
81
+ expect ( results [ 1 ] . errorRange ) . toEqual ( [ 28 , 5 ] ) ;
82
+ expect ( results [ 1 ] . errorDetail ) . toEqual ( "Flagged alt: Image" ) ;
83
+ } ) ;
84
+
80
85
test ( "error message" , async ( ) => {
81
86
const strings = [
82
87
"" ,
0 commit comments