Sha256: 663efe19b5cb96d6000f809375ae8f84e9b604dc2d5f49a9e434cc4ec7490246
Contents?: true
Size: 768 Bytes
Versions: 23
Compression:
Stored size: 768 Bytes
Contents
import { testActionSnapshotWithFixtures } from 'react-redux-test-utils'; import { fetchAccountsStatus, startAccountStatusPolling, stopAccountStatusPolling, restartProcess, } from '../AccountListActions'; import { pollingProcessID } from '../AccountList.fixtures'; import { accountID, activeTab } from '../../Dashboard/Dashboard.fixtures'; const fixtures = { 'should fetchAccountsStatus': () => fetchAccountsStatus(), 'should startAccountStatusPolling': () => startAccountStatusPolling(pollingProcessID), 'should stopAccountStatusPolling': () => stopAccountStatusPolling(pollingProcessID), 'should restartProcess': () => restartProcess(accountID, activeTab), }; describe('AccountList actions', () => testActionSnapshotWithFixtures(fixtures));
Version data entries
23 entries across 23 versions & 2 rubygems