Skip to content

Commit 66db3bb

Browse files
fix integration tests for RDI after adding "status" call ro obtain version
1 parent d04ae31 commit 66db3bb

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

redisinsight/api/test/api/rdi/POST-rdi.test.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,9 @@ describe('POST /rdi', () => {
6060
nock(validInputData.url).post(`/${RdiUrl.Login}`).query(true).reply(200, {
6161
access_token: mockedAccessToken,
6262
});
63+
nock(validInputData.url).get(`/${RdiUrl.GetPipelineStatus}`).query(true).reply(200, {
64+
version: '2.17',
65+
});
6366
}
6467
},
6568
{

0 commit comments

Comments
 (0)