mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 17:19:37 +02:00
[CE/SP] Fix default footer (#28947)
* [CE/SP] Fix default footer Fixes the default `right_footer`. Only 'text' should be defined when it contains HTML code. * Remove font-awesome github icon * Added acceptance test GitOrigin-RevId: 1a1ba04673f35affcec4bb17bc7cd860d589b13f
This commit is contained in:
@@ -2,25 +2,39 @@ import { isExcludedBySharding, startWith } from './helpers/config'
|
||||
|
||||
describe('Customization', () => {
|
||||
if (isExcludedBySharding('CE_CUSTOM_1')) return
|
||||
startWith({
|
||||
vars: {
|
||||
OVERLEAF_APP_NAME: 'CUSTOM APP NAME',
|
||||
OVERLEAF_LEFT_FOOTER: JSON.stringify([{ text: 'CUSTOM LEFT FOOTER' }]),
|
||||
OVERLEAF_RIGHT_FOOTER: JSON.stringify([{ text: 'CUSTOM RIGHT FOOTER' }]),
|
||||
},
|
||||
|
||||
describe('default settings', () => {
|
||||
startWith({})
|
||||
|
||||
it('should display the default right footer', () => {
|
||||
cy.visit('/')
|
||||
cy.get('footer').findByRole('link', { name: 'Fork on GitHub!' })
|
||||
})
|
||||
})
|
||||
|
||||
it('should display custom name', () => {
|
||||
cy.visit('/')
|
||||
cy.get('nav').findByText('CUSTOM APP NAME')
|
||||
})
|
||||
describe('custom settings', () => {
|
||||
startWith({
|
||||
vars: {
|
||||
OVERLEAF_APP_NAME: 'CUSTOM APP NAME',
|
||||
OVERLEAF_LEFT_FOOTER: JSON.stringify([{ text: 'CUSTOM LEFT FOOTER' }]),
|
||||
OVERLEAF_RIGHT_FOOTER: JSON.stringify([
|
||||
{ text: 'CUSTOM RIGHT FOOTER' },
|
||||
]),
|
||||
},
|
||||
})
|
||||
|
||||
it('should display custom left footer', () => {
|
||||
cy.visit('/')
|
||||
cy.get('footer').findByText('CUSTOM LEFT FOOTER')
|
||||
})
|
||||
it('should display custom right footer', () => {
|
||||
cy.visit('/')
|
||||
cy.get('footer').findByText('CUSTOM RIGHT FOOTER')
|
||||
it('should display custom name', () => {
|
||||
cy.visit('/')
|
||||
cy.get('nav').findByText('CUSTOM APP NAME')
|
||||
})
|
||||
|
||||
it('should display custom left footer', () => {
|
||||
cy.visit('/')
|
||||
cy.get('footer').findByText('CUSTOM LEFT FOOTER')
|
||||
})
|
||||
it('should display custom right footer', () => {
|
||||
cy.visit('/')
|
||||
cy.get('footer').findByText('CUSTOM RIGHT FOOTER')
|
||||
})
|
||||
})
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user