Skip to content

Commit

Permalink
Remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Zherdev committed Jul 10, 2019
1 parent 6242c91 commit ad046ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion create-ava-rule.js
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ module.exports = () => {
}
},
VariableDeclarator: node => {
if (!isTestFile && avaVariableDeclaratorAsts.some(ast => console.log(JSON.stringify(espurify(node), null, 2)) || deepStrictEqual(espurify(node), ast))) {
if (!isTestFile && avaVariableDeclaratorAsts.some(ast => deepStrictEqual(espurify(node), ast))) {
isTestFile = true;
}
},
Expand Down

0 comments on commit ad046ca

Please sign in to comment.