Merge pull request #24391 from npiyush97/removetrunc

removing react-text-truncate
This commit is contained in:
Fredrik Adelöw
2024-05-10 20:47:10 +02:00
committed by GitHub
6 changed files with 38 additions and 47 deletions
@@ -72,7 +72,7 @@ describe('systemEntityColumns', () => {
expect(screen.getByText('my-namespace/my-system')).toBeInTheDocument();
expect(screen.getByText('my-namespace/my-domain')).toBeInTheDocument();
expect(screen.getByText('test')).toBeInTheDocument();
expect(screen.getByText(/Some/)).toBeInTheDocument();
expect(screen.queryAllByText(/Some/)).not.toHaveLength(0);
});
});
});
@@ -126,7 +126,7 @@ describe('componentEntityColumns', () => {
expect(screen.getByText('test')).toBeInTheDocument();
expect(screen.getByText('production')).toBeInTheDocument();
expect(screen.getByText('service')).toBeInTheDocument();
expect(screen.getByText(/Some/)).toBeInTheDocument();
expect(screen.queryAllByText(/Some/)).not.toHaveLength(0);
});
});
});