Sha256: 82f0b7537c77829bf73b5671f804b9a7c23bd712a192935a04e65fd6327acc25
Contents?: true
Size: 1.48 KB
Versions: 1
Compression:
Stored size: 1.48 KB
Contents
import React from 'react'; import { render, screen } from '../utilities/test-utils'; import FormPill from './_form_pill'; const testId = 'formpill'; test('should render classname', () => { render( <FormPill data={{ testid: testId }} text="test" /> ) const kit = screen.getByTestId(testId) expect(kit).toHaveClass('pb_form_pill_kit_neutral none') }); test('displays text content', () => { render( <FormPill data={{ testid: testId }} text="test" /> ) const text = screen.getByText("test") expect(text).toBeInTheDocument() }); test('displays color variant', () => { render( <FormPill color={"primary"} data={{ testid: testId }} text={"test"} /> ) const kit = screen.getByTestId(testId) expect(kit).toHaveClass(`pb_form_pill_kit_primary none`) }); test('displays size variant', () => { render( <FormPill data={{ testid: testId }} size={"small"} text={"test"} /> ) const kit = screen.getByTestId('formpill') expect(kit).toHaveClass(`pb_form_pill_kit_neutral small none`) }); test('displays icon', () => { render( <FormPill data={{ testid: testId }} icon={"test"} /> ) const kit = screen.getByTestId('formpill') expect(kit).toHaveClass(`pb_form_pill_kit_neutral_icon none`) });
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
playbook_ui-14.1.0.pre.alpha.PBNTR417addcolorsupdatedefaultcolor3608 | app/pb_kits/playbook/pb_form_pill/_form_pill.test.jsx |