Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Temp branch for run cart-reorder tests on staging. #39

Closed
wants to merge 3 commits into from
Closed
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
2 changes: 1 addition & 1 deletion shell/run-all-suite-performance-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ source shell/functions.sh
start_timer

# Create arrays for file lists
filesDirectory1=($(find "tests/suite/sapi/tests" -name '*.js' -type f))
filesDirectory1=($(find "tests/suite/sapi/tests/cart-reorder" -name '*.js' -type f))

# Merge the arrays
files=("${filesDirectory1[@]}")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ export class SharedCheckoutScenario extends AbstractScenario {
try {
return JSON.parse(checkoutResponse.body);
} catch (e) {
console.log(checkoutResponse.body);
throw Error('Failed to parse response during SharedCheckoutScenario::placeOrder()');
}
}
Expand Down

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { SharedCheckoutScenario } from '../../../../cross-product/sapi/scenarios
export { handleSummary } from '../../../../../helpers/summary-helper.js';

const vus = 1;
const iterations = 10;
const iterations = 100;

const environment = 'SUITE';
const thresholdTag = 'SAPI23_cart_reorder_50';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { SharedCheckoutScenario } from '../../../../cross-product/sapi/scenarios
export { handleSummary } from '../../../../../helpers/summary-helper.js';

const vus = 1;
const iterations = 10;
const iterations = 100;

const environment = 'SUITE';
const thresholdTag = 'SAPI27_cart_reorder_70';
Expand Down
Loading