aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/currency-display/tests/currency-display.component.test.js
blob: d9ef052f1bf24c43e0bf8b1112242387ba62474d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import React from 'react'
import assert from 'assert'
import { shallow } from 'enzyme'
import CurrencyDisplay from '../currency-display.component'

describe('CurrencyDisplay Component', () => {
  it('should render text with a className', () => {
    const wrapper = shallow(<CurrencyDisplay
      displayValue="$123.45"
      className="currency-display"
    />)

    assert.ok(wrapper.hasClass('currency-display'))
    assert.equal(wrapper.text(), '$123.45')
  })

  it('should render text with a prefix', () => {
    const wrapper = shallow(<CurrencyDisplay
      displayValue="$123.45"
      className="currency-display"
      prefix="-"
    />)

    assert.ok(wrapper.hasClass('currency-display'))
    assert.equal(wrapper.text(), '-$123.45')
  })
})