Skip to content

Commit

Permalink
Unskip tests
Browse files Browse the repository at this point in the history
  • Loading branch information
afharo committed Dec 17, 2024
1 parent e0dee3a commit f3b9510
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -770,10 +770,9 @@ export const runActionTestSuite = ({
});
});

// Reindex doesn't return any errors on it's own, so we have to test
// Reindex doesn't return any errors on its own, so we have to test
// together with waitForReindexTask
// Failing: See https://github.com/elastic/kibana/issues/166190
describe.skip('reindex & waitForReindexTask', () => {
describe('reindex & waitForReindexTask', () => {
it('resolves right when reindex succeeds without reindex script', async () => {
const res = (await reindex({
client,
Expand Down Expand Up @@ -1444,8 +1443,7 @@ export const runActionTestSuite = ({
});
});

// FLAKY: https://github.com/elastic/kibana/issues/166199
describe.skip('waitForPickupUpdatedMappingsTask', () => {
describe('waitForPickupUpdatedMappingsTask', () => {
it('rejects if there are failures', async () => {
const res = (await pickupUpdatedMappings(
client,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,7 @@ async function updateRoutingAllocations(
});
}

// Failing ES promotion: https://github.com/elastic/kibana/issues/158318
describe.skip('incompatible_cluster_routing_allocation', () => {
describe('incompatible_cluster_routing_allocation', () => {
let client: ElasticsearchClient;
let root: Root;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,7 @@ function createRoot({ logFileName, hosts }: RootConfig) {
});
}

// Failing ES promotion: https://github.com/elastic/kibana/issues/167676
describe.skip('migration v2', () => {
describe('migration v2', () => {
let esServer: TestElasticsearchUtils;
let root: Root;
const migratedIndexAlias = `.kibana_${pkg.version}`;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,7 @@ import { getFips } from 'crypto';

const logFilePath = join(__dirname, 'read_batch_size.log');

// Failing ES promotion: https://github.com/elastic/kibana/issues/163254
// Failing ES promotion: https://github.com/elastic/kibana/issues/163255
describe.skip('migration v2 - read batch size', () => {
describe('migration v2 - read batch size', () => {
let esServer: TestElasticsearchUtils;
let root: Root;
let logs: string;
Expand Down

0 comments on commit f3b9510

Please sign in to comment.