Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 uid=33(www-data) gid=33(www-data) groups=33(www-data) Safe-mode: OFF (not secure) /var/www/html/wincloud_gateway/node_modules/reactstrap/src/__tests__/ drwxr-xr-x | |
| Viewing file: Select action/file-type: import React from 'react';
import { shallow } from 'enzyme';
import { ButtonGroup } from '../';
describe('ButtonGroup', () => {
it('should render children', () => {
const wrapper = shallow(<ButtonGroup>Ello world</ButtonGroup>);
expect(wrapper.text()).toBe('Ello world');
expect(wrapper.hasClass('btn-group')).toBe(true);
});
it('should render different size classes', () => {
const small = shallow(<ButtonGroup size="sm">Small Button</ButtonGroup>);
const large = shallow(<ButtonGroup size="lg">Large Button</ButtonGroup>);
expect(small.hasClass('btn-group-sm')).toBe(true);
expect(large.hasClass('btn-group-lg')).toBe(true);
});
it('should render vertical class', () => {
const wrapper = shallow(<ButtonGroup vertical>Vertical Group</ButtonGroup>);
expect(wrapper.hasClass('btn-group-vertical')).toBe(true);
});
it('should render custom tag', () => {
const wrapper = shallow(<ButtonGroup tag="main">Yo!</ButtonGroup>);
expect(wrapper.text()).toBe('Yo!');
expect(wrapper.hasClass('btn-group')).toBe(true);
expect(wrapper.type()).toBe('main');
});
});
|
:: Command execute :: | |
--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0279 ]-- |