mirror of
https://github.com/elastic/kibana.git
synced 2025-04-25 02:09:32 -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
.
This commit is contained in:
parent
010d2d87ed
commit
8fe63eb07f
2 changed files with 3 additions and 3 deletions
|
@ -8,7 +8,7 @@ export default function ({ getService, loadTestFile }) {
|
||||||
const esArchiver = getService('esArchiver');
|
const esArchiver = getService('esArchiver');
|
||||||
const archive = 'uptime/full_heartbeat';
|
const archive = 'uptime/full_heartbeat';
|
||||||
|
|
||||||
describe('graphql queries', () => {
|
describe('graphql', () => {
|
||||||
before('load heartbeat data', async () => await esArchiver.load(archive));
|
before('load heartbeat data', async () => await esArchiver.load(archive));
|
||||||
after('unload heartbeat index', async () => await esArchiver.unload(archive));
|
after('unload heartbeat index', async () => await esArchiver.unload(archive));
|
||||||
// each of these test files imports a GQL query from
|
// each of these test files imports a GQL query from
|
||||||
|
|
|
@ -8,9 +8,9 @@ export default function ({ getService, loadTestFile }) {
|
||||||
const es = getService('es');
|
const es = getService('es');
|
||||||
|
|
||||||
describe('uptime', () => {
|
describe('uptime', () => {
|
||||||
beforeEach(() =>
|
before(() =>
|
||||||
es.indices.delete({
|
es.indices.delete({
|
||||||
index: 'heartbeat',
|
index: 'heartbeat*',
|
||||||
ignore: [404],
|
ignore: [404],
|
||||||
}));
|
}));
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue