Skip to content

Commit

Permalink
Unskips migration tests now that elastic search is fixed (#101682)
Browse files Browse the repository at this point in the history
## Summary

Unskips signal migration tests now that elastic search is fixed get alias bug

ES ticket about get alias bug:
elastic/elasticsearch#72953

Tickets related that should be fixed now:
#99915
#100305

### 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
FrankHassanabad authored and semd committed Jun 10, 2021
1 parent d9da655 commit c7eb4ce
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 @@ -47,8 +47,7 @@ export default ({ getService }: FtrProviderContext): void => {
const supertest = getService('supertest');
const supertestWithoutAuth = getService('supertestWithoutAuth');

// FAILING ES PROMOTION: https://github.com/elastic/kibana/issues/99915
describe.skip('Finalizing signals migrations', () => {
describe('Finalizing signals migrations', () => {
let legacySignalsIndexName: string;
let outdatedSignalsIndexName: string;
let createdMigrations: CreateResponse[];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@ export default ({ getService }: FtrProviderContext): void => {
const supertest = getService('supertest');
const supertestWithoutAuth = getService('supertestWithoutAuth');

// FAILING ES PROMOTION: https://github.com/elastic/kibana/issues/99915
describe.skip('Signals migration status', () => {
describe('Signals migration status', () => {
let legacySignalsIndexName: string;
beforeEach(async () => {
await createSignalsIndex(supertest);
Expand Down

0 comments on commit c7eb4ce

Please sign in to comment.