import React from 'react'; import { IntegrationTestHelper } from '@theforeman/test'; 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 */ }); });