overleaf/services/web/test/frontend/features/subscription/components/dashboard/free-plan.test.tsx

26 lines
603 B
TypeScript
Raw Normal View History

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')
})
})