Files
iD/test/spec/integration/create_poi.js
2012-12-03 15:11:49 -05:00

23 lines
501 B
JavaScript

describe("iD", function () {
var container, editor;
beforeEach(function() {
container = d3.select('body').append('div');
editor = iD()
editor.map().background.source(null);
editor.call(container);
});
afterEach(function() {
container.remove();
});
it("allows an editor to add a place", function () {
// click 'Add Place'
// click on map
// select tags
// save
// check uploaded XML
});
});