Skip to content

Commit

Permalink
fix order of Lens tests (#120460)
Browse files Browse the repository at this point in the history
  • Loading branch information
flash1293 authored Dec 6, 2021
1 parent 36d62f5 commit 55e132b
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions x-pack/test/functional/apps/lens/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,16 @@ export default function ({ getService, loadTestFile, getPageObjects }: FtrProvid
loadTestFile(require.resolve('./persistent_context'));
});

describe('', function () {
this.tags(['ciGroup16', 'skipFirefox']);

loadTestFile(require.resolve('./add_to_dashboard'));
loadTestFile(require.resolve('./table_dashboard'));
loadTestFile(require.resolve('./table'));
loadTestFile(require.resolve('./runtime_fields'));
loadTestFile(require.resolve('./dashboard'));
});

describe('', function () {
this.tags(['ciGroup4', 'skipFirefox']);

Expand All @@ -66,15 +76,5 @@ export default function ({ getService, loadTestFile, getPageObjects }: FtrProvid
// has to be last one in the suite because it overrides saved objects
loadTestFile(require.resolve('./rollup'));
});

describe('', function () {
this.tags(['ciGroup16', 'skipFirefox']);

loadTestFile(require.resolve('./add_to_dashboard'));
loadTestFile(require.resolve('./table_dashboard'));
loadTestFile(require.resolve('./table'));
loadTestFile(require.resolve('./runtime_fields'));
loadTestFile(require.resolve('./dashboard'));
});
});
}

0 comments on commit 55e132b

Please sign in to comment.