Is it possible to test chaincode that calls chaincode deployed on a different channel using stub.InvokeChaincode(<chaincodename>, <args>, <channel>)? I see there is a mockPeerChaincode() method to init another chaincode. I am using that and receiving the following error in the test: TypeError: this.cc.Init is not a function not sure if it is an issue with my code or mockstub.
Is it possible to test chaincode that calls chaincode deployed on a different channel using
stub.InvokeChaincode(<chaincodename>, <args>, <channel>)
? I see there is a mockPeerChaincode() method to init another chaincode. I am using that and receiving the following error in the test:TypeError: this.cc.Init is not a function
not sure if it is an issue with my code or mockstub.Thanks