diff --git a/tests/xslt/apply-template.test.ts b/tests/xslt/apply-template.test.ts
index 47a8c07..5100eca 100644
--- a/tests/xslt/apply-template.test.ts
+++ b/tests/xslt/apply-template.test.ts
@@ -39,19 +39,19 @@ describe('xsl:apply-template', () => {
// assert.ok(outXmlString);
});
- it.skip('XSLT template with text on both sides', async () => {
+ it('XSLT template with text on both sides', async () => {
const xmlString = `
This text lost
`;
const xsltString = `
-
+
- XY
+ XY
`;
- const expectedOutString = `XY`;
+ const expectedOutString = `Xtest1Y`;
const xsltClass = new Xslt();
const xmlParser = new XmlParser();