```diff
--- test_files/419-original.txt	2025-03-07 19:06:54
+++ test_files/419-modified.txt	2025-03-07 19:06:54
@@ -19,7 +19,7 @@
       values: ["🎉Output from agent: "],
     },
   },
-  lead_generator_agent: {
+  reddit_research: {
     file: path.join(EXAMPLES_PATH, "reddit-research", "demo.mjs"),
     match: {
       type: "stdout",
@@ -44,12 +44,11 @@
         env: { ...process.env },
         cwd: example.cwd || process.cwd(),
       };
-
-      const { stdout, stderr } = await execFileAsync(
-        "node",
-        [example.file],
-        options
-      );
+      const { stdout, stderr } = await execFileAsync("node", [example.file], {
+        ...options,
+        maxBuffer: 10 * 1024 * 1024,
+      });
+      
       const output = example.match.type === "stdout" ? stdout : stderr;
       for (const match of example.match.values) {
         expect(output).toContain(match);
```
