We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c75a75e commit dfd336aCopy full SHA for dfd336a
1 file changed
x-pack/test/api_integration/apis/management/ingest_pipelines/ingest_pipelines.ts
@@ -160,7 +160,7 @@ export default function({ getService }: FtrProviderContext) {
160
161
// There are some pipelines created OOTB with ES
162
// To not be dependent on these, we only confirm the pipeline we created as part of the test exists
163
- const testPipeline = body.find(({ name }) => name === PIPELINE_ID);
+ const testPipeline = body.find(({ name }: { name: string }) => name === PIPELINE_ID);
164
165
expect(testPipeline).to.eql({
166
...PIPELINE,
0 commit comments