File tree Expand file tree Collapse file tree 1 file changed +36
-1
lines changed Expand file tree Collapse file tree 1 file changed +36
-1
lines changed Original file line number Diff line number Diff line change @@ -191,10 +191,45 @@ But not including this line.
191191 title : "Put Level's title here" ,
192192 summary : "Some text." ,
193193 content : "Some text.\n\nBut not including this line." ,
194+ steps : [ ] ,
195+ } ,
196+ ] ,
197+ } ;
198+ expect ( result . levels [ 0 ] ) . toEqual ( expected . levels [ 0 ] ) ;
199+ } ) ;
200+
201+ it ( "should truncate a level with an empty summary" , ( ) => {
202+ const md = `# Title
203+
204+ Description.
205+
206+ ## L1 Put Level's title here
207+
208+ >
209+
210+ Some text.
211+
212+ But not including this line.
213+ ` ;
214+
215+ const skeleton = { levels : [ { id : "L1" } ] } ;
216+ const result = parse ( {
217+ text : md ,
218+ skeleton,
219+ commits : { } ,
220+ } ) ;
221+ const expected = {
222+ levels : [
223+ {
224+ id : "L1" ,
225+ title : "Put Level's title here" ,
226+ summary : "Some text." ,
227+ content : "Some text.\n\nBut not including this line." ,
228+ steps : [ ] ,
194229 } ,
195230 ] ,
196231 } ;
197- expect ( result . levels [ 0 ] . summary ) . toEqual ( "Some text." ) ;
232+ expect ( result . levels [ 0 ] ) . toEqual ( expected . levels [ 0 ] ) ;
198233 } ) ;
199234
200235 it ( "should match line breaks with double line breaks for proper spacing" , ( ) => {
You can’t perform that action at this time.
0 commit comments