test: add initial test files and component stubs
This commit is contained in:
committed by
Loic Coenen (aider)
parent
5a6de57a91
commit
826069e8dd
8
src/__tests__/DigitalClock.test.tsx
Normal file
8
src/__tests__/DigitalClock.test.tsx
Normal 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} />);
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user