Skip to content

Commit

Permalink
[UII] Fix skipped test by add logs otel template to index template ov…
Browse files Browse the repository at this point in the history
…erlaps (#194764)

## Summary

**Do not merge until ES has been promoted**

Resolves #194714. Test was skipped due to changes from latest ES build.
This PR amends the test and unskips it.
  • Loading branch information
jen-huang authored Oct 7, 2024
1 parent c44b7de commit 95d01cd
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@ export default function (providerContext: FtrProviderContext) {
const deletePackage = async (pkg: string, version: string) =>
supertest.delete(`/api/fleet/epm/packages/${pkg}/${version}`).set('kbn-xsrf', 'xxxx');

// Failing: See https://github.com/elastic/kibana/issues/194714
describe.skip('installs packages that include settings and mappings overrides', () => {
describe('installs packages that include settings and mappings overrides', () => {
skipIfNoDockerRegistry(providerContext);

before(async () => {
Expand Down Expand Up @@ -165,6 +164,10 @@ export default function (providerContext: FtrProviderContext) {
name: 'logs',
index_patterns: ['logs-*-*'],
},
{
index_patterns: ['logs-*.otel-*'],
name: 'logs-otel@template',
},
],
});
});
Expand Down

0 comments on commit 95d01cd

Please sign in to comment.