mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
7c243c6c50
[SettingsPage] Small Fixes 6 GitOrigin-RevId: 19ad9a195a401909ac3dcc2be79d380cb61078da
46 lines
2 KiB
TypeScript
46 lines
2 KiB
TypeScript
import { expect } from 'chai'
|
|
import { fireEvent, screen, render } from '@testing-library/react'
|
|
import { LeaversSurveyAlert } from '../../../../../frontend/js/features/settings/components/leavers-survey-alert'
|
|
import localStorage from '../../../../../frontend/js/infrastructure/local-storage'
|
|
|
|
describe('<LeaversSurveyAlert/>', function () {
|
|
it('should render before the expiration date', function () {
|
|
const tomorrow = Date.now() + 1000 * 60 * 60 * 24
|
|
localStorage.setItem('showInstitutionalLeaversSurveyUntil', tomorrow)
|
|
localStorage.setItem('hideInstitutionalLeaversSurvey', false)
|
|
render(<LeaversSurveyAlert />)
|
|
screen.getByRole('alert')
|
|
screen.getByText(/Provide some quick feedback/)
|
|
screen.getByRole('link', { name: 'Take a short survey' })
|
|
})
|
|
|
|
it('should not render after the expiration date', function () {
|
|
const yesterday = Date.now() - 1000 * 60 * 60 * 24
|
|
localStorage.setItem('showInstitutionalLeaversSurveyUntil', yesterday)
|
|
localStorage.setItem('hideInstitutionalLeaversSurvey', false)
|
|
render(<LeaversSurveyAlert />)
|
|
expect(screen.queryByRole('alert')).to.be.null
|
|
})
|
|
|
|
it('should not render if it has been hidden', function () {
|
|
const tomorrow = Date.now() + 1000 * 60 * 60 * 24
|
|
localStorage.setItem('showInstitutionalLeaversSurveyUntil', tomorrow)
|
|
localStorage.setItem('hideInstitutionalLeaversSurvey', true)
|
|
render(<LeaversSurveyAlert />)
|
|
expect(screen.queryByRole('alert')).to.be.null
|
|
})
|
|
|
|
it('should reset the expiration date when it is closed', function () {
|
|
const tomorrow = Date.now() + 1000 * 60 * 60 * 24
|
|
localStorage.setItem('showInstitutionalLeaversSurveyUntil', tomorrow)
|
|
localStorage.setItem('hideInstitutionalLeaversSurvey', false)
|
|
render(<LeaversSurveyAlert />)
|
|
screen.getByRole('alert')
|
|
|
|
fireEvent.click(screen.getByRole('button'))
|
|
expect(screen.queryByRole('alert')).to.be.null
|
|
|
|
expect(localStorage.getItem('showInstitutionalLeaversSurveyUntil')).to.be
|
|
.null
|
|
})
|
|
})
|