mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2024-12-27 11:25:24 +01:00
Removed old comments.
This commit is contained in:
parent
7a60df370e
commit
9e82599464
4 changed files with 1 additions and 102 deletions
|
@ -3,10 +3,8 @@ var uuid = require('uuid/v1');
|
||||||
var geoServer = require("../geojson-server");
|
var geoServer = require("../geojson-server");
|
||||||
|
|
||||||
|
|
||||||
// This should be sync...
|
|
||||||
var geoserver = geoServer.listen(9002);
|
var geoserver = geoServer.listen(9002);
|
||||||
|
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
getStyleUrl: function(styles) {
|
getStyleUrl: function(styles) {
|
||||||
var port = geoserver.address().port;
|
var port = geoserver.address().port;
|
||||||
|
|
|
@ -97,99 +97,4 @@ describe.skip("history", function() {
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
// /**
|
|
||||||
// * See <https://github.com/webdriverio/webdriverio/issues/1126>
|
|
||||||
// */
|
|
||||||
// it("undo/redo", function() {
|
|
||||||
// var styleObj;
|
|
||||||
|
|
||||||
// browser.debug();
|
|
||||||
|
|
||||||
// browser.url(helper.config.baseUrl+"?debug&style="+helper.getStyleUrl([
|
|
||||||
// "geojson:example"
|
|
||||||
// ]));
|
|
||||||
// browser.waitForExist(".maputnik-toolbar-link");
|
|
||||||
|
|
||||||
// helper.modalCommands.addLayer.open(browser);
|
|
||||||
|
|
||||||
// styleObj = helper.helper.getStyleStore(browser);
|
|
||||||
// assert.deepEqual(styleObj.layers, []);
|
|
||||||
|
|
||||||
// helper.modalCommands.addLayer.fill(browser, {
|
|
||||||
// id: "step 1",
|
|
||||||
// type: "background"
|
|
||||||
// })
|
|
||||||
|
|
||||||
// styleObj = helper.helper.getStyleStore(browser);
|
|
||||||
// assert.deepEqual(styleObj.layers, [
|
|
||||||
// {
|
|
||||||
// "id": "step 1",
|
|
||||||
// "type": 'background'
|
|
||||||
// }
|
|
||||||
// ]);
|
|
||||||
|
|
||||||
// helper.modalCommands.addLayer.open(browser);
|
|
||||||
// helper.modalCommands.addLayer.fill(browser, {
|
|
||||||
// id: "step 2",
|
|
||||||
// type: "background"
|
|
||||||
// })
|
|
||||||
|
|
||||||
// styleObj = helper.helper.getStyleStore(browser);
|
|
||||||
// assert.deepEqual(styleObj.layers, [
|
|
||||||
// {
|
|
||||||
// "id": "step 1",
|
|
||||||
// "type": 'background'
|
|
||||||
// },
|
|
||||||
// {
|
|
||||||
// "id": "step 2",
|
|
||||||
// "type": 'background'
|
|
||||||
// }
|
|
||||||
// ]);
|
|
||||||
|
|
||||||
// browser
|
|
||||||
// .keys(['Control', 'z'])
|
|
||||||
// .keys(['Control']);
|
|
||||||
// styleObj = helper.helper.getStyleStore(browser);
|
|
||||||
// assert.deepEqual(styleObj.layers, [
|
|
||||||
// {
|
|
||||||
// "id": "step 1",
|
|
||||||
// "type": 'background'
|
|
||||||
// }
|
|
||||||
// ]);
|
|
||||||
|
|
||||||
// browser
|
|
||||||
// .keys(['Control', 'z'])
|
|
||||||
// .keys(['Control']);
|
|
||||||
// styleObj = helper.helper.getStyleStore(browser);
|
|
||||||
// assert.deepEqual(styleObj.layers, [
|
|
||||||
// ]);
|
|
||||||
|
|
||||||
// browser
|
|
||||||
// .keys(['Control', 'y'])
|
|
||||||
// .keys(['Control']);
|
|
||||||
// styleObj = helper.helper.getStyleStore(browser);
|
|
||||||
// assert.deepEqual(styleObj.layers, [
|
|
||||||
// {
|
|
||||||
// "id": "step 1",
|
|
||||||
// "type": 'background'
|
|
||||||
// }
|
|
||||||
// ]);
|
|
||||||
|
|
||||||
// browser
|
|
||||||
// .keys(['Control', 'y'])
|
|
||||||
// .keys(['Control']);
|
|
||||||
// styleObj = helper.helper.getStyleStore(browser);
|
|
||||||
// assert.deepEqual(styleObj.layers, [
|
|
||||||
// {
|
|
||||||
// "id": "step 1",
|
|
||||||
// "type": 'background'
|
|
||||||
// },
|
|
||||||
// {
|
|
||||||
// "id": "step 2",
|
|
||||||
// "type": 'background'
|
|
||||||
// }
|
|
||||||
// ]);
|
|
||||||
|
|
||||||
// })
|
|
||||||
})
|
})
|
||||||
|
|
|
@ -5,8 +5,6 @@ var config = require("../../config/specs");
|
||||||
var helper = require("../helper");
|
var helper = require("../helper");
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// TODO: Is this needed?
|
|
||||||
function closeModal(wdKey) {
|
function closeModal(wdKey) {
|
||||||
browser.waitUntil(function() {
|
browser.waitUntil(function() {
|
||||||
return browser.isVisibleWithinViewport(wd.$(wdKey));
|
return browser.isVisibleWithinViewport(wd.$(wdKey));
|
||||||
|
@ -85,6 +83,7 @@ describe("modals", function() {
|
||||||
|
|
||||||
// TODO: Work out how to download a file and check the contents
|
// TODO: Work out how to download a file and check the contents
|
||||||
it("download")
|
it("download")
|
||||||
|
|
||||||
// TODO: Work out how to mock the end git points
|
// TODO: Work out how to mock the end git points
|
||||||
it("save to gist")
|
it("save to gist")
|
||||||
})
|
})
|
||||||
|
|
|
@ -55,9 +55,6 @@ app.get("/styles/empty/:sources", function(req, res) {
|
||||||
var reqSources = req.params.sources.split(",");
|
var reqSources = req.params.sources.split(",");
|
||||||
|
|
||||||
var sources = {};
|
var sources = {};
|
||||||
// reqSources.forEach(function(key) {
|
|
||||||
// sources[key] = buildGeoJSONSource(sourceData[key]);
|
|
||||||
// });
|
|
||||||
reqSources.forEach(function(key) {
|
reqSources.forEach(function(key) {
|
||||||
var parts = key.split(":");
|
var parts = key.split(":");
|
||||||
var type = parts[0];
|
var type = parts[0];
|
||||||
|
|
Loading…
Reference in a new issue