diff --git a/test/51.js b/test/51.js new file mode 100644 index 0000000..748ab8e --- /dev/null +++ b/test/51.js @@ -0,0 +1,11 @@ +const { parse } = require('../dist'); + +describe.skip('issue 51', function () { + it('vue: > in attibute value', function () { + const html = ''; + const root = parse(html); + root.toString().should.eql(html); + const tpl = root.firstChild; + tpl.getAttribute('v-if').should.eql('list.length>0'); + }); +}); \ No newline at end of file