mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
17 lines
513 B
TypeScript
17 lines
513 B
TypeScript
|
import { expect } from 'chai'
|
||
|
import { screen, render } from '@testing-library/react'
|
||
|
|
||
|
import NewsletterSection from '../../../../../frontend/js/features/settings/components/newsletter-section'
|
||
|
|
||
|
describe('<NewsletterSection />', function () {
|
||
|
it('shows link to sessions', async function () {
|
||
|
render(<NewsletterSection />)
|
||
|
|
||
|
const link = screen.getByRole('link', {
|
||
|
name: 'Manage Your Newsletter Preferences',
|
||
|
})
|
||
|
|
||
|
expect(link.getAttribute('href')).to.equal('/user/email-preferences')
|
||
|
})
|
||
|
})
|