Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
njlie committed Aug 13, 2024
1 parent c01d543 commit 14ea6e5
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions test/performance/scripts/create-outgoing-payments.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,7 @@ const HEADERS = {
'Content-Type': 'application/json'
}

const CLOUD_NINE_GQL_ENDPOINT =
'http://cloud-nine-wallet-backend:3001/graphql'
const CLOUD_NINE_GQL_ENDPOINT = 'http://cloud-nine-wallet-backend:3001/graphql'
const CLOUD_NINE_WALLET_ADDRESS =
'https://cloud-nine-wallet-backend/accounts/gfranklin'
const HAPPY_LIFE_BANK_WALLET_ADDRESS =
Expand Down Expand Up @@ -89,8 +88,8 @@ export function setup() {
if (!c9WalletAddress) {
fail(`could not find wallet address: ${CLOUD_NINE_WALLET_ADDRESS}`)
}
return { data: { c9WalletAddress }}

return { data: { c9WalletAddress } }
}

// The function that defines VU logic.
Expand All @@ -99,7 +98,9 @@ export function setup() {
// about authoring k6 scripts.
//
export default function (data) {
const { data: { c9WalletAddress } } = data
const {
data: { c9WalletAddress }
} = data

const createReceiverResponse = http.post(
CLOUD_NINE_GQL_ENDPOINT,
Expand Down

0 comments on commit 14ea6e5

Please sign in to comment.