Files
moreminimore-vibe/e2e-tests/ollama.spec.ts
2025-05-31 22:01:48 -07:00

8 lines
198 B
TypeScript

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