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

16 lines
405 B
TypeScript

import { expect } from "@playwright/test";
import { test } from "./helpers/test_helper";
test("auto update - disable and enable", async ({ po }) => {
await po.goToSettingsTab();
await po.toggleAutoUpdate();
await expect(
po.page.getByRole("button", { name: "Restart Dyad" }),
).toBeVisible();
await po.snapshotSettings();
await po.toggleAutoUpdate();
await po.snapshotSettings();
});