test(prompts-core): cover prompt loader scenarios

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
YeonGyu-Kim
2026-05-24 17:24:04 +09:00
parent ada4092ea1
commit 323e2e9212
8 changed files with 554 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
import type { LoadedPrompt, LoadPromptInput } from "./types"
export async function loadPrompt(_input: LoadPromptInput): Promise<LoadedPrompt> {
return {
body: "__red__",
frontmatter: {},
resolvedPath: "__red__",
}
}