Go');
expect($html)->toContain('bg-accent-active')->toContain('Go');
});
it('renders an input with a linked label and error region', function () {
$html = Blade::render('');
expect($html)
->toContain('for="email"')
->toContain('name="email"')
->toContain('E-Mail');
});
it('maps badge status to a semantic tone', function () {
$html = Blade::render('Aktiv');
expect($html)->toContain('text-success')->toContain('Aktiv');
});
it('renders a stat tile with a progress bar', function () {
$html = Blade::render('');
expect($html)->toContain('Speicher')->toContain('width: 69%');
});