chore: hide pinboard (#2149)

Co-authored-by: himself65 <himself65@outlook.com>
This commit is contained in:
Whitewater
2023-04-26 17:31:01 -07:00
committed by GitHub
parent 40e7074475
commit 2b05a1254b
8 changed files with 13 additions and 279 deletions

View File

@@ -204,7 +204,7 @@ test('After appearing once, it will not appear a second time', async ({
await expect(quickSearchTips).not.toBeVisible();
});
test('Show navigation path if page is a subpage', async ({ page }) => {
test.skip('Show navigation path if page is a subpage', async ({ page }) => {
const rootPinboardMeta = await initHomePageWithPinboard(page);
await createPinboardPage(page, rootPinboardMeta?.id ?? '', 'test1');
await openQuickSearchByShortcut(page);
@@ -218,7 +218,7 @@ test('Not show navigation path if page is not a subpage or current page is not i
await openQuickSearchByShortcut(page);
expect(await page.getByTestId('navigation-path').count()).toBe(0);
});
test('Navigation path item click will jump to page, but not current active item', async ({
test.skip('Navigation path item click will jump to page, but not current active item', async ({
page,
}) => {
const rootPinboardMeta = await initHomePageWithPinboard(page);
@@ -233,7 +233,7 @@ test('Navigation path item click will jump to page, but not current active item'
await page.locator('[data-testid="navigation-path-link"]').nth(0).click();
expect(page.url()).not.toBe(oldUrl);
});
test('Navigation path expand', async ({ page }) => {
test.skip('Navigation path expand', async ({ page }) => {
//
const rootPinboardMeta = await initHomePageWithPinboard(page);
await createPinboardPage(page, rootPinboardMeta?.id ?? '', 'test1');