From ff5e3927e03095806067b053a08a8a4ab5302003 Mon Sep 17 00:00:00 2001 From: dbale-altoros Date: Wed, 20 Dec 2023 10:54:35 -0300 Subject: [PATCH] test: e2e not workin 1 --- e2e/autofix-test.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 }