mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
3c124667ba
[SettingsPage] Split Misc Section GitOrigin-RevId: b6fc60c571dfaf3aec542f3df8dc826a0ba3ab58
16 lines
482 B
TypeScript
16 lines
482 B
TypeScript
import { expect } from 'chai'
|
|
import { screen, render } from '@testing-library/react'
|
|
|
|
import SessionsSection from '../../../../../frontend/js/features/settings/components/sessions-section'
|
|
|
|
describe('<SessionsSection />', function () {
|
|
it('shows link to sessions', async function () {
|
|
render(<SessionsSection />)
|
|
|
|
const link = screen.getByRole('link', {
|
|
name: 'Manage Your Sessions',
|
|
})
|
|
|
|
expect(link.getAttribute('href')).to.equal('/user/sessions')
|
|
})
|
|
})
|