This is an automated email from the ASF dual-hosted git repository. imbajin pushed a commit to branch feat/oink-core-platform in repository https://gitbox.apache.org/repos/asf/hugegraph-doc.git
commit 2c49054e84f9d4effeb8e1e3ec936c564edc7d7b Author: dark <[email protected]> AuthorDate: Fri Sep 4 21:17:53 2026 +0800 test(e2e): gate optional community lane - skip Community-only assertions on standalone PR-A artifacts - retain the blocking 5-3-2 and parity contract after PR-B integration - keep shared platform coverage active in both release phases --- tests/e2e/platform.spec.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/e2e/platform.spec.js b/tests/e2e/platform.spec.js index 1e7b513a0..6937190ec 100644 --- a/tests/e2e/platform.spec.js +++ b/tests/e2e/platform.spec.js @@ -61,6 +61,11 @@ test("Community grid and HTML/Print/Markdown profiles stay in parity", async ({ page, request }) => { + await page.goto("/community/"); + test.skip( + (await page.locator(".hg-community-members__grid").count()) === 0, + "PR-B Community section is not integrated in this artifact" + ); for (const [width, columns] of [[1440, 5], [900, 3], [390, 2], [320, 2]]) { await page.setViewportSize({ width, height: 900 }); await page.goto("/community/");
