Files
calendar/packages/testing/performance/load/booking.js
T
Eunjae LeeGitHubDevin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
357c2882ad refactor: apply biome formatting to several packages (#27439)
* refactor: apply biome formatting to Phase 1 packages

Packages formatted:
- packages/app-store-cli
- packages/config
- packages/dayjs
- packages/debugging
- packages/embeds/embed-react
- packages/embeds/embed-snippet
- packages/kysely
- packages/platform/constants
- packages/platform/utils
- packages/testing
- packages/tsconfig

Co-Authored-By: eunjae@cal.com <hey@eunjae.dev>

* fix: restore non-null assertions in embed-snippet to fix type error

Co-Authored-By: eunjae@cal.com <hey@eunjae.dev>

* fix: remove ESM import from CommonJS config file

Biome incorrectly added 'import process from node:process' to a CommonJS
file that uses require(). This breaks Jest which expects CommonJS syntax.
The process global is already available in Node.js without explicit import.

Co-Authored-By: eunjae@cal.com <hey@eunjae.dev>

* refactor: exclude packages/embeds from Phase 1 formatting

Per user request, reverting all biome formatting changes in packages/embeds
to handle separately.

Co-Authored-By: eunjae@cal.com <hey@eunjae.dev>

* fix: restore const enum for BookingLocations

Biome changed 'const enum' to 'enum' which is a semantic change.
Reverting to keep the PR purely formatting-only.

Co-Authored-By: eunjae@cal.com <hey@eunjae.dev>

---------

Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
2026-02-05 07:24:34 -03:00

24 lines
756 B
JavaScript

import { sleep } from "k6";
import { THRESHOLDS } from "../utils/config.js";
import { viewBookingPage } from "../utils/helpers.js";
export const options = {
stages: [
{ duration: "2m", target: 500 }, // Ramp up to 500 VUs over 2 minutes
{ duration: "3m", target: 1000 }, // Ramp up to 1000 VUs over 3 minutes
{ duration: "5m", target: 2000 }, // Ramp up to 2000 VUs over 5 minutes
{ duration: "10m", target: 2000 }, // Stay at 2000 VUs for 10 minutes
{ duration: "3m", target: 0 }, // Ramp down to 0 VUs over 3 minutes
],
thresholds: {
http_req_failed: THRESHOLDS.HTTP_ERRORS,
http_req_duration: THRESHOLDS.RESPONSE_TIME.LOAD.p95,
},
};
export default function () {
viewBookingPage("pro", "30min");
sleep(0.1);
}