/** * @vitest-environment custom-vitest-environment.ts */ import { test } from "vitest"; import React from "react"; import { Authenticated, AuthLoading, Unauthenticated } from "./auth_helpers.js"; test("Helpers are valid children", () => { const _element = (
Yay Nay ???
); }); test("Helpers can take many children", () => { const _element = (
Yay
Yay again
Yay
Yay again
Yay
Yay again
); });