File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -15,38 +15,38 @@ test('unist-util-source', function(t) {
15
15
16
16
t . equal ( source ( node , file ) , '> + **[Hello](./example)**\n> world.' )
17
17
18
- /* Blockquote. */
18
+ // Blockquote.
19
19
node = tree . children [ 0 ]
20
20
t . equal ( source ( node , file ) , '> + **[Hello](./example)**\n> world.' )
21
21
22
- /* List. */
22
+ // List.
23
23
node = node . children [ 0 ]
24
24
t . equal ( source ( node , file ) , '+ **[Hello](./example)**\nworld.' )
25
25
26
- /* List-item. */
26
+ // List-item.
27
27
node = node . children [ 0 ]
28
28
t . equal ( source ( node , file ) , '+ **[Hello](./example)**\nworld.' )
29
29
30
- /* Paragraph. */
30
+ // Paragraph.
31
31
node = node . children [ 0 ]
32
32
t . equal ( source ( node , file ) , '**[Hello](./example)**\nworld.' )
33
33
34
- /* Strong. */
34
+ // Strong.
35
35
node = node . children [ 0 ]
36
36
t . equal ( source ( node , file ) , '**[Hello](./example)**' )
37
37
38
- /* Link. */
38
+ // Link.
39
39
node = node . children [ 0 ]
40
40
t . equal ( source ( node , file ) , '[Hello](./example)' )
41
41
42
- /* Text. */
42
+ // Text.
43
43
node = node . children [ 0 ]
44
44
t . equal ( source ( node , file ) , 'Hello' )
45
45
46
- /* Generated. */
46
+ // Generated.
47
47
t . equal ( source ( { type : node . type , value : node . value } , file ) , null )
48
48
49
- /* Missing. */
49
+ // Missing.
50
50
t . equal ( source ( null , file ) , null )
51
51
}
52
52
} )
You can’t perform that action at this time.
0 commit comments