8 lines
203 B
TypeScript
8 lines
203 B
TypeScript
import { test } from "./helpers/test_helper";
|
|
|
|
test("send message to LM studio", async ({ po }) => {
|
|
await po.selectTestLMStudioModel();
|
|
await po.sendPrompt("hi");
|
|
await po.snapshotMessages();
|
|
});
|