Make sure the graph reference is removed from the cells after resetCells() call.
const el = new shapes.standard.Rectangle();
graph.addCell(el);
assert.ok(el.graph === graph);
graph.resetCells([]); // now removes the `graph` references
assert.ok(!el.graph);
Description
Make sure the
graph
reference is removed from the cells afterresetCells()
call.