Skip to content

Commit

Permalink
chore: remove unneeded console log calls from test
Browse files Browse the repository at this point in the history
  • Loading branch information
G-Rath committed Sep 22, 2021
1 parent a5e89de commit 55adacc
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions src/rules/__tests__/detectJestVersion.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const runNodeScript = (cwd: string, script: string) => {
};

const runDetectJestVersion = (cwd: string) => {
const out = runNodeScript(
return runNodeScript(
cwd,
`
try {
Expand All @@ -35,12 +35,6 @@ const runDetectJestVersion = (cwd: string) => {
}
`,
);

console.log('status:', out.status);
console.log('stdout:', out.stdout);
console.log('stderr:', out.stderr);

return out;
};

/**
Expand Down

0 comments on commit 55adacc

Please sign in to comment.