(t *testing.T, reg *httpmock.Registry)
| 872 | } |
| 873 | |
| 874 | func mockCommentDelete(t *testing.T, reg *httpmock.Registry) { |
| 875 | reg.Register( |
| 876 | httpmock.GraphQL(`mutation CommentDelete\b`), |
| 877 | httpmock.GraphQLMutation(` |
| 878 | { "data": { "deleteIssueComment": {} } }`, |
| 879 | func(inputs map[string]any) { |
| 880 | assert.Equal(t, "id1", inputs["id"]) |
| 881 | }, |
| 882 | ), |
| 883 | ) |
| 884 | } |
no test coverage detected