mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-10 06:39:01 +02:00
232cc625f3
GitOrigin-RevId: f373f4215e5f25d14256008cf5f6582eb3124431
19 lines
430 B
TypeScript
19 lines
430 B
TypeScript
import { mount } from '@cypress/react'
|
|
import BetaBadge from '../../../../frontend/js/shared/components/beta-badge'
|
|
|
|
describe('beta badge', function () {
|
|
it('renders the url and tooltip text', function () {
|
|
mount(
|
|
<BetaBadge
|
|
url="/foo"
|
|
tooltip={{
|
|
id: 'test-tooltip',
|
|
text: 'This is a test',
|
|
}}
|
|
/>
|
|
)
|
|
|
|
cy.get('a[href="/foo"]').contains('This is a test')
|
|
})
|
|
})
|