mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-13 09:12:52 +00:00
- iD.Context -> iD.coreContext - iD.Graph -> iD.coreGraph - iD.Node -> iD.osmNode - iD.Way -> iD.osmWay - iD.Relation -> iD.osmRelation
8 lines
215 B
JavaScript
8 lines
215 B
JavaScript
describe('iD.actionNoop', function () {
|
|
it('does nothing', function () {
|
|
var graph = iD.coreGraph(),
|
|
action = iD.actionNoop(graph);
|
|
expect(action(graph)).to.equal(graph);
|
|
});
|
|
});
|