Files
metrics/tests/mocks/api/github/graphql/followup.repository.collaborators.mjs
github-actions[bot] 4c98629bbc chore: code formatting
2022-04-23 23:18:43 +00:00

12 lines
309 B
JavaScript

/**Mocked data */
export default function({faker, query, login = faker.internet.userName()}) {
console.debug("metrics/compute/mocks > mocking graphql api result > followup/repository/collaborators")
return ({
repository: {
collaborators: {
nodes: ["github-user"],
},
},
})
}