We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58577b2 commit b240c71Copy full SHA for b240c71
redisinsight/ui/src/pages/databaseAnalysis/components/top-keys/Table.spec.tsx
@@ -46,7 +46,7 @@ describe('Table', () => {
46
it('should render correct length', () => {
47
render(<Table {...instance(mockedProps)} data={mockData} />)
48
expect(screen.getByTestId('length-empty-name_1')).toHaveTextContent('-')
49
- expect(screen.getByTestId('length-value-name')).toHaveTextContent('10')
+ expect(screen.getByTestId(/length-value-name/).textContent).toEqual('100 000 000')
50
})
51
52
it('should highlight big keys', () => {
0 commit comments