Sha256: 734e9cc9ec99461026255631334b9bdf5a22613782bff47f81a3979b56b6a378
Contents?: true
Size: 562 Bytes
Versions: 4
Compression:
Stored size: 562 Bytes
Contents
import React from 'react'; import { IntegrationTestHelper } from 'react-redux-test-utils'; import Dashboard from '../Dashboard'; import reducers from '../../../ForemanInventoryUploadReducers'; import { accountID } from '../Dashboard.fixtures'; describe('Dashboard integration test', () => { it('should flow', async () => { const integrationTestHelper = new IntegrationTestHelper(reducers); const component = integrationTestHelper.mount( <Dashboard accountID={accountID} /> ); component.update(); /** Create a Flow test */ }); });
Version data entries
4 entries across 4 versions & 1 rubygems