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.11.0.pre.alpha.paginate2 app/pb_kits/playbook/pb_currency/currency.test.js
playbook_ui-11.11.0.pre.alpha.dialog2 app/pb_kits/playbook/pb_currency/currency.test.js
playbook_ui-11.11.0.pre.alpha.paginate1 app/pb_kits/playbook/pb_currency/currency.test.js
playbook_ui-11.11.0.pre.alpha.renderer1 app/pb_kits/playbook/pb_currency/currency.test.js
playbook_ui-11.11.0.pre.alpha.dialog1 app/pb_kits/playbook/pb_currency/currency.test.js
playbook_ui-11.11.0 app/pb_kits/playbook/pb_currency/currency.test.js
playbook_ui-11.10.0.pre.alpha.pre.bold1 app/pb_kits/playbook/pb_currency/currency.test.js
playbook_ui-11.10.0.pre.alpha.pagination1 app/pb_kits/playbook/pb_currency/currency.test.js
playbook_ui-11.10.0 app/pb_kits/playbook/pb_currency/currency.test.js
playbook_ui-11.9.0 app/pb_kits/playbook/pb_currency/currency.test.js
playbook_ui-11.9.0.pre.alpha.fileupload1 app/pb_kits/playbook/pb_currency/currency.test.js
playbook_ui-11.8.1 app/pb_kits/playbook/pb_currency/currency.test.js
playbook_ui-11.8.0 app/pb_kits/playbook/pb_currency/currency.test.js
playbook_ui-11.7.0.pre.alpha.table1 app/pb_kits/playbook/pb_currency/currency.test.js
playbook_ui-11.7.0 app/pb_kits/playbook/pb_currency/currency.test.js
playbook_ui-11.6.0.pre.alpha.fontawesome app/pb_kits/playbook/pb_currency/currency.test.js
playbook_ui-11.5.0.pre.alpha.fontawesome app/pb_kits/playbook/pb_currency/currency.test.js
playbook_ui-11.7.0.pre.alpha.pre.guagechart1 app/pb_kits/playbook/pb_currency/currency.test.js
playbook_ui-11.6.0 app/pb_kits/playbook/pb_currency/currency.test.js
playbook_ui-11.5.0.pre.alpha.datepicker1 app/pb_kits/playbook/pb_currency/currency.test.js