Skip to content

Commit

Permalink
test(): change timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
ftoromanoff committed Oct 2, 2024
1 parent 37fb4b4 commit 85fd6eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/unit/fetcher.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ describe('Fetcher', function () {
done();
})
.catch(done);
}).timeout(10000);
}).timeout(5000);
});

describe('multiple', function () {
Expand Down
2 changes: 1 addition & 1 deletion test/unit/potree2.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ describe('Potree2', function () {
assert.equal(potreeLayer.group.children.length, 1);
done();
}).catch(done);
});
}).timeout(5000);

it('postUpdate potree2 layer', function () {
potreeLayer.postUpdate(context, potreeLayer);
Expand Down

0 comments on commit 85fd6eb

Please sign in to comment.