removed accidently added half-finished tests

This commit is contained in:
Nir Gazit
2021-01-12 19:59:44 +02:00
parent e86876b252
commit 846cd36f63
2 changed files with 0 additions and 59 deletions
@@ -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(<ConsumerGroupOffsets topics={testOffsets} />),
);
// 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
});
});
@@ -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"
}
]