diff --git a/asset-transfer-basic/application-gateway-typescript/package.json b/asset-transfer-basic/application-gateway-typescript/package.json index 8952037f..6009632f 100644 --- a/asset-transfer-basic/application-gateway-typescript/package.json +++ b/asset-transfer-basic/application-gateway-typescript/package.json @@ -19,7 +19,8 @@ "author": "Hyperledger", "license": "Apache-2.0", "dependencies": { - "@hyperledger/fabric-gateway": "^1.0.0" + "@hyperledger/fabric-gateway": "^1.0.0", + "@grpc/grpc-js": "^1.5.0" }, "devDependencies": { "@tsconfig/node14": "^1.0.1", diff --git a/ci/scripts/run-test-network-basic.sh b/ci/scripts/run-test-network-basic.sh index 8f78c9e7..8627c6a6 100755 --- a/ci/scripts/run-test-network-basic.sh +++ b/ci/scripts/run-test-network-basic.sh @@ -90,3 +90,12 @@ print "Running the output app" node dist/app.js popd stopNetwork + +# Run Go gateway application +createNetwork +print "Initializing Go gateway application" +pushd ../asset-transfer-basic/application-gateway-go +print "Executing AssetTransfer.go" +go run . +popd +stopNetwork \ No newline at end of file