mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
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')
|
||
|
})
|
||
|
})
|