Skip to content

Commit b210745

Browse files
authored
Revert "Skip failing integration tests (microsoft#187424)" (microsoft#188459)
This reverts commit 00db67e.
1 parent b358b35 commit b210745

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

extensions/emmet/src/test/abbreviationAction.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@ suite('Tests for Expand Abbreviations (HTML)', () => {
410410
// });
411411
// });
412412

413-
test.skip('No expanding when html is excluded in the settings in completion list', async () => {
413+
test('No expanding when html is excluded in the settings in completion list', async () => {
414414
const oldConfig = workspace.getConfiguration('emmet').inspect('excludeLanguages')?.globalValue;
415415
await workspace.getConfiguration('emmet').update('excludeLanguages', ['html'], ConfigurationTarget.Global);
416416
await testHtmlCompletionProvider(new Selection(9, 6, 9, 6), '', '', true);
@@ -469,7 +469,7 @@ suite('Tests for jsx, xml and xsl', () => {
469469
});
470470
});
471471

472-
test.skip('Expand abbreviation with no self closing tags for html', () => {
472+
test('Expand abbreviation with no self closing tags for html', () => {
473473
return withRandomFileEditor('img', 'html', async (editor, _doc) => {
474474
editor.selection = new Selection(0, 6, 0, 6);
475475
await expandEmmetAbbreviation({ language: 'html' });

0 commit comments

Comments
 (0)