Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mojaloop/ml-core-test-harness",
"version": "2.11.1",
"version": "2.12.0-snapshot.0",
"private": true,
"scripts": {
"lint": "true",
Expand Down
4 changes: 2 additions & 2 deletions packages/k6-tests/scripts/sdkFxSendE2E.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ const abortOnError = (__ENV.K6_SCRIPT_ABORT_ON_ERROR && __ENV.K6_SCRIPT_ABORT_ON

// Setup function - runs once at the beginning of the test
export function setup() {
console.log('Making party provisioning requests to accounts endpoints...');
console.log('Making party provisioning requests to accounts endpoints...', { fspList });

// Provision accounts for all FSPs in the pool
for (const fsp of fspList) {
const sdkEndpointUrl = fsp['outboundUrl'];
const partyId = fsp['partyId'];

if (!sdkEndpointUrl || !partyId) {
console.log(`Skipping FSP ${fsp['fspId']} - missing outboundUrl or partyId`);
continue;
Expand Down