12345678910111213141516171819202122 |
- import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
- import { SwiperComponent } from './swiper.component';
- describe('SwiperComponent', () => {
- let component: SwiperComponent;
- let fixture: ComponentFixture<SwiperComponent>;
- beforeEach(waitForAsync(() => {
- TestBed.configureTestingModule({
- imports: [SwiperComponent],
- }).compileComponents();
- fixture = TestBed.createComponent(SwiperComponent);
- component = fixture.componentInstance;
- fixture.detectChanges();
- }));
- it('should create', () => {
- expect(component).toBeTruthy();
- });
- });
|