Skip to content

Commit 0e2a108

Browse files
committed
#RI-6214 - Migrate e2e/it workflows from CircleCI to Github Actions
1 parent a2685be commit 0e2a108

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

redisinsight/api/src/modules/cli/services/cli-analytics/cli-analytics.service.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ describe('CliAnalyticsService', () => {
9999
it('should not fail and should not emit when there is no data', () => {
100100
service.sendIndexInfoEvent(databaseId, null);
101101

102-
expect(sendEventMethod).toHaveBeenCalled();
102+
expect(sendEventMethod).not.toHaveBeenCalled();
103103
});
104104
});
105105

redisinsight/api/test/api/cli/POST-databases-id-cli-uuid-send_cluster_command.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ describe('POST /databases/:instanceId/cli/:uuid/send-cluster-command', () => {
9595
},
9696
responseSchema,
9797
checkFn: async ({ body }) => {
98-
expect(body.response).to.have.string('constants.TEST_STRING_VALUE_1')
98+
expect(body.response).to.have.string(constants.TEST_STRING_VALUE_1)
9999
}
100100
},
101101
{

0 commit comments

Comments
 (0)