Ensured tags, servers and domains search is case insensitive

This commit is contained in:
Alejandro Celaya
2022-08-07 13:26:26 +02:00
parent 4a92d0ff11
commit f69bda351d
6 changed files with 9 additions and 9 deletions

View File

@@ -43,7 +43,7 @@ describe('<ManageServers />', () => {
await waitFor(() => expect(screen.getAllByText(/^ManageServersRow/)).toHaveLength(1));
expect(screen.queryByText('No servers found.')).not.toBeInTheDocument();
await search('ba');
await search('Ba');
await waitFor(() => expect(screen.getAllByText(/^ManageServersRow/)).toHaveLength(2));
expect(screen.queryByText('No servers found.')).not.toBeInTheDocument();