feat: group all page by date (#2532)

Co-authored-by: Himself65 <himself65@outlook.com>
This commit is contained in:
Whitewater
2023-05-25 22:23:51 -07:00
committed by GitHub
parent 60057c666d
commit 7dcbe64d4e
11 changed files with 220 additions and 62 deletions

View File

@@ -11,9 +11,9 @@ test('should broadcast a message to all debug pages', async ({
await page.waitForSelector('#__next');
await page2.waitForSelector('#__next');
await page.click('[data-testid="create-page"]');
expect(await page.locator('tr').count()).toBe(2);
expect(await page2.locator('tr').count()).toBe(2);
await page2.click('[data-testid="create-page"]');
expect(await page.locator('tr').count()).toBe(3);
expect(await page2.locator('tr').count()).toBe(3);
await page2.click('[data-testid="create-page"]');
expect(await page.locator('tr').count()).toBe(4);
expect(await page2.locator('tr').count()).toBe(4);
});