diff --git a/plugins/kafka/src/components/ConsumerGroupOffsets/ConsumerGroupOffsets.test.tsx b/plugins/kafka/src/components/ConsumerGroupOffsets/ConsumerGroupOffsets.test.tsx deleted file mode 100644 index 3c499f1621..0000000000 --- a/plugins/kafka/src/components/ConsumerGroupOffsets/ConsumerGroupOffsets.test.tsx +++ /dev/null @@ -1,39 +0,0 @@ -/* - * Copyright 2020 Spotify AB - * - * 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 React from 'react'; -import { render } from '@testing-library/react'; -import { ConsumerGroupOffsets } from './ConsumerGroupOffsets'; -import * as testOffsets from './__fixtures__/consumerGroupoffsets.json'; -import { wrapInTestApp } from '@backstage/test-utils'; - -describe('ConfigMaps', () => { - it('should render consumer group offsets', async () => { - const { getByText } = render( - wrapInTestApp(), - ); - - // title - expect(getByText('dice-roller')).toBeInTheDocument(); - expect(getByText('Config Map')).toBeInTheDocument(); - - // values - expect(getByText('Immutable')).toBeInTheDocument(); - expect(getByText('false')).toBeInTheDocument(); - expect(getByText('Data')).toBeInTheDocument(); - expect(getByText('Foo: bar')).toBeInTheDocument(); // TODO wish this wasn't upper case - }); -}); diff --git a/plugins/kafka/src/components/ConsumerGroupOffsets/__fixtures__/consumerGroupOffsets.json b/plugins/kafka/src/components/ConsumerGroupOffsets/__fixtures__/consumerGroupOffsets.json deleted file mode 100644 index 4409542787..0000000000 --- a/plugins/kafka/src/components/ConsumerGroupOffsets/__fixtures__/consumerGroupOffsets.json +++ /dev/null @@ -1,20 +0,0 @@ -[ - { - "topic": "topic1", - "partitionId": 1, - "groupOffset": "100", - "topicOffset": "500" - }, - { - "topic": "topic1", - "partitionId": 2, - "groupOffset": "213", - "topicOffset": "1000" - }, - { - "topic": "topic2", - "partitionId": 1, - "groupOffset": "456", - "topicOffset": "456" - } -]