Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

This file was deleted.

229 changes: 0 additions & 229 deletions redisinsight/ui/src/components/charts/bar-chart/BarChart.tsx

This file was deleted.

5 changes: 0 additions & 5 deletions redisinsight/ui/src/components/charts/bar-chart/index.ts

This file was deleted.

This file was deleted.

2 changes: 0 additions & 2 deletions redisinsight/ui/src/components/charts/index.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
import DonutChart from './donut-chart'
import AreaChart from './area-chart'
import BarChart from './bar-chart'

export {
DonutChart,
AreaChart,
BarChart,
}
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
width: 80px;
height: 33px;

z-index: 3;
z-index: 1;

.tooltip,
.declineBtn,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ import ExpirationGroupsView from './ExpirationGroupsView'

describe('ExpirationGroupsView', () => {
it('should be rendered', async () => {
expect(render(<ExpirationGroupsView data={null} extrapolation={1} loading={false} />)).toBeTruthy()
expect(render(<ExpirationGroupsView data={null} loading={false} />)).toBeTruthy()
})

it('should render spinner if loading=true and data=null', async () => {
const { queryByTestId } = render(<ExpirationGroupsView data={null} extrapolation={1} loading />)
const { queryByTestId } = render(<ExpirationGroupsView data={null} loading />)

expect(queryByTestId('summary-per-ttl-loading')).toBeInTheDocument()
expect(queryByTestId('analysis-ttl')).not.toBeInTheDocument()
Expand Down
Loading