Finish incomplete dyad write (#475)

Fixes #452 
Fixes #456 
Fixes #195
This commit is contained in:
Will Chen
2025-06-23 22:53:55 -07:00
committed by GitHub
parent fa29488b98
commit 3041563809
11 changed files with 1201 additions and 95 deletions

View File

@@ -0,0 +1,15 @@
import { testSkipIfWindows } from "./helpers/test_helper";
testSkipIfWindows("supabase client is generated", async ({ po }) => {
await po.setUp({ autoApprove: true });
await po.importApp("minimal");
await po.sendPrompt("tc=add-supabase");
// Connect to Supabase
await po.page.getByText("Set up supabase").click();
await po.clickConnectSupabaseButton();
await po.clickBackButton();
await po.sendPrompt("tc=generate-supabase-client");
await po.snapshotAppFiles();
});