Support native Git (experimental) (#338)

This commit is contained in:
Will Chen
2025-06-04 21:37:05 -07:00
committed by GitHub
parent 4e38031a65
commit 3558663ab7
25 changed files with 455 additions and 96 deletions

View File

@@ -20,9 +20,7 @@ test("delete app", async ({ po }) => {
await po.page.getByRole("button", { name: "Delete App" }).click();
// Make sure the app is deleted
await expect(async () => {
expect(await po.getCurrentAppName()).toBe("(no app selected)");
}).toPass();
await po.isCurrentAppNameNone();
expect(fs.existsSync(appPath)).toBe(false);
expect(po.getAppListItem({ appName })).not.toBeVisible();
});