Skip to content

Commit

Permalink
Fix readdir typo
Browse files Browse the repository at this point in the history
  • Loading branch information
FdelMazo committed Mar 23, 2024
1 parent f141b41 commit 185ebbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/siuparser.test.js
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@ import { parseSIU } from "../src/siuparser";

const directoryPath = path.dirname(__filename);
const siusNames = fs
.readdirSync(path.join(directoryPath), "siu-json")
.readdirSync(path.join(directoryPath, "siu-json"))
.map((f) => path.parse(f).name);

const sius = siusNames.map((siuName) => {

2 comments on commit 185ebbf

@lopezac
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Gracias @FdelMazo disculpa por los dolores de cabeza que te di con este typo

@FdelMazo
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sos una máquina Axel, no pasa nada.

Please sign in to comment.