Skip to content

Commit

Permalink
Merge branch 'main' into feat-besu-connector-get-transaction
Browse files Browse the repository at this point in the history
  • Loading branch information
petermetz authored Jun 21, 2021
2 parents 0f1e1f3 + 183ce86 commit 6e6b203
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ export class SupplyChainAppDummyInfrastructure {
publishAllPorts: true,
imageName: "hyperledger/cactus-fabric-all-in-one",
imageVersion: "2021-03-02-ssh-hotfix",
logLevel: level,
});

if (this.options.keychain) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export class ShipmentDetailPage implements OnInit {
}
}

async ngOnInit() {
async ngOnInit(): Promise<void> {
this.log.debug("component initialized.", this.shipment);

this._supplyChainApi = await this.baseClient.ofLedger(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ test(testCase, async (t: Test) => {
});
const ledger = new FabricTestLedgerV1({
emitContainerLogs: true,
logLevel,
publishAllPorts: true,
// imageName: "faio14x",
// imageVersion: "latest",
Expand Down Expand Up @@ -179,8 +180,26 @@ test(testCase, async (t: Test) => {
moduleName: "hello-world",
targetOrganizations: [org1Env, org2Env],
pinnedDeps: [
"github.com/Knetic/[email protected]+incompatible",
"github.com/Shopify/[email protected]",
"github.com/fsouza/[email protected]",
"github.com/grpc-ecosystem/[email protected]",
"github.com/hashicorp/[email protected]",
"github.com/hyperledger/[email protected]",
"github.com/hyperledger/[email protected]",
"github.com/miekg/[email protected]",
"github.com/mitchellh/[email protected]",
"github.com/onsi/[email protected]",
"github.com/onsi/[email protected]",
"github.com/op/[email protected]",
"github.com/pkg/[email protected]",
"github.com/spf13/[email protected]",
"github.com/stretchr/[email protected]",
"github.com/sykesm/[email protected]",
"go.uber.org/[email protected]",
"golang.org/x/[email protected]",
"golang.org/x/[email protected]",
"google.golang.org/[email protected]",
],
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ test(testCase, async (t: Test) => {
imageName: "hyperledger/cactus-fabric2-all-in-one",
imageVersion: "2021-04-20-nodejs",
envVars: new Map([["FABRIC_VERSION", "2.2.0"]]),
logLevel,
});
const tearDown = async () => {
await ledger.stop();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ test(testCase, async (t: Test) => {
imageName: "hyperledger/cactus-fabric2-all-in-one",
imageVersion: "2021-04-20-nodejs",
envVars: new Map([["FABRIC_VERSION", "2.2.0"]]),
logLevel,
});

const tearDown = async () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ test(testCase, async (t: Test) => {
imageName: "hyperledger/cactus-fabric2-all-in-one",
imageVersion: "2021-04-20-nodejs",
envVars: new Map([["FABRIC_VERSION", "2.2.0"]]),
logLevel,
});
const tearDown = async () => {
await ledger.stop();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ test(testCase, async (t: Test) => {
imageName: "hyperledger/cactus-fabric2-all-in-one",
imageVersion: "2021-04-20-nodejs",
envVars: new Map([["FABRIC_VERSION", "2.2.0"]]),
logLevel,
});
const tearDown = async () => {
await ledger.stop();
Expand Down

0 comments on commit 6e6b203

Please sign in to comment.