diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/dashboards/published-status/dashboard-published-status.test.ts b/src/Umbraco.Web.UI.Client/src/backoffice/dashboards/published-status/dashboard-published-status.test.ts new file mode 100644 index 0000000000..ecbe84b6aa --- /dev/null +++ b/src/Umbraco.Web.UI.Client/src/backoffice/dashboards/published-status/dashboard-published-status.test.ts @@ -0,0 +1,15 @@ +import { expect, fixture, html } from '@open-wc/testing'; + +import { UmbDashboardPublishedStatusElement } from './dashboard-published-status.element'; + +describe('UmbDashboardPublishedStatus', () => { + let element: UmbDashboardPublishedStatusElement; + + beforeEach(async () => { + element = await fixture(html``); + }); + + it('is defined with its own instance', () => { + expect(element).to.be.instanceOf(UmbDashboardPublishedStatusElement); + }); +});