mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
98c8ee0e1f
[web] Option to pass content as string to notification component GitOrigin-RevId: 05196a44d25dab5ba85b58965c3bb5ac071a3897
62 lines
1.7 KiB
TypeScript
62 lines
1.7 KiB
TypeScript
import { expect } from 'chai'
|
|
import { screen, render } from '@testing-library/react'
|
|
import Notification from '../../../../frontend/js/shared/components/notification'
|
|
import * as eventTracking from '../../../../frontend/js/infrastructure/event-tracking'
|
|
import sinon from 'sinon'
|
|
|
|
describe('<Notification />', function () {
|
|
let sendMBSpy: sinon.SinonSpy
|
|
|
|
beforeEach(function () {
|
|
sendMBSpy = sinon.spy(eventTracking, 'sendMB')
|
|
})
|
|
|
|
afterEach(function () {
|
|
sendMBSpy.restore()
|
|
})
|
|
|
|
it('renders and is not dismissible by default', function () {
|
|
render(<Notification type="info" content={<p>A notification</p>} />)
|
|
screen.getByText('A notification')
|
|
expect(screen.queryByRole('button', { name: 'Close' })).to.be.null
|
|
})
|
|
|
|
it('renders with action', function () {
|
|
render(
|
|
<Notification
|
|
type="info"
|
|
content={<p>A notification</p>}
|
|
action={<a href="/">Action</a>}
|
|
/>
|
|
)
|
|
screen.getByText('A notification')
|
|
screen.getByRole('link', { name: 'Action' })
|
|
})
|
|
|
|
it('renders with close button', function () {
|
|
render(
|
|
<Notification type="info" content={<p>A notification</p>} isDismissible />
|
|
)
|
|
screen.getByText('A notification')
|
|
screen.getByRole('button', { name: 'Close' })
|
|
})
|
|
|
|
it('renders with title and content passed as HTML', function () {
|
|
render(
|
|
<Notification
|
|
type="info"
|
|
content={<p>A notification</p>}
|
|
title="A title"
|
|
/>
|
|
)
|
|
screen.getByText('A title')
|
|
screen.getByText('A notification')
|
|
})
|
|
|
|
it('renders with content when passed as a string', function () {
|
|
render(
|
|
<Notification type="info" content="A notification" title="A title" />
|
|
)
|
|
screen.getByText('A notification')
|
|
})
|
|
})
|