Sha256: 305d447585e2d0aac4e9b751b26bb655ec420c4bd0c3f0f8d82cb45aa2509ad9
Contents?: true
Size: 699 Bytes
Versions: 990
Compression:
Stored size: 699 Bytes
Contents
import React from 'react' import { render, screen } from '../utilities/test-utils' import User from './_user' import Caption from "../pb_caption/_caption" test('subtitle prop adds subtitle text', () => { render( <User data={{ testid: 'test-subtitle' }} subtitle='test subtitle' /> ) expect(screen.getByTestId('test-subtitle')).toHaveTextContent('test subtitle') }) test('subtitle prop accepts a node', () => { const TestCaption = <Caption text='test caption' /> render( <User data={{ testid: 'test-subtitle-block' }} subtitle={TestCaption} /> ) expect(screen.getByTestId('test-subtitle-block')).toHaveTextContent('test caption') })
Version data entries
990 entries across 990 versions & 1 rubygems