Sha256: f2f5e4a8ffdb76c350f07d42eeb0873429272c716fce39ea0801819a608ddb78
Contents?: true
Size: 569 Bytes
Versions: 12
Compression:
Stored size: 569 Bytes
Contents
import { testComponentSnapshotsWithFixtures } from 'react-redux-test-utils'; import SyncTypeRadios from '../SyncTypeRadios'; const noop = () => {}; const fixtures = { 'should render': { controlLabel: 'Test radios', name: 'radios', radios: [ { label: 'A', checked: false, value: 'a', onChange: noop }, { label: 'B', checked: true, value: 'b', onChange: noop }, { label: 'C', checked: false, value: 'c', onChange: noop }, ], }, }; describe('SyncTypeRadios', () => testComponentSnapshotsWithFixtures(SyncTypeRadios, fixtures));
Version data entries
12 entries across 12 versions & 1 rubygems