Add Failing Test

This commit is contained in:
Josh Johnson 2018-08-17 18:28:09 -04:00
parent f2cfe160ba
commit da7b4041a0
3 changed files with 9 additions and 0 deletions

View File

@ -88,6 +88,10 @@ describe("V2XmlFormatter", () => {
testFormatter(xmlFormatter, options, "issue-194"); testFormatter(xmlFormatter, options, "issue-194");
}); });
it("should support mixed content", () => {
testFormatter(xmlFormatter, options, "issue-200");
});
}); });
}); });

View File

@ -0,0 +1,4 @@
<mixed>beginning text<inner>
<a>data</a>
<b>another data</b>
</inner>end text</mixed>

View File

@ -0,0 +1 @@
<mixed>beginning text<inner><a>data</a><b>another data</b></inner>end text</mixed>