From 8219d72135c007c44b61a781c95c817a8618c478 Mon Sep 17 00:00:00 2001 From: "Thiago Marcos P. Santos" Date: Sat, 20 Feb 2016 13:31:24 +0200 Subject: [node] Not all tests were calling `map.release()` Which prevents the test runner to close. --- platform/node/test/js/map.test.js | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'platform/node') diff --git a/platform/node/test/js/map.test.js b/platform/node/test/js/map.test.js index ba704977ee..48bd6fe65f 100644 --- a/platform/node/test/js/map.test.js +++ b/platform/node/test/js/map.test.js @@ -41,7 +41,8 @@ test('Map', function(t) { options.request = function() {}; t.doesNotThrow(function() { - new mbgl.Map(options); + var map = new mbgl.Map(options); + map.release(); }); t.end(); @@ -59,7 +60,8 @@ test('Map', function(t) { options.cancel = function() {}; t.doesNotThrow(function() { - new mbgl.Map(options); + var map = new mbgl.Map(options); + map.release(); }); t.end(); @@ -78,7 +80,8 @@ test('Map', function(t) { options.ratio = 1.0; t.doesNotThrow(function() { - new mbgl.Map(options); + var map = new mbgl.Map(options); + map.release(); }); t.end(); @@ -300,6 +303,7 @@ test('Map', function(t) { }); map.load(style); map.render({ zoom: 1 }, function(err, data) { + map.release(); t.ok(err, 'returns error'); t.equal(err.message, 'request error'); t.end(); @@ -314,6 +318,7 @@ test('Map', function(t) { }); map.load(style); map.render({ zoom: 1 }, function(err, data) { + map.release(); t.ok(data, 'no error'); t.end(); }); -- cgit v1.2.1