From 6ea34251029685454ed91684b4300aa62fcf25d7 Mon Sep 17 00:00:00 2001 From: Peter Somogyvari Date: Thu, 25 Mar 2021 09:52:11 -0700 Subject: [PATCH] fix(test-tooling): uncomment code that was forgotten During testing it was easier and faster to have the cordapp building process commented out because the obligation cordapp is pre-built within the container image of AIO Corda, then it was forgotten like that which is not good because the rest of the examples are not pre-built and therefore don't actually work without this line being uncommented. Signed-off-by: Peter Somogyvari --- .../src/main/typescript/corda/corda-test-ledger.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/cactus-test-tooling/src/main/typescript/corda/corda-test-ledger.ts b/packages/cactus-test-tooling/src/main/typescript/corda/corda-test-ledger.ts index ce31edc1dda..1600b5069de 100644 --- a/packages/cactus-test-tooling/src/main/typescript/corda/corda-test-ledger.ts +++ b/packages/cactus-test-tooling/src/main/typescript/corda/corda-test-ledger.ts @@ -250,8 +250,7 @@ export class CordaTestLedger implements ITestLedger { ): Promise { const fnTag = `${this.className}.pullCordappJars()`; Checks.truthy(sampleCordapp, `${fnTag}:sampleCordapp`); - // FIXME: uncomment this when done testing - // await this.buildCordapp(sampleCordapp); + await this.buildCordapp(sampleCordapp); const container = this.getContainer(); const cordappRootDir = SAMPLE_CORDAPP_ROOT_DIRS[sampleCordapp];