Skip to content

Commit bc4e1e4

Browse files
committed
Fix tests failing in CI
1 parent 411309a commit bc4e1e4

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

src/plugins/custom_integrations/server/plugin.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,8 @@ describe('CustomIntegrationsPlugin', () => {
148148
{
149149
id: 'placeholder.esf',
150150
title: 'AWS Serverless Application Repository',
151-
description: 'Collect logs using AWS Lambda application available in AWS Serverless Application Repository.',
151+
description:
152+
'Collect logs using AWS Lambda application available in AWS Serverless Application Repository.',
152153
type: 'ui_link',
153154
shipper: 'placeholders',
154155
uiInternalPath:

test/api_integration/apis/custom_integration/integrations.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export default function ({ getService }: FtrProviderContext) {
2222

2323
expect(resp.body).to.be.an('array');
2424

25-
expect(resp.body.length).to.be(42);
25+
expect(resp.body.length).to.be(43);
2626

2727
// Test for sample data card
2828
expect(resp.body.findIndex((c: { id: string }) => c.id === 'sample_data_all')).to.be.above(

0 commit comments

Comments
 (0)