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

16 lines
554 B
TypeScript

import { test } from "./helpers/test_helper";
test("switching smart context mode saves the right setting", async ({ po }) => {
await po.setUpDyadPro();
const proModesDialog = await po.openProModesDialog({
location: "home-chat-input-container",
});
await po.snapshotSettings();
await proModesDialog.setSmartContextMode("balanced");
await po.snapshotSettings();
await proModesDialog.setSmartContextMode("off");
await po.snapshotSettings();
await proModesDialog.setSmartContextMode("conservative");
await po.snapshotSettings();
});