Skip to content

Commit b196453

Browse files
committed
refactor(test): change timeout
1 parent 23c7d32 commit b196453

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

test/unit/fetcher.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,8 @@ describe('Fetcher', function () {
7070
describe('texture', function () {
7171
// Fetcher.texture always send a texture even with a false url...
7272
const url = 'https://data.geopf.fr/wmts?' +
73-
'LAYER=ORTHOIMAGERY.ORTHOPHOTOS&FORMAT=image/jpeg&SERVICE=WMTS&VERSION=1.0.0&' +
73+
'LAYER=ORTHOIMAGERY.ORTHOPHOTOS&FORMAT=image/jpeg' +
74+
'&SERVICE=WMTS&VERSION=1.0.0&' +
7475
'REQUEST=GetTile&STYLE=normal&' +
7576
'TILEMATRIXSET=PM&TILEMATRIX=2&TILEROW=1&TILECOL=1';
7677
it('should load a texture', (done) => {

test/unit/potree2.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ describe('Potree2', function () {
6262
assert.equal(potreeLayer.group.children.length, 1);
6363
done();
6464
}).catch(done);
65-
});
65+
}).timeout(5000);
6666

6767
it('postUpdate potree2 layer', function () {
6868
potreeLayer.postUpdate(context, potreeLayer);

0 commit comments

Comments
 (0)