Create ollama e2e test (#296)

This commit is contained in:
Will Chen
2025-05-31 22:01:48 -07:00
committed by GitHub
parent efb814ec95
commit af7d6fa9f8
6 changed files with 103 additions and 3 deletions

7
e2e-tests/ollama.spec.ts Normal file
View File

@@ -0,0 +1,7 @@
import { test } from "./helpers/test_helper";
test("send message to ollama", async ({ po }) => {
await po.selectTestOllamaModel();
await po.sendPrompt("hi");
await po.snapshotMessages();
});