mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2025-08-02 08:00:10 +02:00

Fix case in subscription related pages GitOrigin-RevId: df5c1da01a2cc391d081b4dccf882dfe45276766
17 lines
452 B
TypeScript
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')
|
|
})
|
|
})
|