gradido/frontend/src/components/TransactionCollapse.spec.js
2021-09-13 10:43:34 +02:00

63 lines
1.6 KiB
JavaScript

import { mount } from '@vue/test-utils'
import TransactionCollapse from './TransactionCollapse'
const localVue = global.localVue
describe('TransactionCollapse', () => {
let wrapper
const mocks = {
$t: jest.fn((t) => t),
$n: jest.fn((n) => n),
}
const propsData = {
amount: 100,
gdt: 110,
factor: 22,
gdtEntryType: 1,
}
const Wrapper = () => {
return mount(TransactionCollapse, { localVue, mocks, propsData })
}
describe('mount', () => {
beforeEach(() => {
wrapper = Wrapper()
})
it('renders the component', () => {
expect(wrapper.find('div.gdt-transaction-collapse').exists()).toBeTruthy()
})
it('renders the component clooaps-header', () => {
expect(wrapper.find('.gdt-list-clooaps-header-text')).toBeTruthy()
})
it('renders the component clooaps-headline', () => {
expect(wrapper.find('#clooaps-headline').text()).toBe('gdt.calculation')
})
it('renders the component clooaps-first', () => {
expect(wrapper.find('#clooaps-first').text()).toBe('gdt.factor')
})
it('renders the component clooaps-second', () => {
expect(wrapper.find('#clooaps-second').text()).toBe('gdt.formula')
})
it('renders the component clooaps-firstMath', () => {
expect(wrapper.find('#clooaps-firstMath').text()).toBe('22 GDT pro €')
})
it('renders the component clooaps-secondMath', () => {
expect(wrapper.find('#clooaps-secondMath').text()).toBe('100 € * 22 GDT / € = 110 GDT')
})
it('checks the prop gdtEntryType ', () => {
expect(wrapper.props().gdtEntryType).toBe(1)
})
})
})