Sha256: 96440cce87984c5a3e81207799a592f571aff1a6e144c393fc3fea64238956fc
Contents?: true
Size: 564 Bytes
Versions: 22
Compression:
Stored size: 564 Bytes
Contents
import { testComponentSnapshotsWithFixtures } from 'react-redux-test-utils'; import { TASKS_DASHBOARD_AVAILABLE_QUERY_STATES } from '../../../../TasksDashboardConstants'; import ScheduledTasksCard from './ScheduledTasksCard'; const fixtures = { 'render with minimal props': {}, 'render with props': { data: 3, className: 'some-class', }, 'render selected': { query: { state: TASKS_DASHBOARD_AVAILABLE_QUERY_STATES.SCHEDULED }, }, }; describe('ScheduledTasksCard', () => testComponentSnapshotsWithFixtures(ScheduledTasksCard, fixtures));
Version data entries
22 entries across 22 versions & 1 rubygems