e5e6de2fad
- Replace bun:test with vitest across all packages - Replace bun build with esbuild - Replace bun:sqlite with better-sqlite3 - Fix OCAS Store API: store.put/get → store.cas.put/get - Fix vitest vi.mock hoisting (vi.hoisted) - Add pnpm-workspace.yaml and pnpm-lock.yaml - Update all package.json test/build scripts WIP: 8 failures remain in agent-hermes (bun engines check + sqlite migration) Refs #26
14 lines
673 B
TypeScript
14 lines
673 B
TypeScript
import { describe, expect, test } from 'vitest';
|
|
// We need to test buildHistory indirectly through buildContext
|
|
// since buildHistory is not exported. For now, we'll test the integration
|
|
// through the public API in a separate integration test.
|
|
|
|
describe("context module - content extraction", () => {
|
|
test("placeholder - content extraction will be tested via integration tests", () => {
|
|
// This test is a placeholder. The actual testing of content extraction
|
|
// will be done through integration tests in build-continuation-prompt.test.ts
|
|
// where we can verify that StepContext objects have the correct content field.
|
|
expect(true).toBe(true);
|
|
});
|
|
});
|