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-14.7.0.pre.rc.1 app/pb_kits/playbook/pb_currency/currency.test.js
playbook_ui-14.6.0.pre.alpha.play1586datearea4218 app/pb_kits/playbook/pb_currency/currency.test.js
playbook_ui-14.7.0.pre.rc.0 app/pb_kits/playbook/pb_currency/currency.test.js
playbook_ui-14.5.0.pre.alpha.PLAY1485selectablecardoverflowoutlinebug4216 app/pb_kits/playbook/pb_currency/currency.test.js
playbook_ui-14.6.0 app/pb_kits/playbook/pb_currency/currency.test.js
playbook_ui-14.6.0.pre.rc.25 app/pb_kits/playbook/pb_currency/currency.test.js
playbook_ui-14.6.0.pre.rc.24 app/pb_kits/playbook/pb_currency/currency.test.js
playbook_ui-14.6.0.pre.rc.23 app/pb_kits/playbook/pb_currency/currency.test.js
playbook_ui-14.6.0.pre.rc.22 app/pb_kits/playbook/pb_currency/currency.test.js
playbook_ui-14.6.0.pre.rc.21 app/pb_kits/playbook/pb_currency/currency.test.js
playbook_ui-14.5.0.pre.alpha.PLAY1548intltelinputupdatelatest4175 app/pb_kits/playbook/pb_currency/currency.test.js
playbook_ui-14.6.0.pre.rc.20 app/pb_kits/playbook/pb_currency/currency.test.js
playbook_ui-14.5.0.pre.alpha.PLAY1548intltelinputupdatelatest4162 app/pb_kits/playbook/pb_currency/currency.test.js
playbook_ui-14.5.0.pre.alpha.PBNTR595popoverwidthpropfilterpopoverprop4158 app/pb_kits/playbook/pb_currency/currency.test.js
playbook_ui-14.5.0.pre.alpha.PBNTR614advancedtablepoc4155 app/pb_kits/playbook/pb_currency/currency.test.js
playbook_ui-14.6.0.pre.rc.19 app/pb_kits/playbook/pb_currency/currency.test.js
playbook_ui-14.6.0.pre.rc.18 app/pb_kits/playbook/pb_currency/currency.test.js
playbook_ui-14.5.0.pre.alpha.play1549upgradereactmodal4130 app/pb_kits/playbook/pb_currency/currency.test.js
playbook_ui-14.5.0.pre.alpha.PLAY1601updatereactzoompanpinch4128 app/pb_kits/playbook/pb_currency/currency.test.js
playbook_ui-14.5.0.pre.alpha.PLAY1601updatereactzoompanpinch4123 app/pb_kits/playbook/pb_currency/currency.test.js