overleaf-cep/services/web/test/frontend/features/subscription/components/dashboard/free-plan.test.tsx
Eric Mc Sween a21db20631 Merge pull request #22164 from overleaf/em-subscription-case
Fix case in subscription related pages

GitOrigin-RevId: df5c1da01a2cc391d081b4dccf882dfe45276766
2024-11-28 09:05:50 +00:00

17 lines
452 B
TypeScript

import { render, screen } from '@testing-library/react'
import FreePlan from '../../../../../../frontend/js/features/subscription/components/dashboard/free-plan'
describe('<FreePlan />', function () {
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')
})
})