Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Search] unskip search details page tests #196638

Merged
merged 2 commits into from
Oct 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
await esDeleteAllIndices(indexName);
});

// FLAKY: https://github.com/elastic/kibana/issues/194704
describe.skip('index details page overview', () => {
describe('index details page overview', () => {
before(async () => {
await es.indices.create({ index: indexName });
await svlSearchNavigation.navigateToIndexDetailPage(indexName);
Expand All @@ -54,7 +53,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
await pageObjects.svlSearchIndexDetailPage.expectConnectionDetails();
});

it('should show api key', async () => {
it.skip('should show api key', async () => {
await pageObjects.svlApiKeys.deleteAPIKeys();
await svlSearchNavigation.navigateToIndexDetailPage(indexName);
await pageObjects.svlApiKeys.expectAPIKeyAvailable();
Expand Down