accounts-frontend/tests-e2e/cypress/integration/profile/i18n.test.ts
ErickSkrauch 82abe0a746
Extract general popups markup to its own component
Split popups controllers into separate components
Implemented storybooks for all project's popups
2020-07-06 19:29:56 +03:00

50 lines
1.9 KiB
TypeScript

describe('Change locale', () => {
it('should change locale from the 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('languages-list-item').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('languages-list-item').contains('English').click();
cy.findByTestId('language-switcher').should('not.be.visible');
cy.findByTestId('footer').should('contain', 'Site language');
});
it('should change locale from the 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('languages-list-item').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', 'Беларуская');
});
});