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 () {
1515 expect ( strong ) . toBeTruthy ( ) ;
1616} ) ;
1717
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 ( ) {
1919 let span = document . querySelector ( "span" ) ;
2020 expect ( span ) . toBeTruthy ( ) ;
2121 expect ( span . innerHTML . toLowerCase ( ) ) . toContain ( "hello, i am a text" )
2222} ) ;
2323
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 ( ) {
2525 let strong = document . querySelector ( "strong" ) ;
2626 expect ( strong ) . toBeTruthy ( ) ;
2727 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