mirror of
https://github.com/overleaf/overleaf.git
synced 2024-12-02 12:39:33 -05:00
aa480a2663
[web] migrate from window attributes to getMeta GitOrigin-RevId: 3dcf1ab6b01155e5e4abeb3e78d0fa9053e055bc
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')
|
|
})
|
|
})
|