Update changelog

This commit is contained in:
Alejandro Celaya
2025-04-20 13:27:57 +02:00
parent 8da630e149
commit b0189c6457
4 changed files with 10 additions and 6 deletions

View File

@@ -79,7 +79,7 @@ describe('<EditServer />', () => {
const { user } = setUp({ ...defaultSelectedServer, ...serverPartial });
await user.click(screen.getByText('Advanced options'));
await user.click(screen.getByLabelText('Forward credentials (like cookies) to this server on every request.'));
await user.click(screen.getByLabelText('Forward credentials to this server on every request.'));
fireEvent.submit(screen.getByRole('form'));

View File

@@ -29,7 +29,7 @@ describe('<ServerForm />', () => {
it('shows advanced options', async () => {
const { user } = setUp();
const forwardCredentialsLabel = 'Forward credentials (like cookies) to this server on every request.';
const forwardCredentialsLabel = 'Forward credentials to this server on every request.';
expect(screen.queryByLabelText(forwardCredentialsLabel)).not.toBeInTheDocument();
await user.click(screen.getByText('Advanced options'));