Sha256: 99ed8e8ec827c4375ce412ed2a7fc51938767eeb65bb54620907dc200d9e2579
Contents?: true
Size: 727 Bytes
Versions: 1031
Compression:
Stored size: 727 Bytes
Contents
import React from 'react' import { render, screen } from '../utilities/test-utils' import Body from './_body' test('returns namespaced class name', () => { render( <Body data={{ testid: 'primary-test' }} text="Test colors" /> ) const kit = screen.getByTestId('primary-test') expect(kit).toHaveClass('pb_body_kit') }) test('with colors', () => { ['light', 'lighter', 'link', 'success', 'error'].forEach((color) => { const testId = `colors-test-${color}` render( <Body color={color} data={{ testid: testId }} text="Test colors" /> ) const kit = screen.getByTestId(testId) expect(kit).toHaveClass(`pb_body_kit_${color}`) }) })
Version data entries
1,031 entries across 1,031 versions & 1 rubygems