Skip to content

Commit db31f89

Browse files
committed
test: for custom process directive
1 parent 00b41b0 commit db31f89

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

test/test.js

+6
Original file line numberDiff line numberDiff line change
@@ -105,4 +105,10 @@ describe('PostHTML-Parser test', function() {
105105
{ tag: 'mySuperTag' }
106106
]);
107107
});
108+
109+
it('should be parse directive', function() {
110+
expect(parser('<?php echo "Hello word"; ?>')).to.eql([
111+
{ type: 'directive', content: ['?php echo "Hello word"; ?']
112+
}]);
113+
});
108114
});

0 commit comments

Comments
 (0)