mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-14 09:42:56 +00:00
8 lines
211 B
JavaScript
8 lines
211 B
JavaScript
describe('iD.actionNoop', function () {
|
|
it('does nothing', function () {
|
|
var graph = iD.Graph(),
|
|
action = iD.actionNoop(graph);
|
|
expect(action(graph)).to.equal(graph);
|
|
});
|
|
});
|