print('hello')
i=i+1
@@ -54,8 +46,8 @@ describe('pre tag', function () {
});
// see: https://github.com/taoqf/node-html-parser/issues/156
it('does not treat pre* tag as pre (partial match)', () => {
- const docRoot = parse("
Red");
- Object.getPrototypeOf(docRoot.firstChild.firstChild).should.eql(HTMLElement.prototype);
- docRoot.firstChild.firstChild.tagName.should.eql('COLOR');
- })
+ const docRoot = parse("
Red");
+ Object.getPrototypeOf(docRoot.firstChild.firstChild).should.eql(HTMLElement.prototype);
+ docRoot.firstChild.firstChild.tagName.should.eql('COLOR');
+ })
});