@@ -57,8 +57,6 @@ describe('richtext component', () => {
57
57
} )
58
58
59
59
describe ( 'span' , ( ) => {
60
- // pending('work in progress')
61
-
62
60
it ( 'single node' , ( ) => {
63
61
expect ( compileSnippet ( runtime , `
64
62
<richtext>
@@ -126,8 +124,6 @@ describe('richtext component', () => {
126
124
} )
127
125
128
126
describe ( 'a' , ( ) => {
129
- // pending('work in progress')
130
-
131
127
it ( 'single node' , ( ) => {
132
128
expect ( compileSnippet ( runtime , `
133
129
<richtext>
@@ -166,8 +162,6 @@ describe('richtext component', () => {
166
162
} )
167
163
168
164
describe ( 'image' , ( ) => {
169
- pending ( 'work in progress' )
170
-
171
165
it ( 'single node' , ( ) => {
172
166
expect ( compileSnippet ( runtime , `
173
167
<richtext>
@@ -185,7 +179,6 @@ describe('richtext component', () => {
185
179
} )
186
180
187
181
it ( 'multiple node' , ( ) => {
188
- // pending('work in progress')
189
182
expect ( compileSnippet ( runtime , `
190
183
<richtext>
191
184
<image src="path/to/A.png"></image>
@@ -218,7 +211,7 @@ describe('richtext component', () => {
218
211
attr : {
219
212
value : [ {
220
213
type : 'image' ,
221
- style : { width : '150px' , height : '150px' } ,
214
+ style : { width : 150 , height : 150 } ,
222
215
attr : { src : 'path/to/profile.png' }
223
216
} ]
224
217
}
@@ -227,8 +220,6 @@ describe('richtext component', () => {
227
220
} )
228
221
229
222
describe ( 'nested' , ( ) => {
230
- pending ( 'work in progress' )
231
-
232
223
it ( 'span' , ( ) => {
233
224
expect ( compileSnippet ( runtime , `
234
225
<richtext>
@@ -273,7 +264,7 @@ describe('richtext component', () => {
273
264
<richtext>
274
265
<span>title</span>
275
266
<a href="http://remote.com/xx.js">
276
- <span>name</span>
267
+ <span><span> name</span> </span>
277
268
<image src="path/to/yy.gif"></image>
278
269
</a>
279
270
</richtext>
@@ -288,7 +279,10 @@ describe('richtext component', () => {
288
279
attr : { href : 'http://remote.com/xx.js' } ,
289
280
children : [ {
290
281
type : 'span' ,
291
- attr : { value : 'name' }
282
+ children : [ {
283
+ type : 'span' ,
284
+ attr : { value : 'name' }
285
+ } ]
292
286
} , {
293
287
type : 'image' ,
294
288
attr : { src : 'path/to/yy.gif' }
@@ -300,6 +294,27 @@ describe('richtext component', () => {
300
294
} )
301
295
302
296
describe ( 'with styles' , ( ) => {
303
- pending ( 'work in progress' )
297
+ // pending('work in progress')
298
+ it ( 'inline' , ( ) => {
299
+ expect ( compileSnippet ( runtime , `
300
+ <richtext>
301
+ <span style="font-size:16px;color:#FF6600;">ABCD</span>
302
+ <image style="width:40px;height:60px" src="path/to/A.png"></image>
303
+ </richtext>
304
+ ` ) ) . toEqual ( {
305
+ type : 'richtext' ,
306
+ attr : {
307
+ value : [ {
308
+ type : 'span' ,
309
+ style : { fontSize : 16 , color : '#FF6600' } ,
310
+ attr : { value : 'ABCD' }
311
+ } , {
312
+ type : 'image' ,
313
+ style : { width : 40 , height : 60 } ,
314
+ attr : { src : 'path/to/A.png' }
315
+ } ]
316
+ }
317
+ } )
318
+ } )
304
319
} )
305
320
} )
0 commit comments