mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
f6213de83b
[web] Migrate the footer to React GitOrigin-RevId: 9571d7b3ef9a267fb8250956f821b1ee34ce07c7
50 lines
1.7 KiB
TypeScript
50 lines
1.7 KiB
TypeScript
import React from 'react'
|
|
import '../../helpers/bootstrap-5'
|
|
import LanguagePicker from '../../../../frontend/js/features/ui/components/bootstrap-5/language-picker'
|
|
import getMeta from '@/utils/meta'
|
|
import exposedSettings from '../../../../modules/admin-panel/test/frontend/js/features/user/data/exposedSettings'
|
|
|
|
describe('LanguagePicker', function () {
|
|
beforeEach(function () {
|
|
window.metaAttributesCache.set('ol-i18n', {
|
|
currentLangCode: 'en',
|
|
})
|
|
window.metaAttributesCache.set('ol-footer', {
|
|
translatedLanguages: {
|
|
en: 'English',
|
|
fr: 'Français',
|
|
es: 'Español',
|
|
},
|
|
subdomainLang: {
|
|
en: { lngCode: 'en', url: 'overleaf.com' },
|
|
fr: { lngCode: 'fr', url: 'fr.overleaf.com' },
|
|
es: { lngCode: 'es', url: 'es.overleaf.com' },
|
|
},
|
|
})
|
|
|
|
Object.assign(getMeta('ol-ExposedSettings'), exposedSettings)
|
|
})
|
|
|
|
it('renders the language picker with the current language', function () {
|
|
cy.mount(<LanguagePicker />)
|
|
cy.get('#language-picker-toggle').should('contain', 'English')
|
|
})
|
|
|
|
it('opens the dropdown and lists available languages', function () {
|
|
cy.mount(<LanguagePicker />)
|
|
cy.get('#language-picker-toggle').click()
|
|
|
|
cy.get('.dropdown-menu').within(() => {
|
|
cy.contains('English').should('exist')
|
|
cy.contains('Français').should('exist')
|
|
cy.contains('Español').should('exist')
|
|
})
|
|
})
|
|
|
|
it('changes the language and updates the URL when a language is selected', function () {
|
|
cy.mount(<LanguagePicker />)
|
|
cy.get('#language-picker-toggle').should('exist').click()
|
|
cy.contains('Français').click()
|
|
cy.url().should('include', 'fr.overleaf.com')
|
|
})
|
|
})
|