test: add initial test files and component stubs

This commit is contained in:
Loic Coenen
2026-06-23 16:04:30 +02:00
committed by Loic Coenen (aider)
parent 5a6de57a91
commit 826069e8dd
16 changed files with 192 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
import { render } from '@testing-library/react';
import { DigitalClock } from '../containers/DigitalClock';
describe('DigitalClock', () => {
it('renders when enabled', () => {
render(<DigitalClock enabled={true} />);
});
});