Files
moreminimore-vibe/e2e-tests/dump_messages.spec.ts
2025-06-03 13:04:16 -07:00

12 lines
367 B
TypeScript

import { testSkipIfWindows } from "./helpers/test_helper";
// This is useful to make sure the messages are being sent correctly.
//
// Why skip on Windows? The file ordering is not stable between runs
// but unclear why.
testSkipIfWindows("dump messages", async ({ po }) => {
await po.setUp();
await po.sendPrompt("[dump]");
await po.snapshotServerDump();
});