We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77ce4d4 commit 636918cCopy full SHA for 636918c
internal/perf/src/memtest.ts
@@ -15,13 +15,13 @@ export interface MemtestOptions
15
* Linear regression line slope threshold of the memory snapshots.
16
* If the slope is greater than this value, the test will fail.
17
*
18
- * @default 10
+ * @default 5
19
*/
20
memoryThresholdInMB?: number;
21
}
22
23
export function memtest(opts: MemtestOptions, setup: () => Promise<Server>) {
24
- const { memoryThresholdInMB = 10, duration = 60_000, ...loadtestOpts } = opts;
+ const { memoryThresholdInMB = 5, duration = 60_000, ...loadtestOpts } = opts;
25
it(
26
'should not have a memory increase trend',
27
{
0 commit comments