mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-12 22:03:03 -05:00
feat(challenge24): create test harness
This commit is contained in:
8
apps/create-harness/src/app/slider.component.spec.ts
Normal file
8
apps/create-harness/src/app/slider.component.spec.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
import { render } from '@testing-library/angular';
|
||||
import { SliderComponent } from './slider.component';
|
||||
|
||||
describe('SliderComponent', () => {
|
||||
test('should have 1 slider, 3 checkboxes, 4 inputs, 2 buttons', async () => {
|
||||
await render(SliderComponent);
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user