Sha256: da167337c03fad01f99ce47e4f0056d7dfb5b75ab3eace573a22c582329e16f2
Contents?: true
Size: 762 Bytes
Versions: 7
Compression:
Stored size: 762 Bytes
Contents
import { testActionSnapshotWithFixtures } from '@theforeman/test'; 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
7 entries across 7 versions & 2 rubygems