Latest PR https://github.com/holochain/tryorama/pull/201/files removed the ability to call appWs.callZome({ role_name, ... }), using role name instead of cell id to identify the cell. This is the technique I use in all my tryorama tests, which are actually also testing my real UI code, which calls the AppClient using the role_name.
Latest PR https://github.com/holochain/tryorama/pull/201/files removed the ability to call
appWs.callZome({ role_name, ... })
, using role name instead of cell id to identify the cell. This is the technique I use in all my tryorama tests, which are actually also testing my real UI code, which calls theAppClient
using the role_name.This is the error I get:
It's because in this line, there is no cell_id in the request. I think it's because of the removal of this function.
Another issue is that I don't see anywhere in the tests for tryorama that
callZome
is tested using the role name instead of the cell_id.