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 d6d0462 commit 7ac938fCopy full SHA for 7ac938f
dev-packages/node-integration-tests/suites/public-api/LocalVariables/test.ts
@@ -94,8 +94,8 @@ conditionalTest({ min: 18 })('LocalVariables integration', () => {
94
child.on('message', msg => {
95
reportedCount++;
96
const rssMb = (msg as { memUsage: { rss: number } }).memUsage.rss / 1024 / 1024;
97
- // We shouldn't use more than 135MB of memory
98
- expect(rssMb).toBeLessThan(135);
+ // We shouldn't use more than 140MB of memory
+ expect(rssMb).toBeLessThan(140);
99
});
100
101
// Wait for 20 seconds
0 commit comments