release: WRNexusJS 0.2.75

This commit is contained in:
2026-07-21 12:30:46 +05:30
parent 2ca2d02b22
commit 69b6cd431f
100 changed files with 2313 additions and 116 deletions
@@ -0,0 +1,8 @@
import { expect, test } from "bun:test";
import { DEV_TOOLBAR_CSS, DEV_TOOLBAR_RUNTIME } from "../../src/client/index.ts";
test("exports usable development assets", () => {
expect(DEV_TOOLBAR_RUNTIME).toContain("__wrnexusDevToolbar");
expect(DEV_TOOLBAR_RUNTIME).toContain("wrnexus:navigated");
expect(DEV_TOOLBAR_CSS).toContain(".wrn-panel");
});