Unskips tests related to no_shard_available failures (#161109)

Closes
#155723,#155846,#156045,#156041,#156074,#156130,#156151,#156739,#157673,#156422,#156998,#156922,#156921,#157452,#158366,#158586,#158711

## Summary

Issue was resolved by PR #160584. This PR unskips saved object tests
documented as skipped in #158918.

### Testing
Flaky test runner:
https://buildkite.com/elastic/kibana-flaky-test-suite-runner/builds/2543
This commit is contained in:
Jeramy Soucy 2023-07-07 11:34:47 -04:00 committed by GitHub
parent 52eb488692
commit 4fc4ded06b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 12 deletions

View file

@ -17,10 +17,7 @@ export default function getSpaceTestSuite({ getService }: FtrProviderContext) {
const { getTest, createExpectResults, createExpectNotFoundResult, nonExistantSpaceId } =
getTestSuiteFactory(esArchiver, supertestWithoutAuth);
// Failing: See https://github.com/elastic/kibana/issues/155723, https://github.com/elastic/kibana/issues/156422
// Also, https://github.com/elastic/kibana/issues/158918
// esArchiver fails with no_shard_available_action_exception after deleting indexes
describe.skip('get', () => {
describe('get', () => {
// valid spaces
[
{

View file

@ -17,10 +17,7 @@ export default function updateSpaceTestSuite({ getService }: FtrProviderContext)
const { updateTest, expectAlreadyExistsResult, expectDefaultSpaceResult, expectNotFound } =
updateTestSuiteFactory(esArchiver, supertestWithoutAuth);
// FLAKY: https://github.com/elastic/kibana/issues/156130, https://github.com/elastic/kibana/issues/156074
// Also, https://github.com/elastic/kibana/issues/158918
// esArchiver fails with no_shard_available_action_exception after deleting indexes
describe.skip('update', () => {
describe('update', () => {
[
{
spaceId: SPACES.DEFAULT.spaceId,

View file

@ -183,10 +183,7 @@ export default function ({ getService }: FtrProviderContext) {
return createTestDefinitions(testCases, false);
};
// FLAKY: https://github.com/elastic/kibana/issues/156739, https://github.com/elastic/kibana/issues/157673
// Also, https://github.com/elastic/kibana/issues/158918
// esArchiver fails with no_shard_available_action_exception after deleting indexes
describe.skip('_update_objects_spaces', () => {
describe('_update_objects_spaces', () => {
getTestScenarios().spaces.forEach(({ spaceId }) => {
const tests = createSinglePartTests(spaceId);
addTests(`targeting the ${spaceId} space`, { spaceId, tests });