Skip to content

Commit 9e3b27c

Browse files
authored
QA Skip the known failing smoke test to avoid blocking other PRs (#20269)
Added skip for the failing smoke test
1 parent 54b49f9 commit 9e3b27c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/Umbraco.Tests.AcceptanceTest/tests/DefaultConfig/DataType/BlockGrid/Block/BlockGridBlockAdvanced.spec.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,9 @@ test('can remove a icon color from a block', async ({umbracoApi, umbracoUi}) =>
240240
expect(await umbracoApi.dataType.doesBlockEditorBlockContainIconColor(blockGridEditorName, contentElementTypeId, '')).toBeTruthy();
241241
});
242242

243-
test('can add a thumbnail to a block', {tag: '@smoke'}, async ({umbracoApi, umbracoUi}) => {
243+
// Remove skip when the front-end is ready. Currently it is not possible to add a thumbnail to a block
244+
// Issue link: https://github.com/umbraco/Umbraco-CMS/issues/20264
245+
test.skip('can add a thumbnail to a block', {tag: '@smoke'}, async ({umbracoApi, umbracoUi}) => {
244246
// Arrange
245247
const mediaName = 'TestMedia';
246248
await umbracoApi.media.ensureNameNotExists(mediaName);

0 commit comments

Comments
 (0)