test('removing the second listener of multiple listeners should work', function (t) {
  var node = createNode('', {}, function () {}, true)
  node.on('contextChange', handler)
  node.on('contextChange', handler2)
  node.off('contextChange', handler2)