Sha256: 526fb662c58828bfb24e32eca73c9df68d5bc33dee4341a35d579f3a4cde8bb1

Contents?: true

Size: 904 Bytes

Versions: 797

Compression:

Stored size: 904 Bytes

Contents

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

import Body from '../../../pb_body/_body'
import { SCREEN_SIZES } from '../../test-utils'

const testSubject = 'body'

test('Global Props: Returns ordinal suffixed class name', () => {
  for(let x = 0, y = 2; x < y; ++x) {
    const testId = `${testSubject}-${x}`
    render(
      <Body
          data={{ testid: testId }}
          flexShrink={x}
          text="Hi"
      />
    )
    const kit = screen.getByTestId(testId)
    expect(kit).toHaveClass(`flex_shrink_${x}`)

    SCREEN_SIZES.forEach((size) => {
      const testId = `${testSubject}-${x}-${size}`
      render(
        <Body
            data={{ testid: testId }}
            flexShrink={{ [size]: x }}
            text="Hi"
        />
      )
      const kit = screen.getByTestId(testId)
      expect(kit).toHaveClass(`flex_shrink_${size}_${x}`)
    })
  }
})

Version data entries

797 entries across 797 versions & 1 rubygems

Version Path
playbook_ui-12.36.0.pre.alpha.PLAY936momentjs1058 app/pb_kits/playbook/utilities/test/globalProps/flexShrink.test.js
playbook_ui-12.36.0.pre.alpha.PLAY936momentjs1050 app/pb_kits/playbook/utilities/test/globalProps/flexShrink.test.js
playbook_ui-12.36.0.pre.alpha.PLAY936momentjs1047 app/pb_kits/playbook/utilities/test/globalProps/flexShrink.test.js
playbook_ui-12.36.0.pre.alpha.svgiconmethods1043 app/pb_kits/playbook/utilities/test/globalProps/flexShrink.test.js
playbook_ui-12.36.0.pre.alpha.PLAY942collapsiblenav21035 app/pb_kits/playbook/utilities/test/globalProps/flexShrink.test.js
playbook_ui-12.36.0 app/pb_kits/playbook/utilities/test/globalProps/flexShrink.test.js
playbook_ui-12.35.0.pre.alpha.iconpocwebfonts1023 app/pb_kits/playbook/utilities/test/globalProps/flexShrink.test.js
playbook_ui-12.35.0 app/pb_kits/playbook/utilities/test/globalProps/flexShrink.test.js
playbook_ui-12.34.0.pre.alpha.fixdialogcloseevents1004 app/pb_kits/playbook/utilities/test/globalProps/flexShrink.test.js
playbook_ui-12.34.0.pre.alpha.fixdialogcloseevents1003 app/pb_kits/playbook/utilities/test/globalProps/flexShrink.test.js
playbook_ui-12.34.0.pre.alpha.play716popoverkitcloseonclickissue998 app/pb_kits/playbook/utilities/test/globalProps/flexShrink.test.js
playbook_ui-12.34.0 app/pb_kits/playbook/utilities/test/globalProps/flexShrink.test.js
playbook_ui-12.33.1.pre.alpha.PLAY933navkitcollapsible994 app/pb_kits/playbook/utilities/test/globalProps/flexShrink.test.js
playbook_ui-12.33.1 app/pb_kits/playbook/utilities/test/globalProps/flexShrink.test.js
playbook_ui-12.33.0.pre.alpha.PLAY905reactionbuttons982 app/pb_kits/playbook/utilities/test/globalProps/flexShrink.test.js
playbook_ui-12.33.0.pre.alpha.PLAY905reactionbuttons979 app/pb_kits/playbook/utilities/test/globalProps/flexShrink.test.js
playbook_ui-12.33.0.pre.alpha.revert2650closedialogonoutsideclick977 app/pb_kits/playbook/utilities/test/globalProps/flexShrink.test.js
playbook_ui-12.33.0 app/pb_kits/playbook/utilities/test/globalProps/flexShrink.test.js
playbook_ui-12.32.0 app/pb_kits/playbook/utilities/test/globalProps/flexShrink.test.js
playbook_ui-12.31.0.pre.alpha.hoverrails951 app/pb_kits/playbook/utilities/test/globalProps/flexShrink.test.js