mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
* Attempt to fix issue causing flaky behavior in uptime API tests.
* run x-pack-intake group 20 times to test flakiness
* Revert "run x-pack-intake group 20 times to test flakiness"
This reverts commit ad2e8c7003
.
20 lines
578 B
JavaScript
20 lines
578 B
JavaScript
/*
|
|
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
|
* or more contributor license agreements. Licensed under the Elastic License;
|
|
* you may not use this file except in compliance with the Elastic License.
|
|
*/
|
|
|
|
export default function ({ getService, loadTestFile }) {
|
|
const es = getService('es');
|
|
|
|
describe('uptime', () => {
|
|
before(() =>
|
|
es.indices.delete({
|
|
index: 'heartbeat*',
|
|
ignore: [404],
|
|
}));
|
|
|
|
loadTestFile(require.resolve('./get_all_pings'));
|
|
loadTestFile(require.resolve('./graphql'));
|
|
});
|
|
}
|