Skip to content

Commit

Permalink
Fixing variable override
Browse files Browse the repository at this point in the history
  • Loading branch information
ausias-armesto committed Aug 5, 2024
1 parent 3a83eee commit 7628e54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions k6/src/typescript/setup-environment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ const promiseNodes: HoprdNode[] = nodesData.nodes.map(async (node: any) => {
});


Promise.all(promiseNodes).then((nodes: HoprdNode[]) => {
setupEnvironment(nodes).then(() => {
Promise.all(promiseNodes).then((hoprdNodes: HoprdNode[]) => {
setupEnvironment(hoprdNodes).then(() => {
console.log('[INFO] Environment fully setup')

// Generate k6 test run file
Expand Down

0 comments on commit 7628e54

Please sign in to comment.