Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Skip failing integration tests #187424

Merged
merged 1 commit into from
Jul 10, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions extensions/emmet/src/test/abbreviationAction.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ suite('Tests for Expand Abbreviations (HTML)', () => {
// });
// });

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

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