Skip to content

Commit 5fdfcd5

Browse files
author
Alex Zherdev
committed
Remove console.log
1 parent f149dfd commit 5fdfcd5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

create-ava-rule.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ module.exports = () => {
193193
}
194194
},
195195
VariableDeclarator: node => {
196-
if (!isTestFile && avaVariableDeclaratorAsts.some(ast => console.log(JSON.stringify(espurify(node), null, 2)) || deepStrictEqual(espurify(node), ast))) {
196+
if (!isTestFile && avaVariableDeclaratorAsts.some(ast => deepStrictEqual(espurify(node), ast))) {
197197
isTestFile = true;
198198
}
199199
},

0 commit comments

Comments
 (0)