Skip to content

Commit

Permalink
Update evaluator.spec.js
Browse files Browse the repository at this point in the history
  • Loading branch information
josecfreittas authored May 11, 2022
1 parent 3bc7f0b commit 82aee19
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions evaluator.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,6 @@ const buildPath = (absolutePath, filePath) => (`${absolutePath}/${filePath}`);
describe('Evaluator', () => {
it('', () => {
const pwd = __dirname;

try {
console.log('pwd', pwd);
if (fs.existsSync(pwd)) {
console.log("Directory exists.")
} else {
console.log("Directory does not exist.")
}
} catch(e) {
console.log("An error occurred.")
}

fs.readdirSync(pwd).forEach(file => {
console.log('file:', file);
});

const evaluatorFile = buildPath(pwd, 'evaluator.js');
const jestOutputFile = buildPath(pwd, 'tests/jest-output.json');
const requirementsFile = buildPath(pwd, 'tests/requirements.json');
Expand Down

0 comments on commit 82aee19

Please sign in to comment.