import React from 'react'; import { IntegrationTestHelper } from 'react-redux-test-utils'; import Dashboard, { reducers } from '../index'; import { accountID } from '../Dashboard.fixtures'; describe('Dashboard integration test', () => { it('should flow', async () => { const integrationTestHelper = new IntegrationTestHelper(reducers); const component = integrationTestHelper.mount( ); component.update(); /** Create a Flow test */ }); });