mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-05 07:09:02 +02:00
38a3d83e83
[web] Migrate institution free plan subscription dash to React GitOrigin-RevId: 5f488bdeeb6db4a0895fe99218122220a2ee9561
26 lines
603 B
TypeScript
26 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')
|
|
})
|
|
})
|