Skip to content

Commit

Permalink
[7.13] [Metrics UI] Unskip Home Page Functional Test (#98085) (#98976)
Browse files Browse the repository at this point in the history
* [Metrics UI] Unskip Home Page Functional Test (#98085)

Co-authored-by: Kibana Machine <[email protected]>

* Removing metric annomolies

Co-authored-by: Kibana Machine <[email protected]>
  • Loading branch information
simianhacker and kibanamachine authored Apr 30, 2021
1 parent db33e62 commit 8c9c705
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 11 deletions.
3 changes: 1 addition & 2 deletions x-pack/test/functional/apps/infra/home_page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => {
const esArchiver = getService('esArchiver');
const pageObjects = getPageObjects(['common', 'infraHome']);

// FLAKY: https://github.com/elastic/kibana/issues/75724
describe.skip('Home page', function () {
describe('Home page', function () {
this.tags('includeFirefox');
before(async () => {
await esArchiver.load('empty_kibana');
Expand Down
19 changes: 11 additions & 8 deletions x-pack/test/functional/apps/infra/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,18 @@
import { FtrProviderContext } from '../../ftr_provider_context';

export default ({ loadTestFile }: FtrProviderContext) => {
describe('InfraOps app', function () {
describe('InfraOps App', function () {
this.tags('ciGroup7');

loadTestFile(require.resolve('./home_page'));
loadTestFile(require.resolve('./feature_controls'));
loadTestFile(require.resolve('./log_entry_categories_tab'));
loadTestFile(require.resolve('./log_entry_rate_tab'));
loadTestFile(require.resolve('./logs_source_configuration'));
loadTestFile(require.resolve('./metrics_source_configuration'));
loadTestFile(require.resolve('./link_to'));
describe('Metrics UI', function () {
loadTestFile(require.resolve('./home_page'));
loadTestFile(require.resolve('./metrics_source_configuration'));
});
describe('Logs UI', function () {
loadTestFile(require.resolve('./log_entry_categories_tab'));
loadTestFile(require.resolve('./log_entry_rate_tab'));
loadTestFile(require.resolve('./logs_source_configuration'));
loadTestFile(require.resolve('./link_to'));
});
});
};
2 changes: 1 addition & 1 deletion x-pack/test/functional/apps/infra/link_to.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => {

const traceId = '433b4651687e18be2c6c8e3b11f53d09';

describe('Infra link-to', function () {
describe('link-to Logs', function () {
it('redirects to the logs app and parses URL search params correctly', async () => {
const location = {
hash: '',
Expand Down

0 comments on commit 8c9c705

Please sign in to comment.