diff --git a/extensions/emmet/src/test/wrapWithAbbreviation.test.ts b/extensions/emmet/src/test/wrapWithAbbreviation.test.ts index a396ec26e7b7f363115dd15a9c5b8234fd287d59..d5a4a2bce3cd060efad6c69fdfcd1ccb8bfb8147 100644 --- a/extensions/emmet/src/test/wrapWithAbbreviation.test.ts +++ b/extensions/emmet/src/test/wrapWithAbbreviation.test.ts @@ -63,22 +63,6 @@ const wrapInlineElementExpectedFormatFalse = ` `; -const wrapMultiLineJsxExpected = ` - -`; - -const wrapIndividualLinesJsxExpected = ` - -`; - suite('Tests for Wrap with Abbreviations', () => { teardown(closeAllEditors); @@ -309,10 +293,26 @@ suite('Tests for Wrap with Abbreviations', () => { }); test('Wrap multiline with abbreviation uses className for jsx files', () => { + const wrapMultiLineJsxExpected = ` + +`; + return testWrapWithAbbreviation([new Selection(2,2,3,33)], '.hello', wrapMultiLineJsxExpected, htmlContentsForWrapTests, 'jsx'); }); test('Wrap individual line with abbreviation uses className for jsx files', () => { + const wrapIndividualLinesJsxExpected = ` + +`; + return testWrapIndividualLinesWithAbbreviation([new Selection(2,2,3,33)], '.hello$*', wrapIndividualLinesJsxExpected, htmlContentsForWrapTests, 'jsx'); }); });