chore: increase the frequency of the banner (#3264)

This commit is contained in:
JimmFly
2023-07-17 17:45:02 +08:00
committed by GitHub
parent f21eb5f272
commit 9b32db9f62
7 changed files with 37 additions and 27 deletions
+1
View File
@@ -177,6 +177,7 @@ test('allow creation of filters by tags', async ({ page }) => {
await createPageWithTag(page, { title: 'Page A', tags: ['A'] });
await createPageWithTag(page, { title: 'Page B', tags: ['B'] });
await clickSideBarAllPageButton(page);
await closeDownloadTip(page);
await createFirstFilter(page, 'Tags');
await checkFilterName(page, 'is not empty');
await checkPagesCount(page, 2);
+1 -1
View File
@@ -40,5 +40,5 @@ test('Download client tip', async ({ page }) => {
const currentDownloadClientTipItem = page.locator(
'[data-testid=download-client-tip]'
);
await expect(currentDownloadClientTipItem).not.toBeVisible();
await expect(currentDownloadClientTipItem).toBeVisible();
});