summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Morris <michael.patrick.morris@gmail.com>2015-06-15 14:52:35 -0400
committerMike Morris <michael.patrick.morris@gmail.com>2015-06-15 14:52:35 -0400
commite06bf232f44e09db4c628375441586cb994cc6a1 (patch)
tree7074f4ec83b2e896bd9265a9d01439afe72f0d8b
parenta6ea979ec5dc4383b90fcf7d7c69c1718a7baf84 (diff)
downloadqtlocation-mapboxgl-e06bf232f44e09db4c628375441586cb994cc6a1.tar.gz
request coalescing fixes #114
-rw-r--r--test/js/map.test.js12
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));