import assert from 'node:assert/strict';
import test from 'node:test';
import { renderToStaticMarkup } from 'react-dom/server';
import { AppWordmark } from './AppWordmark';
test('AppWordmark renders decorative fixed vector outlines without font-dependent text', () => {
const markup = renderToStaticMarkup();
assert.match(markup, / {
const markup = renderToStaticMarkup(
,
);
assert.match(markup, /aria-label="Netcatty"/);
assert.match(markup, /role="img"/);
assert.doesNotMatch(markup, /aria-hidden/);
});