Sha256: 49ebb08da850e7d82334e82bbfe284f4497fdcd921e3bac8a42c2b14cf7af6a3

Contents?: true

Size: 1.11 KB

Versions: 1038

Compression:

Stored size: 1.11 KB

Contents

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

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

const testSubject = 'body'

test('Global Props: returns proper class name', () => {
  const propValues = ["start", "center", "end", "auto", "stretch"]
  for(let x = 0, y = propValues.length; x < y; ++x) {
    const testId = `${testSubject}-${propValues[x]}`
    render(
      <Body
          data={{ testid: testId }}
          justifySelf={`${propValues[x]}`}
          text="Hi"
      />
    )
    const kit = screen.getByTestId(testId)
    expect(kit).toHaveClass(`justify_self_${camelToSnakeCase(propValues[x])}`)

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

Version data entries

1,038 entries across 1,038 versions & 1 rubygems

Version Path
playbook_ui-14.11.0.pre.rc.17 app/pb_kits/playbook/utilities/test/globalProps/justifySelf.test.js
playbook_ui-14.11.0 app/pb_kits/playbook/utilities/test/globalProps/justifySelf.test.js
playbook_ui-14.11.0.pre.rc.16 app/pb_kits/playbook/utilities/test/globalProps/justifySelf.test.js
playbook_ui-14.10.0.pre.alpha.play16825301 app/pb_kits/playbook/utilities/test/globalProps/justifySelf.test.js
playbook_ui-14.11.0.pre.rc.15 app/pb_kits/playbook/utilities/test/globalProps/justifySelf.test.js
playbook_ui-14.11.0.pre.rc.14 app/pb_kits/playbook/utilities/test/globalProps/justifySelf.test.js
playbook_ui-14.11.0.pre.rc.13 app/pb_kits/playbook/utilities/test/globalProps/justifySelf.test.js
playbook_ui-14.11.0.pre.rc.12 app/pb_kits/playbook/utilities/test/globalProps/justifySelf.test.js
playbook_ui-14.10.0.pre.alpha.PLAY1774timelinelabelstepspacing5274 app/pb_kits/playbook/utilities/test/globalProps/justifySelf.test.js
playbook_ui-14.10.0.pre.alpha.play1465attempt25272 app/pb_kits/playbook/utilities/test/globalProps/justifySelf.test.js
playbook_ui-14.10.0.pre.alpha.play16825244 app/pb_kits/playbook/utilities/test/globalProps/justifySelf.test.js
playbook_ui-14.11.0.pre.rc.11 app/pb_kits/playbook/utilities/test/globalProps/justifySelf.test.js
playbook_ui-14.11.0.pre.rc.10 app/pb_kits/playbook/utilities/test/globalProps/justifySelf.test.js
playbook_ui-14.10.0.pre.alpha.play1662cssbargraph5214 app/pb_kits/playbook/utilities/test/globalProps/justifySelf.test.js
playbook_ui-14.10.0.pre.alpha.play1662cssbargraph5213 app/pb_kits/playbook/utilities/test/globalProps/justifySelf.test.js
playbook_ui-14.10.0.pre.alpha.play1662cssbargraph5210 app/pb_kits/playbook/utilities/test/globalProps/justifySelf.test.js
playbook_ui-14.10.0.pre.alpha.play1662cssbargraph5208 app/pb_kits/playbook/utilities/test/globalProps/justifySelf.test.js
playbook_ui-14.10.0.pre.alpha.play1662cssbargraph5207 app/pb_kits/playbook/utilities/test/globalProps/justifySelf.test.js
playbook_ui-14.10.0.pre.alpha.play16825206 app/pb_kits/playbook/utilities/test/globalProps/justifySelf.test.js
playbook_ui-14.10.0.pre.alpha.play1662cssbargraph5204 app/pb_kits/playbook/utilities/test/globalProps/justifySelf.test.js