Skip flaky custom appRoute tests

This commit is contained in:
Brian Seeders 2020-01-23 16:58:13 -05:00
parent 5a15ad123d
commit 6fcf3f0005
No known key found for this signature in database
GPG key ID: 424927146CC9A682

View file

@ -136,7 +136,8 @@ export default function({ getService, getPageObjects }: PluginFunctionalProvider
expect(await exists('renderingHeader')).to.be(false);
});
it('navigates between standard application and one with custom appRoute', async () => {
// Flaky: https://github.com/elastic/kibana/issues/55750
it.skip('navigates between standard application and one with custom appRoute', async () => {
await navigateTo('/');
await find.waitForElementStale(await findLoadingMessage());
@ -159,7 +160,8 @@ export default function({ getService, getPageObjects }: PluginFunctionalProvider
).to.eql(['/app/app_status', '/render/core', '/app/app_status']);
});
it('navigates between applications with custom appRoutes', async () => {
// Flaky: https://github.com/elastic/kibana/issues/55736
it.skip('navigates between applications with custom appRoutes', async () => {
await navigateTo('/');
await find.waitForElementStale(await findLoadingMessage());