mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-12-05 04:59:26 +05:30
62 lines
1.8 KiB
TypeScript
62 lines
1.8 KiB
TypeScript
describe('Change locale', () => {
|
|
it('should change locale from footer', () => {
|
|
cy.visit('/');
|
|
|
|
cy.findByTestId('footer').contains('Site language').click();
|
|
|
|
cy.findByTestId('language-switcher').should('be.visible');
|
|
cy.findByTestId('language-switcher').should(
|
|
'have.attr',
|
|
'data-e2e-active-locale',
|
|
'en',
|
|
);
|
|
|
|
cy.findByTestId('language-list').contains('Belarusian').click();
|
|
|
|
cy.findByTestId('language-switcher').should('not.be.visible');
|
|
|
|
cy.findByTestId('footer').contains('Мова сайта').click();
|
|
|
|
cy.findByTestId('language-switcher').should('be.visible');
|
|
cy.findByTestId('language-switcher').should(
|
|
'have.attr',
|
|
'data-e2e-active-locale',
|
|
'be',
|
|
);
|
|
|
|
cy.findByTestId('language-list').contains('English').click();
|
|
|
|
cy.findByTestId('language-switcher').should('not.be.visible');
|
|
cy.findByTestId('footer').should('contain', 'Site language');
|
|
});
|
|
|
|
it('should change locale from profile', () => {
|
|
cy.login({ accounts: ['default'] }).then(({ accounts: [account] }) => {
|
|
cy.server();
|
|
cy.route({
|
|
method: 'POST',
|
|
url: `/api/v1/accounts/${account.id}/language`,
|
|
response: { success: true },
|
|
}).as('language');
|
|
});
|
|
|
|
cy.visit('/');
|
|
|
|
cy.findByTestId('profile-index').contains('English').click();
|
|
|
|
cy.findByTestId('language-switcher').should('be.visible');
|
|
cy.findByTestId('language-switcher').should(
|
|
'have.attr',
|
|
'data-e2e-active-locale',
|
|
'en',
|
|
);
|
|
|
|
cy.findByTestId('language-list').contains('Belarusian').click();
|
|
|
|
cy.wait('@language').its('requestBody').should('eq', 'lang=be');
|
|
|
|
cy.findByTestId('language-switcher').should('not.be.visible');
|
|
cy.findByTestId('profile-index').should('contain', 'Беларуская');
|
|
});
|
|
});
|