diff --git a/test/functional/helper.js b/test/functional/helper.js index 310265a..9832450 100644 --- a/test/functional/helper.js +++ b/test/functional/helper.js @@ -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; diff --git a/test/functional/history/index.js b/test/functional/history/index.js index d699c07..2cd5b0e 100644 --- a/test/functional/history/index.js +++ b/test/functional/history/index.js @@ -97,99 +97,4 @@ describe.skip("history", function() { }); - - // /** - // * See - // */ - // 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' - // } - // ]); - - // }) }) diff --git a/test/functional/modals/index.js b/test/functional/modals/index.js index 24f9ffd..9f26227 100644 --- a/test/functional/modals/index.js +++ b/test/functional/modals/index.js @@ -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") }) diff --git a/test/geojson-server.js b/test/geojson-server.js index 56f1ba7..457eb92 100644 --- a/test/geojson-server.js +++ b/test/geojson-server.js @@ -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];