diff --git a/e2e/autofix-test.js b/e2e/autofix-test.js index 1d762fa8..e659b2d9 100644 --- a/e2e/autofix-test.js +++ b/e2e/autofix-test.js @@ -25,7 +25,8 @@ function retrieveParams(subpath) { function compareTextFiles(file1Path, file2Path) { const file1Content = fs.readFileSync(file1Path, 'utf-8') const file2Content = fs.readFileSync(file2Path, 'utf-8') - + console.log('file1Content :>> ', file1Content); + console.log('file2Content :>> ', file2Content); return file1Content === file2Content }