Skip to content

Commit

Permalink
[ML] Unskips data frame analytics functional tests (#163377)
Browse files Browse the repository at this point in the history
## Summary

Unskips the data frame analytics tests that were fixed in
#163343 and skipped in
#163220 and
#163338

### 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
peteharverson authored Aug 8, 2023
1 parent c8a82b2 commit f4e62c1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -184,8 +184,7 @@ export default function ({ getService }: FtrProviderContext) {
];

for (const testData of testDataList) {
// FLAKY: https://github.com/elastic/kibana/issues/163220
describe.skip(`${testData.suiteTitle}`, function () {
describe(`${testData.suiteTitle}`, function () {
after(async () => {
await ml.api.deleteIndices(testData.destinationIndex);
await ml.testResources.deleteIndexPatternByTitle(testData.destinationIndex);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -189,8 +189,7 @@ export default function ({ getService }: FtrProviderContext) {
];

for (const testData of testDataList) {
// FAILED ES PROMOTION: https://github.com/elastic/kibana/issues/163338
describe.skip(`${testData.suiteTitle}`, function () {
describe(`${testData.suiteTitle}`, function () {
after(async () => {
await ml.api.deleteIndices(testData.destinationIndex);
await ml.testResources.deleteIndexPatternByTitle(testData.destinationIndex);
Expand Down

0 comments on commit f4e62c1

Please sign in to comment.