mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-14 01:33:03 +00:00
8 lines
215 B
JavaScript
8 lines
215 B
JavaScript
describe("iD.actions.Noop", function () {
|
|
it("does nothing", function () {
|
|
var graph = iD.Graph(),
|
|
action = iD.actions.Noop(graph);
|
|
expect(action(graph)).to.equal(graph);
|
|
});
|
|
});
|