Files
moreminimore-vibe/e2e-tests/main.spec.ts
Kunthawat Greethong 11986a0196 Add project files
2025-12-05 09:26:53 +07:00

14 lines
349 B
TypeScript

import { test } from "./helpers/test_helper";
test("simple message to custom test model", async ({ po }) => {
await po.setUp();
await po.sendPrompt("hi");
await po.snapshotMessages();
});
test("basic message to custom test model", async ({ po }) => {
await po.setUp();
await po.sendPrompt("tc=basic");
await po.snapshotMessages();
});