Skip to content

Commit

Permalink
Fix flaky core_app integration tests (#92030) (#92190)
Browse files Browse the repository at this point in the history
* Unskip core_app integration tests

* Run the integration test 200 times

* Revert 200 execution loop

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>

Co-authored-by: Alejandro Fernández Haro <alejandro.haro@elastic.co>
  • Loading branch information
kibanamachine and afharo authored Feb 22, 2021
1 parent 95c6ce9 commit 93ca371
Showing 1 changed file with 5 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,14 @@
import * as kbnTestServer from '../../../test_helpers/kbn_server';
import { Root } from '../../root';

const { startES } = kbnTestServer.createTestServers({
adjustTimeout: (t: number) => jest.setTimeout(t),
});
let esServer: kbnTestServer.TestElasticsearchUtils;

// FLAKY: https://github.com/elastic/kibana/issues/81072
describe.skip('default route provider', () => {
describe('default route provider', () => {
let esServer: kbnTestServer.TestElasticsearchUtils;
let root: Root;

beforeAll(async () => {
const { startES } = kbnTestServer.createTestServers({
adjustTimeout: (t: number) => jest.setTimeout(t),
});
esServer = await startES();
root = kbnTestServer.createRootWithCorePlugins({
server: {
Expand Down

0 comments on commit 93ca371

Please sign in to comment.