import { render, screen } from '@testing-library/react'; import { fromPartial } from '@total-typescript/shoehorn'; import { MemoryRouter } from 'react-router'; import { Home } from '../../src/common/Home'; import type { ServersMap, ServerWithId } from '../../src/servers/data'; describe('', () => { const setUp = (servers: ServersMap = {}) => render( , ); it('renders title', () => { setUp(); expect(screen.getByRole('heading', { name: 'Welcome!' })).toBeInTheDocument(); }); it.each([ [ { '1a': fromPartial({ name: 'foo', id: '1' }), '2b': fromPartial({ name: 'bar', id: '2' }), '3c': fromPartial({ name: 'baz', id: '3' }), }, 3, ], [{}, 2], ])('shows link to create or set-up server only when no servers exist', (servers, expectedServers) => { setUp(servers); const links = screen.getAllByRole('link'); expect(links).toHaveLength(expectedServers); if (Object.keys(servers).length === 0) { expect(screen.getByText('This application will help you manage your Shlink servers.')).toBeInTheDocument(); expect(screen.getByText('Learn more about Shlink')).toBeInTheDocument(); } }); });