Sha256: 13c0d5f577ed357d56582185978a69197b8175fce26d8278096049d9843b3741
Contents?: true
Size: 1.16 KB
Versions: 1038
Compression:
Stored size: 1.16 KB
Contents
import React from 'react' import { render, screen } from '../../test-utils' import Body from '../../../pb_body/_body' import { camelToSnakeCase } from '../../../utilities/text' import { SCREEN_SIZES } from '../../test-utils' const testSubject = 'body' test('Global Props: returns proper class name', () => { const propValues = ["start", "center", "end", "spaceBetween", "spaceAround", "spaceEvenly"] for(let x = 0, y = propValues.length; x < y; ++x) { const testId = `${testSubject}-${propValues[x]}` render( <Body alignContent={`${propValues[x]}`} data={{ testid: testId }} text="Hi" /> ) const kit = screen.getByTestId(testId) expect(kit).toHaveClass(`align_content_${camelToSnakeCase(propValues[x])}`) SCREEN_SIZES.forEach((size) => { const testId = `${testSubject}-${propValues[x]}-${size}` render( <Body alignContent={{ [size]: propValues[x] }} data={{ testid: testId }} text="Hi" /> ) const kit = screen.getByTestId(testId) expect(kit).toHaveClass(`align_content_${size}_${camelToSnakeCase(propValues[x])}`) }) } })
Version data entries
1,038 entries across 1,038 versions & 1 rubygems