Skip to content

Commit

Permalink
refactor(test): change timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
ftoromanoff committed Oct 4, 2024
1 parent 8e748c4 commit add66c8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion test/unit/fetcher.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@ describe('Fetcher', function () {
describe('texture', function () {
// Fetcher.texture always send a texture even with a false url...
const url = 'https://data.geopf.fr/wmts?' +
'LAYER=ORTHOIMAGERY.ORTHOPHOTOS&FORMAT=image/jpeg&SERVICE=WMTS&VERSION=1.0.0&' +
'LAYER=ORTHOIMAGERY.ORTHOPHOTOS&FORMAT=image/jpeg' +
'&SERVICE=WMTS&VERSION=1.0.0&' +
'REQUEST=GetTile&STYLE=normal&' +
'TILEMATRIXSET=PM&TILEMATRIX=2&TILEROW=1&TILECOL=1';
it('should load a texture', (done) => {
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 add66c8

Please sign in to comment.