mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-13 01:02:58 +00:00
Bump timeouts on streetlevel loadimage-type tests
This isn't perfect but might avoid spurious test failures.
This commit is contained in:
@@ -74,7 +74,7 @@ describe('iD.serviceMapillary', function() {
|
||||
window.setTimeout(function() {
|
||||
expect(spy).to.have.been.calledOnce;
|
||||
done();
|
||||
}, 50);
|
||||
}, 200);
|
||||
});
|
||||
|
||||
it('does not load images around null island', function(done) {
|
||||
@@ -98,7 +98,7 @@ describe('iD.serviceMapillary', function() {
|
||||
window.setTimeout(function() {
|
||||
expect(spy).to.have.been.not.called;
|
||||
done();
|
||||
}, 50);
|
||||
}, 200);
|
||||
});
|
||||
|
||||
it.skip('loads multiple pages of image results', function(done) {
|
||||
@@ -139,7 +139,7 @@ describe('iD.serviceMapillary', function() {
|
||||
window.setTimeout(function() {
|
||||
expect(spy).to.have.been.calledTwice;
|
||||
done();
|
||||
}, 50);
|
||||
}, 200);
|
||||
});
|
||||
});
|
||||
|
||||
@@ -169,7 +169,7 @@ describe('iD.serviceMapillary', function() {
|
||||
window.setTimeout(function() {
|
||||
expect(spy).to.have.been.calledOnce;
|
||||
done();
|
||||
}, 50);
|
||||
}, 200);
|
||||
});
|
||||
|
||||
it('does not load signs around null island', function(done) {
|
||||
@@ -197,7 +197,7 @@ describe('iD.serviceMapillary', function() {
|
||||
window.setTimeout(function() {
|
||||
expect(spy).to.have.been.not.called;
|
||||
done();
|
||||
}, 50);
|
||||
}, 200);
|
||||
});
|
||||
|
||||
it.skip('loads multiple pages of signs results', function(done) {
|
||||
@@ -245,7 +245,7 @@ describe('iD.serviceMapillary', function() {
|
||||
window.setTimeout(function() {
|
||||
expect(spy).to.have.been.calledTwice;
|
||||
done();
|
||||
}, 50);
|
||||
}, 200);
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
@@ -105,7 +105,7 @@ describe('iD.serviceOpenstreetcam', function() {
|
||||
window.setTimeout(function() {
|
||||
expect(spy).to.have.been.calledOnce;
|
||||
done();
|
||||
}, 50);
|
||||
}, 200);
|
||||
});
|
||||
|
||||
it('does not load images around null island', function(done) {
|
||||
@@ -163,7 +163,7 @@ describe('iD.serviceOpenstreetcam', function() {
|
||||
window.setTimeout(function() {
|
||||
expect(spy).to.have.been.not.called;
|
||||
done();
|
||||
}, 50);
|
||||
}, 200);
|
||||
});
|
||||
|
||||
it.skip('loads multiple pages of image results', function(done) {
|
||||
@@ -231,7 +231,7 @@ describe('iD.serviceOpenstreetcam', function() {
|
||||
window.setTimeout(function() {
|
||||
expect(spy).to.have.been.calledTwice;
|
||||
done();
|
||||
}, 50);
|
||||
}, 200);
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
@@ -83,7 +83,7 @@ describe('iD.serviceStreetside', function() {
|
||||
window.setTimeout(function() {
|
||||
expect(spy).to.have.been.calledOnce;
|
||||
done();
|
||||
}, 50);
|
||||
}, 200);
|
||||
});
|
||||
|
||||
it('does not load bubbles around null island', function(done) {
|
||||
@@ -118,7 +118,7 @@ describe('iD.serviceStreetside', function() {
|
||||
window.setTimeout(function() {
|
||||
expect(spy).to.have.been.not.called;
|
||||
done();
|
||||
}, 50);
|
||||
}, 200);
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user