You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pluginConfig.commentTemplate='Released {{version}} with tag {{gitTag}}';
86
86
87
-
awaitsuccess(pluginConfig,context);
87
+
awaitaddJiraIssueComment(pluginConfig,context);
88
88
89
89
expect(mockJiraClient.addComment).toHaveBeenCalledWith('ABC-123','Released 1.0.0 with tag v1.0.0');
90
90
});
@@ -94,7 +94,7 @@ describe('success', () => {
94
94
deleteprocess.env.JIRA_EMAIL;
95
95
deleteprocess.env.JIRA_TOKEN;
96
96
97
-
awaitsuccess(pluginConfig,context);
97
+
awaitaddJiraIssueComment(pluginConfig,context);
98
98
99
99
expect(mockLogger.error).toHaveBeenCalledWith('JIRA configuration is missing. Please set JIRA_HOST, JIRA_EMAIL, and JIRA_TOKEN environment variables.');
0 commit comments