refactor: move example tests to tests/ directories

This commit is contained in:
Nathan Flurry 2026-01-29 10:05:24 -08:00
parent 136926b445
commit ab210fa38a
3 changed files with 4 additions and 4 deletions

View file

@ -1,6 +1,6 @@
import { describe, it, expect } from "vitest";
import { buildHeaders } from "@sandbox-agent/example-shared";
import { setupE2BSandboxAgent } from "./e2b.ts";
import { setupE2BSandboxAgent } from "../src/e2b.ts";
const shouldRun = Boolean(process.env.E2B_API_KEY);
const timeoutMs = Number.parseInt(process.env.SANDBOX_TEST_TIMEOUT_MS || "", 10) || 300_000;