070959e133
landing-page-staging / Deploy landing page to staging (push) Has been skipped
landing-page-ci / Validate landing page (push) Failing after 4s
visual-baseline / Capture visual baselines (push) Has been cancelled
bake-plugin-previews / Bake plugin previews (push) Has been cancelled
10 lines
267 B
TypeScript
10 lines
267 B
TypeScript
// CI machines are slower; scale all waits proportionally.
|
|
const scale = process.env.CI ? 2.0 : 1.0;
|
|
|
|
export const T = {
|
|
short: Math.ceil(3_000 * scale),
|
|
medium: Math.ceil(10_000 * scale),
|
|
long: Math.ceil(30_000 * scale),
|
|
xlong: Math.ceil(60_000 * scale),
|
|
};
|