Skip to content

Commit

Permalink
Remove debug
Browse files Browse the repository at this point in the history
  • Loading branch information
julienduroure committed Sep 11, 2023
1 parent 845e95f commit 4b924fd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -237,13 +237,13 @@ describe('Exporter', function() {
let ext = args.indexOf('--glb') === -1 ? '.gltf' : '.glb';
let outDirPath = path.resolve(OUT_PREFIX, 'scenes', outDirName);
let dstPath = path.resolve(outDirPath, `${scene}${ext}`);
/*blenderFileToGltf(blenderVersion, blenderPath, outDirPath, (error) => {
blenderFileToGltf(blenderVersion, blenderPath, outDirPath, (error) => {
if (error)
return done(error);

validateGltf(dstPath, done);
}, args);*/
validateGltf(dstPath, done); // uncomment this and comment blenderFileToGltf to not re-export all files
}, args);
//validateGltf(dstPath, done); // uncomment this and comment blenderFileToGltf to not re-export all files
});
});
});
Expand Down Expand Up @@ -1902,7 +1902,7 @@ describe('Importer / Exporter (Roundtrip)', function() {
if (fs.existsSync(gltfOptionsPath)) {
options += ' ' + fs.readFileSync(gltfOptionsPath).toString().replace(/\r?\n|\r/g, '');
}
return done(); // uncomment to not roundtrip all files
//return done(); // uncomment to not roundtrip all files
blenderRoundtripGltf(blenderVersion, gltfSrcPath, outDirPath, (error) => {
if (error)
return done(error);
Expand Down

0 comments on commit 4b924fd

Please sign in to comment.