mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2024-12-26 20:10:38 +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");
|
||||
|
||||
|
||||
// This should be sync...
|
||||
var geoserver = geoServer.listen(9002);
|
||||
|
||||
|
||||
module.exports = {
|
||||
getStyleUrl: function(styles) {
|
||||
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");
|
||||
|
||||
|
||||
|
||||
// TODO: Is this needed?
|
||||
function closeModal(wdKey) {
|
||||
browser.waitUntil(function() {
|
||||
return browser.isVisibleWithinViewport(wd.$(wdKey));
|
||||
|
@ -85,6 +83,7 @@ describe("modals", function() {
|
|||
|
||||
// TODO: Work out how to download a file and check the contents
|
||||
it("download")
|
||||
|
||||
// TODO: Work out how to mock the end git points
|
||||
it("save to gist")
|
||||
})
|
||||
|
|
|
@ -55,9 +55,6 @@ app.get("/styles/empty/:sources", function(req, res) {
|
|||
var reqSources = req.params.sources.split(",");
|
||||
|
||||
var sources = {};
|
||||
// reqSources.forEach(function(key) {
|
||||
// sources[key] = buildGeoJSONSource(sourceData[key]);
|
||||
// });
|
||||
reqSources.forEach(function(key) {
|
||||
var parts = key.split(":");
|
||||
var type = parts[0];
|
||||
|
|
Loading…
Reference in a new issue