/** @jsx h */ import { h, render } from "https://esm.sh/preact@10.17.1"; import { testEventBus, testEventMarker, testEventsAdapter, testRelayAdapter } from "./_setup.test.ts"; import { EditGroup } from "./edit-group.tsx"; import { InMemoryAccountContext } from "../lib/nostr-ts/nostr.ts"; import { fail } from "https://deno.land/std@0.176.0/testing/asserts.ts"; import { Datebase_View } from "../database.ts"; import { EditProfile } from "./edit-profile.tsx"; const database = await test_db_view(); const ctx = InMemoryAccountContext.Generate(); render( , document.body, ); for await (const e of testEventBus.onChange()) { console.log(e); }