From f6fe9c034279a55019eccfec2d9b6135a6a386e2 Mon Sep 17 00:00:00 2001 From: Daniel Leroux Date: Wed, 18 Dec 2024 17:19:09 +0100 Subject: [PATCH] test: remove unused test --- packages/core/src/setup.ct.ts | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 packages/core/src/setup.ct.ts diff --git a/packages/core/src/setup.ct.ts b/packages/core/src/setup.ct.ts deleted file mode 100644 index e073e69a0c..0000000000 --- a/packages/core/src/setup.ct.ts +++ /dev/null @@ -1,21 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2024 Siemens AG - * - * SPDX-License-Identifier: MIT - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ -import { expect } from '@playwright/test'; -import { regressionTest } from '@utils/test'; - -regressionTest( - 'should not define icons if meta tag is set to false', - async ({ page, mount }) => { - await mount(``, { - headTags: [''], - }); - await page.waitForTimeout(1000); - await expect(page.locator('ix-icon')).not.toBeVisible(); - } -);