docs: update portal for WRNexusJS 0.8.0

This commit is contained in:
2026-08-02 23:57:41 +05:30
parent 9366895f78
commit 8d5d4b8f12
183 changed files with 14433 additions and 2492 deletions
+24 -1
View File
@@ -14,31 +14,46 @@ const expected = [
"ai",
"auth",
"authz",
"benchmark",
"cache",
"captcha",
"cli",
"compiler",
"content",
"core",
"csr",
"db",
"dev-server",
"dev-toolbar",
"encryption",
"graphql",
"helpers",
"i18n",
"identity",
"image",
"jwt",
"language-server",
"mcp",
"mobile",
"native",
"oauth",
"observability",
"playground",
"plugin",
"pubsub",
"pwa",
"queue",
"reactive",
"realtime",
"router",
"security",
"ssr",
"store",
"styles",
"syntax",
"test",
"tracking",
"typecheck",
"ui",
"uploader",
"validation",
@@ -201,5 +216,13 @@ test("clicking a category hides packages from other categories", async () => {
.querySelectorAll(".package-card")
.filter((card) => (card as HTMLElement).style.display !== "none")
.map((card) => card.getAttribute("href"));
expect(visible).toEqual(["/packages/db", "/packages/queue", "/packages/uploader"]);
expect(visible).toEqual([
"/packages/cache",
"/packages/content",
"/packages/db",
"/packages/graphql",
"/packages/queue",
"/packages/store",
"/packages/uploader",
]);
});