swiper.component.spec.ts 604 B

12345678910111213141516171819202122
  1. import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
  2. import { SwiperComponent } from './swiper.component';
  3. describe('SwiperComponent', () => {
  4. let component: SwiperComponent;
  5. let fixture: ComponentFixture<SwiperComponent>;
  6. beforeEach(waitForAsync(() => {
  7. TestBed.configureTestingModule({
  8. imports: [SwiperComponent],
  9. }).compileComponents();
  10. fixture = TestBed.createComponent(SwiperComponent);
  11. component = fixture.componentInstance;
  12. fixture.detectChanges();
  13. }));
  14. it('should create', () => {
  15. expect(component).toBeTruthy();
  16. });
  17. });