function bindControlDb() {
  var control = docstate.control();
  userChannelControl.bindToControlDb("test-control", "test-app", testConfig);
  control.start();
  return coux.subscribeDb(testDb, function(change) {
    control.handle(change.doc);
  });
}