summaryrefslogtreecommitdiff
path: root/platform/node
diff options
context:
space:
mode:
Diffstat (limited to 'platform/node')
-rw-r--r--platform/node/test/js/map.test.js11
1 files changed, 8 insertions, 3 deletions
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();
});