| 60 | // Inspecting the posts and authors of the returned comments arrays is an easy |
| 61 | // way to validate that the right page of results was returned |
| 62 | const getPostsAndAuthors = comments => comments |
| 63 | .map( comment => comment.post + comment.author_name ); |
| 64 | |
| 65 | describe( 'integration: comments()', () => { |
| 66 | let wp; |