Skip to content

Commit 46a7116

Browse files
add my-posts template
1 parent 4027f1d commit 46a7116

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

e2e/my-posts.spec.ts

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import test from "@playwright/test";
2+
3+
test.describe("Unauthenticated my-posts Page", () => {
4+
test.beforeEach(async ({ page }) => {
5+
await page.context().clearCookies();
6+
});
7+
//
8+
// Replace with tests for unauthenticated users
9+
});
10+
11+
test.describe("Authenticated my-posts Page", () => {
12+
//
13+
// Replace with tests for authenticated users
14+
});

0 commit comments

Comments
 (0)