Skip to content

Commit

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

Issue: elastic#200154

Fixes flaky task manager remove types test by following the guidance
here: elastic#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 and CAWilson94 committed Dec 9, 2024
1 parent c6cd428 commit 8ddaaa8
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 8ddaaa8

Please sign in to comment.