Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,8 @@ describe('DashboardPage', () => {
expect(screen.getByText('/tmp/config.json')).toBeInTheDocument();
expect(screen.getByText('/tmp/storage')).toBeInTheDocument();
expect(screen.getByText('https://example.com')).toBeInTheDocument();
expect(screen.getByText('connected')).toBeInTheDocument();
expect(screen.getByText('Connected to LXMF server abc123')).toBeInTheDocument();
expect(screen.getAllByText('connected')).toHaveLength(2);
expect(screen.getAllByText('Connected to LXMF server abc123')).toHaveLength(2);
const timestampMatches = screen.getAllByText('2025-09-23T12:34:56Z');
expect(timestampMatches).toHaveLength(2);
expect(screen.getByText('Mesh Neighbors • full • 125000 bps')).toBeInTheDocument();
Expand Down
Loading