(t *testing.T, reg *httpmock.Registry)
| 887 | } |
| 888 | |
| 889 | func mockCommentDelete(t *testing.T, reg *httpmock.Registry) { |
| 890 | reg.Register( |
| 891 | httpmock.GraphQL(`mutation CommentDelete\b`), |
| 892 | httpmock.GraphQLMutation(` |
| 893 | { "data": { "deleteIssueComment": {} } }`, |
| 894 | func(inputs map[string]any) { |
| 895 | assert.Equal(t, "id1", inputs["id"]) |
| 896 | }, |
| 897 | ), |
| 898 | ) |
| 899 | } |
no test coverage detected