Skip to content

Commit aa3a698

Browse files
committed
increased timeout for two fillValue tests
1 parent fbb5502 commit aa3a698

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/geotiff.spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -656,7 +656,7 @@ describe('fillValue', async () => {
656656
expect(band).to.have.lengthOf(1);
657657
expect(band).to.deep.equal(new Uint16Array([42]));
658658
}
659-
});
659+
}).timeout(4000);
660660

661661
it('should fill areas in overview tiles outside the image extent (below)', async () => {
662662
const tiff = await GeoTIFF.fromSource(createSource('cog.tiff'));
@@ -667,7 +667,7 @@ describe('fillValue', async () => {
667667
expect(band).to.have.lengthOf(1);
668668
expect(band).to.deep.equal(new Uint16Array([42]));
669669
}
670-
});
670+
}).timeout(4000);
671671
});
672672

673673
describe('64 bit tests', () => {

0 commit comments

Comments
 (0)