Sha256: 7214dd593ab35a6fdf5c8c8536b15261657785bd2b94abdf493bf8eb8a0afff9
Contents?: true
Size: 896 Bytes
Versions: 797
Compression:
Stored size: 896 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 }} flexGrow={x} text="Hi" /> ) const kit = screen.getByTestId(testId) expect(kit).toHaveClass(`flex_grow_${x}`) SCREEN_SIZES.forEach((size) => { const testId = `${testSubject}-${x}-${size}` render( <Body data={{ testid: testId }} flexGrow={{ [size]: x }} text="Hi" /> ) const kit = screen.getByTestId(testId) expect(kit).toHaveClass(`flex_grow_${size}_${x}`) }) } })
Version data entries
797 entries across 797 versions & 1 rubygems