Semantic Index.Test
Path:
loom-sprint-scaffold/loom/tests/memory/semantic-index.test.tsRelative: loom/tests/memory/semantic-index.test.tsSubproject: loom-sprint-scaffoldCategory: testsLines: 238Bytes: 9,598Imports: 5Exports: 0has tests
Content Preview
- /**
- * SemanticIndex contract test suite.
- *
- * Shared tests run against BOTH Fts5Index (with fake D1/SQLite) and
- * VectorizeIndex (with fake Vectorize + fake Embedder), proving parity
- * of the API surface.
- */
- import { describe, expect, test } from "bun:test";
- import { Database } from "bun:sqlite";
- import { Fts5Index, VectorizeIndex } from "../../src/memory/core/semantic-index";
- import type { SemanticIndex, MemoryRecord } from "../../src/types";
- import {
- FakeD1,
- FakeEmbedder,
- FakeVecto