Sha256: 2c4951617764346bfd703f1a88f32ac49107960ae4a5b238730c4d8a0049b81a

Contents?: true

Size: 1.82 KB

Versions: 825

Compression:

Stored size: 1.82 KB

Contents

import React from 'react'
import { render, screen } from '../utilities/test-utils'
import Currency from './_currency'

test('abbreviate prop returns proper abbreviated amount', () => {
  render(
    <>
      <Currency
          abbreviate
          amount="3200"
          data={{ testid: 'test-thousands' }}
      />
      <Currency
          abbreviate
          amount="3,200,000"
          data={{ testid: 'test-millions' }}
      />
      <Currency
          abbreviate
          amount="3200000000"
          data={{ testid: 'test-billions' }}
      />
      <Currency
          abbreviate
          amount="3,200,000,000,000"
          data={{ testid: 'test-trillions' }}
      />
    </>
  )

  expect(screen.getByTestId('test-thousands')).toHaveTextContent('$3.2K')
  expect(screen.getByTestId('test-millions')).toHaveTextContent('$3.2M')
  expect(screen.getByTestId('test-billions')).toHaveTextContent('$3.2B')
  expect(screen.getByTestId('test-trillions')).toHaveTextContent('$3.2T')
})

test('decimals matching prop returns decimals as title text', () => {
  render(
    <Currency
        amount="320.20"
        data={{ testid: 'test-decimals-matching' }}
        decimals='matching'
    />
  )

  const currencyKit = screen.getByTestId('test-decimals-matching')
  expect(currencyKit.querySelector('.pb_currency_value')).toHaveTextContent('320.20')
  expect(currencyKit.querySelector('.unit')).toHaveTextContent('')
})

test('decimals default prop returns decimals as body text', () => {
  render(
    <Currency
        amount="320.20"
        data={{ testid: 'test-decimals-default' }}
        decimals='default'
    />
  )

  const currencyKit = screen.getByTestId('test-decimals-default')
  expect(currencyKit.querySelector('.pb_currency_value')).toHaveTextContent('320')
  expect(currencyKit.querySelector('.unit')).toHaveTextContent('.20')
})

Version data entries

825 entries across 825 versions & 1 rubygems

Version Path
playbook_ui-11.19.0 app/pb_kits/playbook/pb_currency/currency.test.js
playbook_ui-11.18.0.pre.alpha.pagutility1 app/pb_kits/playbook/pb_currency/currency.test.js
playbook_ui-11.19.0.pre.typeahead1 app/pb_kits/playbook/pb_currency/currency.test.js
playbook_ui-11.18.0 app/pb_kits/playbook/pb_currency/currency.test.js
playbook_ui-11.17.0 app/pb_kits/playbook/pb_currency/currency.test.js
playbook_ui-11.15.0.pre.alpha.dependencies1 app/pb_kits/playbook/pb_currency/currency.test.js
playbook_ui-11.16.0.pre.alpha.paginationrails1 app/pb_kits/playbook/pb_currency/currency.test.js
playbook_ui-11.16.0 app/pb_kits/playbook/pb_currency/currency.test.js
playbook_ui-11.16.0.pre.alpha.reactupgrade1 app/pb_kits/playbook/pb_currency/currency.test.js
playbook_ui-11.15.0.pre.alpha.table1 app/pb_kits/playbook/pb_currency/currency.test.js
playbook_ui-11.16.0.pre.alpha.pagination.rails1 app/pb_kits/playbook/pb_currency/currency.test.js
playbook_ui-11.15.0 app/pb_kits/playbook/pb_currency/currency.test.js
playbook_ui-11.14.0 app/pb_kits/playbook/pb_currency/currency.test.js
playbook_ui-11.13.0.pre.alpha.fontawesome1 app/pb_kits/playbook/pb_currency/currency.test.js
playbook_ui-11.13.0 app/pb_kits/playbook/pb_currency/currency.test.js
playbook_ui-11.12.1.pre.alpha.charts1 app/pb_kits/playbook/pb_currency/currency.test.js
playbook_ui-11.12.1.pre.alpha.passphrase1 app/pb_kits/playbook/pb_currency/currency.test.js
playbook_ui-11.12.1 app/pb_kits/playbook/pb_currency/currency.test.js
playbook_ui-11.13.0.pre.alpha.fileupload1 app/pb_kits/playbook/pb_currency/currency.test.js
playbook_ui-11.12.0 app/pb_kits/playbook/pb_currency/currency.test.js