mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-10 12:53:03 -05:00
9 lines
267 B
TypeScript
9 lines
267 B
TypeScript
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);
|
|
});
|
|
});
|