blowater/UI/edit-group.test.tsx
2023-10-24 11:53:26 +08:00

27 lines
779 B
TypeScript

/** @jsx h */
import { h, render } from "https://esm.sh/preact@10.17.1";
import { testEventBus, testEventsAdapter } 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 { Database_Contextual_View } from "../database.ts";
const database = await Database_Contextual_View.New(testEventsAdapter);
if (database instanceof Error) {
fail(database.message);
}
const ctx = InMemoryAccountContext.Generate();
render(
<EditGroup
emit={testEventBus.emit}
ctx={ctx}
profileGetter={database}
/>,
document.body,
);
for await (const e of testEventBus.onChange()) {
console.log(e);
}