14 lines
349 B
TypeScript
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();
|
|
});
|