@emseepea/testing 0.9.4 → 0.9.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emseepea/testing",
3
- "version": "0.9.4",
3
+ "version": "0.9.7",
4
4
  "description": "MCP integration and semantic testing helpers",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -41,7 +41,7 @@
41
41
  "test:built": "node --test test/*.test.mjs"
42
42
  },
43
43
  "dependencies": {
44
- "@emseepea/server": "0.7.0",
44
+ "@emseepea/server": "0.9.0",
45
45
  "@modelcontextprotocol/client": "2.0.0"
46
46
  },
47
47
  "engines": {
@@ -305,7 +305,7 @@ export function startModelConversation(provider, directory, url, tools, authToke
305
305
  const timer = setTimeout(() => {
306
306
  fail("Model command timed out");
307
307
  child.kill("SIGKILL");
308
- }, 120_000);
308
+ }, 180_000);
309
309
  timer.unref();
310
310
  pending = { events: initialEvents, reject, resolve, timer };
311
311
  initialEvents = [];
@@ -351,7 +351,7 @@ function runProcess(command, args, options) {
351
351
  let stdout = "";
352
352
  let timedOut = false;
353
353
  let outputLimitExceeded = false;
354
- const timer = setTimeout(() => { timedOut = true; child.kill("SIGKILL"); }, 120_000);
354
+ const timer = setTimeout(() => { timedOut = true; child.kill("SIGKILL"); }, 180_000);
355
355
  timer.unref();
356
356
  child.stdout.on("data", (chunk) => {
357
357
  stdout += chunk;