Skip to content

Commit

Permalink
Fixed an issue in another test.
Browse files Browse the repository at this point in the history
  • Loading branch information
gaurav committed Apr 24, 2024
1 parent 12185da commit aa34a5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/scripts/phyx2owl.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ describe(PHYX2OWL_JS, function () {
});
it('should be able to convert the entire `test/examples/correct` directory', function () {
const EXAMPLE_DIR = path.resolve(__dirname, '../examples/correct');
const jsonFilesInExamples = fs.readdirSync(EXAMPLE_DIR, 'utf8')
const jsonFilesInExamples = fs.readdirSync(EXAMPLE_DIR, { recursive: true })
.filter(fileName => fileName.toLowerCase().endsWith('.json'));

const result = child.spawnSync(PHYX2OWL_JS, [EXAMPLE_DIR, '--base-iri', 'http://example.org/phyx.js/example#'], {
Expand Down

0 comments on commit aa34a5e

Please sign in to comment.