blowater/UI/signIn.test.tsx

19 lines
464 B
TypeScript

/** @jsx h */
import { h } from "https://esm.sh/preact@10.17.1";
import { render } from "https://esm.sh/preact@10.17.1";
import { PrivateKey } from "../lib/nostr-ts/key.ts";
import { testEventBus } from "./_setup.test.ts";
import { SignIn } from "./signIn.tsx";
render(
<SignIn
eventBus={testEventBus}
privateKey={PrivateKey.Generate().hex}
/>,
document.body,
);
for await (const e of testEventBus.onChange()) {
console.log(e);
}