From ee958ed24df84d917514906c9f815a8cd7eb1937 Mon Sep 17 00:00:00 2001 From: Bogdan Nechyporenko Date: Mon, 23 Oct 2023 23:37:54 +0200 Subject: [PATCH] wip Signed-off-by: Bogdan Nechyporenko --- .../components/ErrorPanel/ErrorPanel.test.tsx | 45 ------------------- .../WarningPanel/WarningPanel.test.tsx | 15 ------- 2 files changed, 60 deletions(-) delete mode 100644 packages/core-components/src/components/ErrorPanel/ErrorPanel.test.tsx diff --git a/packages/core-components/src/components/ErrorPanel/ErrorPanel.test.tsx b/packages/core-components/src/components/ErrorPanel/ErrorPanel.test.tsx deleted file mode 100644 index 66ef82b029..0000000000 --- a/packages/core-components/src/components/ErrorPanel/ErrorPanel.test.tsx +++ /dev/null @@ -1,45 +0,0 @@ -/* - * Copyright 2020 The Backstage Authors - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -import { WarningPanel } from '../WarningPanel'; -import { screen } from '@testing-library/react'; -import React from 'react'; -import { renderInTestApp } from '@backstage/test-utils'; -import { WarningProps } from '../WarningPanel/WarningPanel'; - -describe('', () => { - const propsErrorMessage: WarningProps = { - severity: 'error', - title: 'Mock title', - message: 'Some more info', - }; - - it('renders a title formatted by markdown', async () => { - await renderInTestApp( - , - ); - expect(screen.getByText('Error: Step has failed.')).toBeInTheDocument(); - - expect(screen.getByText('Help')).toHaveAttribute( - 'href', - 'https://commonmark.org/help', - ); - }); -}); diff --git a/packages/core-components/src/components/WarningPanel/WarningPanel.test.tsx b/packages/core-components/src/components/WarningPanel/WarningPanel.test.tsx index dd8e21d5c0..5d00784fd1 100644 --- a/packages/core-components/src/components/WarningPanel/WarningPanel.test.tsx +++ b/packages/core-components/src/components/WarningPanel/WarningPanel.test.tsx @@ -75,19 +75,4 @@ describe('', () => { await renderInTestApp(); expect(screen.getByText('Error: Mock title')).toBeInTheDocument(); }); - it('renders a title formatted by markdown', async () => { - await renderInTestApp( - , - ); - expect(screen.getByText('Error: Step has failed.')).toBeInTheDocument(); - - expect(screen.getByText('Help')).toHaveAttribute( - 'href', - 'https://commonmark.org/help', - ); - }); });