Skip to content

Commit

Permalink
[Response Ops] Fix Task Manager Remove Types Flaky Test (#201728)
Browse files Browse the repository at this point in the history
## Summary

Issue: #200154

Fixes flaky task manager remove types test by following the guidance
here: #161882

### Checklist
- [x] [Unit or functional
tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html)
were updated or added to match the most common scenarios
  • Loading branch information
JiaweiWu authored Dec 2, 2024
1 parent 35fb69e commit 7f8812c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 234 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,9 @@
"type": "doc",
"value": {
"id": "task:ce7e1250-3322-11eb-94c1-db6995e83f6b",
"index": ".kibana_task_manager_1",
"index": ".kibana_task_manager",
"source": {
"migrationVersion": {
"task": "7.6.0"
},
"typeMigrationVersion": "7.6.0",
"references": [
],
"task": {
Expand All @@ -33,11 +31,9 @@
"type": "doc",
"value": {
"id": "task:be7e1250-3322-11eb-94c1-db6995e83f6a",
"index": ".kibana_task_manager_1",
"index": ".kibana_task_manager",
"source": {
"migrationVersion": {
"task": "7.6.0"
},
"typeMigrationVersion": "7.6.0",
"references": [
],
"task": {
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,7 @@ export default function ({ getService }: FtrProviderContext) {
const UNREGISTERED_TASK_TYPE_ID = 'ce7e1250-3322-11eb-94c1-db6995e83f6b';
const REMOVED_TASK_TYPE_ID = 'be7e1250-3322-11eb-94c1-db6995e83f6a';

// FLAKY: https://github.com/elastic/kibana/issues/200154
describe.skip('not registered task types', () => {
describe('not registered task types', () => {
before(async () => {
await esArchiver.load('x-pack/test/functional/es_archives/task_manager_removed_types');
});
Expand Down

0 comments on commit 7f8812c

Please sign in to comment.