Skip to content

Commit

Permalink
fix(test-tooling): uncomment code that was forgotten
Browse files Browse the repository at this point in the history
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 <peter.somogyvari@accenture.com>
  • Loading branch information
petermetz committed Mar 25, 2021
1 parent 13fe677 commit 3d635c0
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -250,8 +250,7 @@ export class CordaTestLedger implements ITestLedger {
): Promise<Base64File[]> {
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];

Expand Down

0 comments on commit 3d635c0

Please sign in to comment.