Skip to content

Commit

Permalink
Fix frontend unit test
Browse files Browse the repository at this point in the history
Signed-off-by: Cintia Sánchez García <cynthiasg@icloud.com>
  • Loading branch information
cynthia-sg committed Nov 11, 2024
1 parent 0c91d47 commit cbd3f29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/layout/package/SignKeyInfo.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ describe('SignKeyInfo', () => {
expect(screen.getByText('Fingerprint')).toBeInTheDocument();
expect(await screen.findByText('0011223344')).toBeInTheDocument();
expect(screen.getByText('URL')).toBeInTheDocument();
expect(screen.getByText('https://key.url')).toBeInTheDocument();
expect(await screen.findByText('https://key.url')).toBeInTheDocument();
expect(screen.getByText('Close')).toBeInTheDocument();
expect(screen.getAllByRole('button', { name: 'Copy command to clipboard' })).toHaveLength(2);
});
Expand Down

0 comments on commit cbd3f29

Please sign in to comment.