Sha256: a3ec1fa3803b84d63fbad20c788ac8126230583e156b50854d7d5a61cc86d924
Contents?: true
Size: 1.19 KB
Versions: 482
Compression:
Stored size: 1.19 KB
Contents
import React from 'react' import { render, screen } from '../utilities/test-utils' import { Button, ButtonToolbar } from 'playbook-ui' test('default test', () => { render( <ButtonToolbar data={{ testid: 'default-test' }} > <Button data={{ testid: 'child-button' }} text="Test" /> </ButtonToolbar> ) const kit = screen.getByTestId('default-test') const child = screen.getByTestId('child-button') expect(kit).toHaveClass('pb_button_toolbar_kit_horizontal_primary') expect(kit).toContainElement(child) expect(child).toHaveClass('pb_button_kit_primary_inline_enabled') }) test('variant and orientation props', () => { render( <ButtonToolbar data={{ testid: 'second-test' }} orientation="vertical" variant="secondary" > <Button data={{ testid: 'child-button' }} text="Create" variant="secondary" /> </ButtonToolbar> ) const kit = screen.getByTestId('second-test') const child = screen.getByTestId('child-button') expect(kit).toHaveClass('pb_button_toolbar_kit_vertical_secondary') expect(child).toHaveClass('pb_button_kit_secondary_inline_enabled') })
Version data entries
482 entries across 482 versions & 1 rubygems