restore upgrade assistant data test subj (#29775)

* restore upgrade assistant data test subj

* move data-test-subj to wrapping div

* remove unneeded class

* Update app.tsx

* Update app.tsx

* Update app.tsx
This commit is contained in:
Matthew Kime 2019-02-14 11:51:38 -06:00 committed by GitHub
parent dcf2a4ff93
commit 317834738e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,7 +4,7 @@
* you may not use this file except in compliance with the Elastic License.
*/
import React, { Fragment } from 'react';
import React from 'react';
import { EuiPageHeader, EuiPageHeaderSection, EuiTitle } from '@elastic/eui';
import { FormattedMessage } from '@kbn/i18n/react';
@ -13,7 +13,7 @@ import { NEXT_MAJOR_VERSION } from '../common/version';
import { UpgradeAssistantTabs } from './components/tabs';
export const RootComponent: React.StatelessComponent = () => (
<Fragment>
<div data-test-subj="upgradeAssistantRoot">
<EuiPageHeader>
<EuiPageHeaderSection>
<EuiTitle size="l">
@ -28,5 +28,5 @@ export const RootComponent: React.StatelessComponent = () => (
</EuiPageHeaderSection>
</EuiPageHeader>
<UpgradeAssistantTabs />
</Fragment>
</div>
);