Sha256: d454807e17df385762c2852cbe5449c4aefeb7c90798e064738f49f2a46d20c4

Contents?: true

Size: 1.48 KB

Versions: 506

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_primary 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={"neutral"}
            data={{ testid: testId }}
            text={"test"}
        />
    )
    const kit = screen.getByTestId(testId)
    expect(kit).toHaveClass(`pb_form_pill_kit_neutral 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_primary small none`)
});

test('displays icon', () => {
    render(
        <FormPill            
            data={{ testid: testId }}
            icon={"test"}
        />
    )
    const kit = screen.getByTestId('formpill')
    expect(kit).toHaveClass(`pb_form_pill_kit_primary_icon none`)
});

Version data entries

506 entries across 506 versions & 1 rubygems

Version Path
playbook_ui-14.0.0.pre.alpha.updateviewcomponentgem3527 app/pb_kits/playbook/pb_form_pill/_form_pill.test.jsx
playbook_ui-14.0.0.pre.alpha.PLAY15063526 app/pb_kits/playbook/pb_form_pill/_form_pill.test.jsx
playbook_ui-14.0.0.pre.alpha.PLAY15063525 app/pb_kits/playbook/pb_form_pill/_form_pill.test.jsx
playbook_ui-14.0.0.pre.alpha.PLAY15063524 app/pb_kits/playbook/pb_form_pill/_form_pill.test.jsx
playbook_ui-14.0.0.pre.alpha.PLAY15063523 app/pb_kits/playbook/pb_form_pill/_form_pill.test.jsx
playbook_ui-14.0.0.pre.alpha.PLAY15063522 app/pb_kits/playbook/pb_form_pill/_form_pill.test.jsx
playbook_ui-14.0.0.pre.alpha.PBNTR416formpillsizes3521 app/pb_kits/playbook/pb_form_pill/_form_pill.test.jsx
playbook_ui-14.0.0.pre.alpha.PLAY15063520 app/pb_kits/playbook/pb_form_pill/_form_pill.test.jsx
playbook_ui-14.0.0.pre.alpha.PLAY14923518 app/pb_kits/playbook/pb_form_pill/_form_pill.test.jsx
playbook_ui-14.0.0.pre.alpha.PLAY15063511 app/pb_kits/playbook/pb_form_pill/_form_pill.test.jsx
playbook_ui-14.0.0.pre.alpha.PA1477timestampkit3509 app/pb_kits/playbook/pb_form_pill/_form_pill.test.jsx
playbook_ui-14.0.0.pre.alpha.PLAY14733507 app/pb_kits/playbook/pb_form_pill/_form_pill.test.jsx
playbook_ui-14.0.0.pre.alpha.PBNTR416formpillsizes3506 app/pb_kits/playbook/pb_form_pill/_form_pill.test.jsx
playbook_ui-14.0.0.pre.alpha.PA1477timestampkit3502 app/pb_kits/playbook/pb_form_pill/_form_pill.test.jsx
playbook_ui-14.0.0.pre.alpha.PBNTR415starratingform3493 app/pb_kits/playbook/pb_form_pill/_form_pill.test.jsx
playbook_ui-14.0.0.pre.alpha.PBNTR415starratingform3492 app/pb_kits/playbook/pb_form_pill/_form_pill.test.jsx
playbook_ui-14.0.0.pre.alpha.PLAY1475bumpaxecoredependency3483 app/pb_kits/playbook/pb_form_pill/_form_pill.test.jsx
playbook_ui-14.0.0.pre.alpha.PLAY14733479 app/pb_kits/playbook/pb_form_pill/_form_pill.test.jsx
playbook_ui-14.0.0.pre.alpha.dependabotnpmandyarnreactjoyride2823478 app/pb_kits/playbook/pb_form_pill/_form_pill.test.jsx
playbook_ui-14.0.0.pre.alpha.PLAY14113475 app/pb_kits/playbook/pb_form_pill/_form_pill.test.jsx