diff of aa59d4e960ec3cfe4ce8e38a804a01e089f1e27f
aa59d4e960ec3cfe4ce8e38a804a01e089f1e27f
diff --git a/playwright-tests/tests/basic-tests.spec.ts b/playwright-tests/tests/basic-tests.spec.ts
index ce58148..9a01b8f 100644
--- a/playwright-tests/tests/basic-tests.spec.ts
+++ b/playwright-tests/tests/basic-tests.spec.ts
@@ -119,7 +119,7 @@ test('basic testing', async ({ page, browser }) => {
await expect(page.locator('.post')).toBeVisible();
await expect(page.locator('.post')).toContainText(post);
await expect(page.locator('.tag')).toHaveText(tag);
-
+ /*
// edit the post
for(let x = 0; x < 10; x++) {
console.log('x: ' + x);
@@ -142,7 +142,7 @@ test('basic testing', async ({ page, browser }) => {
await expect(page.locator('.post')).not.toContainText(post);
}
- await expect(page.locator('.meta')).toContainText('1, 2, 3, 4, 5, 6, 7, 8, 9, 10');
+ await expect(page.locator('.meta')).toContainText('1, 2, 3, 4, 5, 6, 7, 8, 9, 10');*/
// hide the post
@@ -184,12 +184,12 @@ test('basic testing', async ({ page, browser }) => {
const new_ctx = await browser.newContext();
// Create a new page inside context.
- const anon_page = await new_ctx.newPage();
+ /* const anon_page = await new_ctx.newPage();
await anon_page.goto('http://localhost:3010');
await expect(anon_page.locator('.meta')).toContainText('1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13');
- await anon_page.close();
+ await anon_page.close(); */
// make sure editor saves
await page.getByText('Edit this post').click();