chore: code formatting

This commit is contained in:
github-actions[bot]
2023-08-24 22:33:16 +00:00
parent f5a958ab77
commit bfeb5c452c
12 changed files with 60 additions and 60 deletions

View File

@@ -73,17 +73,17 @@ export default async function({graphql, rest}) {
return new Proxy(target[section], {
get(target, property) {
if (mocks.github.rest?.[section]?.[property]) {
return async function () {
return async function() {
console.debug(`metrics/mocking > rest.${section}.${property}`)
return mocks.github.rest[section][property]({faker}, target, null, arguments)
}
}
return Reflect.get(target, property)
}
},
})
}
return Reflect.get(target, section)
}
},
})
}