1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- // Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
- import { renderComponent } from '#tests/support/components/index.ts'
- import CommonAlert from '../CommonAlert.vue'
- describe('CommonAlert.vue', () => {
- it('renders when no props are passed', () => {
- const view = renderComponent(CommonAlert, {
- slots: {
- default: 'Dummy',
- },
- })
- const alert = view.getByTestId('common-alert')
- expect(alert).toHaveTextContent('Dummy')
- expect(alert).toHaveClass('common-alert-info')
- expect(view.getByIconName('info')).toBeInTheDocument()
- expect(view.queryByIconName('close')).not.toBeInTheDocument()
- })
- it('renders an alert with a specific variant', () => {
- const view = renderComponent(CommonAlert, {
- props: {
- variant: 'danger',
- },
- slots: {
- default: 'Dummy',
- },
- })
- const alert = view.getByTestId('common-alert')
- expect(alert).toHaveTextContent('Dummy')
- expect(alert).toHaveClass('common-alert-danger')
- expect(view.getByIconName('close-small')).toBeInTheDocument()
- expect(view.queryByIconName('close')).not.toBeInTheDocument()
- })
- it('renders an dismissible alert', () => {
- const view = renderComponent(CommonAlert, {
- props: {
- dismissible: true,
- },
- slots: {
- default: 'Dummy',
- },
- })
- const alert = view.getByTestId('common-alert')
- expect(alert).toHaveTextContent('Dummy')
- expect(alert).toHaveClass('common-alert-info')
- expect(view.getByIconName('close')).toBeInTheDocument()
- })
- })
|