These tests now pass

This commit is contained in:
John Firebaugh
2013-01-31 08:28:10 -05:00
parent 8a7f18d8f7
commit 6ae360a533

View File

@@ -31,8 +31,7 @@ describe("iD.actions.DeleteWay", function () {
expect(graph.entity(node.id)).not.to.be.undefined;
});
// See #508
xit("deletes multiple member nodes", function () {
it("deletes multiple member nodes", function () {
var a = iD.Node(),
b = iD.Node(),
way = iD.Way({nodes: [a.id, b.id]}),
@@ -42,7 +41,7 @@ describe("iD.actions.DeleteWay", function () {
expect(graph.entity(b.id)).to.be.undefined;
});
xit("deletes a circular way's start/end node", function () {
it("deletes a circular way's start/end node", function () {
var a = iD.Node(),
b = iD.Node(),
c = iD.Node(),