@@ -38,7 +38,7 @@ test('it render normal - list', function(assert) {
38
38
{{/es-ulist}}
39
39
` ) ;
40
40
41
- assert . equal ( this . $ ( '.es-ulist ul .title' ) . text ( ) . trim ( ) , model . name , 'List title rendered' ) ;
41
+ assert . equal ( this . $ ( '.es-ulist .title' ) . text ( ) . trim ( ) , model . name , 'List title rendered' ) ;
42
42
assert . equal ( this . $ ( '.es-ulist ul li:eq(0)' ) . text ( ) . trim ( ) , model . items [ 0 ] . text , 'First Item rendered correctly' ) ;
43
43
assert . equal ( this . $ ( '.es-ulist ul li:eq(2)' ) . text ( ) . trim ( ) , model . items [ 2 ] . text , 'Third item in the list rendered correctly' ) ;
44
44
} ) ;
@@ -69,7 +69,7 @@ test('it render list with left image', function(assert) {
69
69
{{/es-ulist}}
70
70
` ) ;
71
71
72
- assert . equal ( this . $ ( '.es-ulist ul .title' ) . text ( ) . trim ( ) , model . name , 'List Title rendered' ) ;
72
+ assert . equal ( this . $ ( '.es-ulist .title' ) . text ( ) . trim ( ) , model . name , 'List Title rendered' ) ;
73
73
assert . equal ( this . $ ( '.es-ulist ul li:eq(0) .es-ulist-image' ) . length > 0 , true , 'List with Image rendered' ) ;
74
74
} ) ;
75
75
@@ -163,7 +163,7 @@ test('should render icons on the left', function(assert) {
163
163
{{/es-ulist}}
164
164
` ) ;
165
165
166
- assert . equal ( this . $ ( '.es-ulist ul .title' ) . text ( ) . trim ( ) , model . name , 'Title rendered' ) ;
166
+ assert . equal ( this . $ ( '.es-ulist .title' ) . text ( ) . trim ( ) , model . name , 'Title rendered' ) ;
167
167
assert . equal ( this . $ ( '.es-ulist ul li:eq(0) .es-ulist-image .icons' ) . length > 0 , true , 'List with icons rendered' ) ;
168
168
} ) ;
169
169
@@ -190,7 +190,7 @@ test('it renders a list with links', function(assert) {
190
190
{{/es-ulist}}
191
191
` ) ;
192
192
193
- assert . equal ( this . $ ( '.es-ulist ul .title' ) . text ( ) . trim ( ) , model . name , 'List title rendered' ) ;
193
+ assert . equal ( this . $ ( '.es-ulist .title' ) . text ( ) . trim ( ) , model . name , 'List title rendered' ) ;
194
194
assert . equal ( this . $ ( '.es-ulist ul li:eq(0) a' ) . length > 0 , true , 'List items rendered' ) ;
195
195
} ) ;
196
196
0 commit comments