mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
7075a1e513
[web] Migrate institution free plan subscription dash to React GitOrigin-RevId: 5f488bdeeb6db4a0895fe99218122220a2ee9561
25 lines
603 B
TypeScript
25 lines
603 B
TypeScript
import { render, screen } from '@testing-library/react'
|
|
import FreePlan from '../../../../../../frontend/js/features/subscription/components/dashboard/free-plan'
|
|
|
|
describe('<FreePlan />', function () {
|
|
beforeEach(function () {
|
|
window.metaAttributesCache = new Map()
|
|
})
|
|
|
|
afterEach(function () {
|
|
window.metaAttributesCache = new Map()
|
|
})
|
|
|
|
it('renders free plan dash', function () {
|
|
render(<FreePlan />)
|
|
|
|
screen.getByText(
|
|
'You are on the Overleaf Free plan. Upgrade to access these',
|
|
{
|
|
exact: false,
|
|
}
|
|
)
|
|
|
|
screen.getByText('Upgrade Now')
|
|
})
|
|
})
|