Sha256: 420ff67e5908017b3951b0caab359b299250df39e3a7b3776d0fcb5f8a5e7f3f
Contents?: true
Size: 1.18 KB
Versions: 1038
Compression:
Stored size: 1.18 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' // %w[block inline_block inline flex inline_flex none] test('Global Props: returns proper class name', () => { const propValues = ["block", "inline", "inline_block", "flex", "inline_flex", "none"] for(let x = 0, y = propValues.length; x < y; ++x) { const testId = `${testSubject}-${propValues[x]}` render( <Body data={{ testid: testId }} display={`${propValues[x]}`} text="Hi" /> ) const kit = screen.getByTestId(testId) expect(kit).toHaveClass(`display_${camelToSnakeCase(propValues[x])}`) SCREEN_SIZES.forEach((size) => { const testId = `${testSubject}-${propValues[x]}-${size}` render( <Body data={{ testid: testId }} display={{ [size]: propValues[x] }} text="Hi" /> ) const kit = screen.getByTestId(testId) expect(kit).toHaveClass(`display_${size}_${camelToSnakeCase(propValues[x])}`) }) } })
Version data entries
1,038 entries across 1,038 versions & 1 rubygems