aboutsummaryrefslogtreecommitdiff
path: root/test/scripts
diff options
context:
space:
mode:
authorST-DDT <[email protected]>2023-10-08 16:49:30 +0200
committerGitHub <[email protected]>2023-10-08 16:49:30 +0200
commitf1b44894edf2de88133ed40ac014499884ede7ba (patch)
tree3837333d17ec5c8f1fb9643379f9307ffc43bde8 /test/scripts
parent7c081596f941c484b12331eedc8a5926e1fdb07b (diff)
downloadfaker-f1b44894edf2de88133ed40ac014499884ede7ba.tar.xz
faker-f1b44894edf2de88133ed40ac014499884ede7ba.zip
infra(unicorn): no-console-spaces (#2447)
Diffstat (limited to 'test/scripts')
-rw-r--r--test/scripts/apidoc/signature.debug.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/scripts/apidoc/signature.debug.ts b/test/scripts/apidoc/signature.debug.ts
index 347b8235..a9ec8fd0 100644
--- a/test/scripts/apidoc/signature.debug.ts
+++ b/test/scripts/apidoc/signature.debug.ts
@@ -13,9 +13,9 @@ const methods = loadExampleMethods();
initMarkdownRenderer()
.then(() => {
Object.entries(methods).forEach(([name, method]) => {
- console.log('Analyzing: ', name);
+ console.log('Analyzing:', name);
const result = analyzeSignature(method, '', method.name);
- console.log('Result: ', result);
+ console.log('Result:', result);
});
})
.catch(console.error);