mirror of
https://github.com/overleaf/overleaf.git
synced 2024-12-02 05:49:11 -05:00
c6b88085d5
[web] Migrate team invite to React GitOrigin-RevId: 32e968c3b512020aef9a396808c73a7b4859e6d1
21 lines
839 B
TypeScript
21 lines
839 B
TypeScript
import { render, screen } from '@testing-library/react'
|
||
import ManagedUserCannotJoin from '../../../../../../frontend/js/features/subscription/components/group-invite/managed-user-cannot-join'
|
||
|
||
describe('ManagedUserCannotJoin', function () {
|
||
beforeEach(function () {
|
||
window.metaAttributesCache.set(
|
||
'ol-currentManagedUserAdminEmail',
|
||
'example@overleaf.com'
|
||
)
|
||
window.metaAttributesCache.set('ol-cannot-join-subscription', true)
|
||
})
|
||
|
||
it('renders the component', async function () {
|
||
render(<ManagedUserCannotJoin />)
|
||
await screen.findByText(
|
||
'Your Overleaf account is managed by your current group admin (example@overleaf.com). This means you can’t join additional group subscriptions',
|
||
{ exact: false }
|
||
)
|
||
screen.getByRole('link', { name: 'Read more about Managed Users.' })
|
||
})
|
||
})
|