@@ -2,16 +2,8 @@ var parser = require('..');
2
2
var describe = require ( 'mocha' ) . describe ;
3
3
var it = require ( 'mocha' ) . it ;
4
4
var expect = require ( 'chai' ) . expect ;
5
- var path = require ( 'path' ) ;
6
- var fs = require ( 'fs' ) ;
7
- var html = fs . readFileSync ( path . resolve ( __dirname , 'templates/render.html' ) , 'utf8' ) . toString ( ) ;
8
- var tree = require ( './templates/parser.js' ) ;
9
5
10
6
describe ( 'PostHTML-Parser test' , function ( ) {
11
- it ( 'html to tree' , function ( ) {
12
- expect ( parser ( html ) ) . to . eql ( tree ) ;
13
- } ) ;
14
-
15
7
it ( 'should be parse comment' , function ( ) {
16
8
expect ( parser ( '<!--comment-->' ) ) . to . eql ( [ '<!--comment-->' ] ) ;
17
9
} ) ;
@@ -45,4 +37,16 @@ describe('PostHTML-Parser test', function() {
45
37
it ( 'should be parse text in content' , function ( ) {
46
38
expect ( parser ( '<div>Text</div>' ) ) . to . eql ( [ { tag : 'div' , content : [ 'Text' ] } ] ) ;
47
39
} ) ;
40
+
41
+ it ( 'should be parse not a single node in tree' , function ( ) {
42
+ expect ( parser ( '<span>Text1</span><span>Text2</span>Text3' ) ) . to . eql ( [
43
+ { tag : 'span' , content : [ 'Text1' ] } , { tag : 'span' , content : [ 'Text2' ] } , 'Text3'
44
+ ] ) ;
45
+ } ) ;
46
+
47
+ it ( 'should be parse not a single node in parent content' , function ( ) {
48
+ expect ( parser ( '<div><span>Text1</span><span>Text2</span>Text3</div>' ) ) . to . eql ( [
49
+ { tag : 'div' , content : [ { tag : 'span' , content : [ 'Text1' ] } , { tag : 'span' , content : [ 'Text2' ] } , 'Text3' ] }
50
+ ] ) ;
51
+ } ) ;
48
52
} ) ;
0 commit comments