Skip to content

Commit

Permalink
Avoid log spaming that crash the tests
Browse files Browse the repository at this point in the history
  • Loading branch information
julienduroure committed Oct 2, 2024
1 parent d1ec268 commit 0b872b6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,8 @@ describe('Exporter', function () {
];

variants.forEach(function (variant) {
const args = variant[1];
var args = variant[1];
args += ' 2>&1 > /dev/null'; // avoid str overflows
describe(blenderVersion + '_export' + variant[0], function () {
blenderSampleScenes.forEach((scene) => {
it(scene, function (done) {
Expand Down

0 comments on commit 0b872b6

Please sign in to comment.