Skip to content

Commit

Permalink
increase memory usage test
Browse files Browse the repository at this point in the history
  • Loading branch information
timfish committed Aug 28, 2024
1 parent d6d0462 commit 7ac938f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,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 135MB of memory
expect(rssMb).toBeLessThan(135);
// We shouldn't use more than 140MB of memory
expect(rssMb).toBeLessThan(140);
});

// Wait for 20 seconds
Expand Down

0 comments on commit 7ac938f

Please sign in to comment.