diff --git a/e2e/components/NoTagsEmptyState/NoTagsEmptyState-test.avt.e2e.js b/e2e/components/NoTagsEmptyState/NoTagsEmptyState-test.avt.e2e.js new file mode 100644 index 0000000000..9bbe5a7825 --- /dev/null +++ b/e2e/components/NoTagsEmptyState/NoTagsEmptyState-test.avt.e2e.js @@ -0,0 +1,26 @@ +/** + * Copyright IBM Corp. 2024, 2024 + * + * This source code is licensed under the Apache-2.0 license found in the + * LICENSE file in the root directory of this source tree. + */ + +'use strict'; + +import { expect, test } from '@playwright/test'; +import { visitStory } from '../../test-utils/storybook'; + +test.describe('NoTagsEmptyState @avt', () => { + test('@avt-default-state', async ({ page }) => { + await visitStory(page, { + component: 'NoTagsEmptyState', + id: 'ibm-products-patterns-empty-state-notagsemptystate--default', + globals: { + carbonTheme: 'white', + }, + }); + await expect(page).toHaveNoACViolations( + 'NoTagsEmptyState @avt-default-state' + ); + }); +});