13 lines
414 B
TypeScript
13 lines
414 B
TypeScript
import { test } from "./helpers/test_helper";
|
|
|
|
test("partial message is resumed", async ({ po }) => {
|
|
await po.setUp({ autoApprove: true });
|
|
await po.importApp("minimal");
|
|
await po.sendPrompt("tc=partial-write");
|
|
|
|
// This is a special test case which triggers a dump.
|
|
await po.snapshotServerDump("all-messages");
|
|
await po.snapshotMessages({ replaceDumpPath: true });
|
|
await po.snapshotAppFiles();
|
|
});
|