Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
more memory
  • Loading branch information
AbhiPrasad committed Jun 6, 2024
commit 10aa3da297c40985502cff4740c6dc4d288aeb47
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ conditionalTest({ min: 18 })('LocalVariables integration', () => {
child.on('message', msg => {
reportedCount++;
const rssMb = (msg as { memUsage: { rss: number } }).memUsage.rss / 1024 / 1024;
// We shouldn't use more than 125MB of memory
expect(rssMb).toBeLessThan(125);
// We shouldn't use more than 130MB of memory
expect(rssMb).toBeLessThan(130);
});

// Wait for 20 seconds
Expand Down