You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
928 B
33 lines
928 B
describe('General Settings', () => {
|
|
beforeEach(() => {
|
|
cy.loginAsAdmin();
|
|
});
|
|
|
|
it('opens the settings page from the home page', () => {
|
|
cy.visit('/');
|
|
|
|
cy.get('[data-testid=sidebar-toggle]').click();
|
|
cy.get('[data-testid=sidebar-menu-settings-mobile]').click();
|
|
|
|
cy.get('.heading').should('contain', 'General Settings');
|
|
});
|
|
|
|
it('modifies setting that requires restart', () => {
|
|
cy.visit('/settings');
|
|
|
|
cy.get('#trustProxy').click();
|
|
cy.get('[data-testid=settings-main-form]').submit();
|
|
cy.get('[data-testid=modal-title]').should(
|
|
'contain',
|
|
'Server Restart Required'
|
|
);
|
|
|
|
cy.get('[data-testid=modal-ok-button]').click();
|
|
cy.get('[data-testid=modal-title]').should('not.exist');
|
|
|
|
cy.get('[type=checkbox]#trustProxy').click();
|
|
cy.get('[data-testid=settings-main-form]').submit();
|
|
cy.get('[data-testid=modal-title]').should('not.exist');
|
|
});
|
|
});
|