diff options
Diffstat (limited to 'test/js/map.test.js')
-rw-r--r-- | test/js/map.test.js | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/test/js/map.test.js b/test/js/map.test.js index 57283c4ddd..427cf586b7 100644 --- a/test/js/map.test.js +++ b/test/js/map.test.js @@ -132,11 +132,7 @@ test('Map', function(t) { }); }); - t.skip('accepts a JSON stylesheet', { timeout: 1000 }, function(t) { - mbgl.once('message', function(msg) { - console.log(msg); - }); - + t.test('accepts a JSON stylesheet', { timeout: 1000 }, function(t) { setup(fileSource, function(map) { t.doesNotThrow(function() { map.load(style); @@ -148,11 +144,7 @@ test('Map', function(t) { }); }); - t.skip('accepts a stringified stylesheet', { timeout: 1000 }, function(t) { - mbgl.once('message', function(msg) { - console.log(msg); - }); - + t.test('accepts a stringified stylesheet', { timeout: 1000 }, function(t) { setup(fileSource, function(map) { t.doesNotThrow(function() { map.load(JSON.stringify(style)); |