Skip to content

Commit

Permalink
Skip flaky es_ui_shared/request tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
cjcenizal committed Aug 11, 2019
1 parent 060d998 commit 3773371
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/plugins/es_ui_shared/public/request/request.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,12 @@ const testHook = (callback) => {
const wait = async wait =>
new Promise(resolve => setTimeout(resolve, wait || 1));

describe('request lib', () => {
// FLAKY:
// - https://github.com/elastic/kibana/issues/42561
// - https://github.com/elastic/kibana/issues/42562
// - https://github.com/elastic/kibana/issues/42563
// - https://github.com/elastic/kibana/issues/42225
describe.skip('request lib', () => {
const successRequest = { path: '/success', method: 'post', body: {} };
const errorRequest = { path: '/error', method: 'post', body: {} };
const successResponse = { statusCode: 200, data: { message: 'Success message' } };
Expand Down

0 comments on commit 3773371

Please sign in to comment.