feat(challenge19): create challenge 19 with testing output and input

This commit is contained in:
thomas
2023-04-14 16:00:09 +02:00
parent 8ebf17c026
commit 043ec64c0d
11 changed files with 86 additions and 880 deletions

View File

@@ -0,0 +1,8 @@
import { render } from '@testing-library/angular';
import { CounterComponent } from './counter.component';
describe('CounterComponent', () => {
test('set input and listen to output', async () => {
await render(CounterComponent);
});
});