We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e28d621 commit 4935e4eCopy full SHA for 4935e4e
test/copy.test.js
@@ -201,7 +201,12 @@ test('tilelive copy: list auto', function(t) {
201
});
202
203
test('tilelive copy: missing liststream', function(t) {
204
- var src = 'tilejson+http://api.mapbox.com/v3/mapbox.world-bright.json';
+ var src = new Timedsource({});
205
+ src.flag = false;
206
+ src.close = function(callback) {
207
+ this.flag = true;
208
+ callback();
209
+ };
210
var dst = path.join(tmp, crypto.randomBytes(12).toString('hex') + '.tilelivecopy_liststream.mbtiles');
211
var options = {};
212
options.type = 'list';
0 commit comments