File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -15,14 +15,14 @@ it('Add a <strong> tag.', function () {
15
15
expect ( strong ) . toBeTruthy ( ) ;
16
16
} ) ;
17
17
18
- it ( 'The <span> tag should have the expected value. ' , function ( ) {
18
+ it ( 'The <span> tag should have inside "hello, i am a text" ' , function ( ) {
19
19
let span = document . querySelector ( "span" ) ;
20
20
expect ( span ) . toBeTruthy ( ) ;
21
21
expect ( span . innerHTML . toLowerCase ( ) ) . toContain ( "hello, i am a text" )
22
22
} ) ;
23
23
24
- it ( 'The <strong> tag should have the expected value. ' , function ( ) {
24
+ it ( 'The <strong> tag should have inside "hello, i am also a text but in bold" ' , function ( ) {
25
25
let strong = document . querySelector ( "strong" ) ;
26
26
expect ( strong ) . toBeTruthy ( ) ;
27
27
expect ( strong . innerHTML . toLowerCase ( ) ) . toContain ( "hello, i am also a text but in bold" )
28
- } ) ;
28
+ } ) ;
You can’t perform that action at this time.
0 commit comments