sillytavern-character-memory/package.json
bal-spec d1d6e17de7 test: add snapshot integration tests for extraction pipeline
Exercises stripNonDiegetic, formatChatMessages, substitutePromptTemplate,
parseMemories, and serializeMemories against the real 1000-message chat
fixture. Also fixes vitest script flags in package.json (--testPathPattern
is not a valid vitest option; use positional filter instead).

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-26 21:45:33 -08:00

13 lines
309 B
JSON

{
"private": true,
"type": "module",
"scripts": {
"test": "vitest run test/unit/",
"test:watch": "vitest watch test/unit/",
"test:snapshot": "vitest run test/integration/snapshot",
"test:live": "vitest run test/integration/live"
},
"devDependencies": {
"vitest": "^4.0.18"
}
}