blob: 0c736e90dbd97194a5953883cde4bfcc77c713e6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { CarouselVerticalComponent } from './carousel-vertical.component';
describe('CarouselVerticalComponent', () => {
let component: CarouselVerticalComponent;
let fixture: ComponentFixture<CarouselVerticalComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ CarouselVerticalComponent ]
})
.compileComponents();
});
beforeEach(() => {
fixture = TestBed.createComponent(CarouselVerticalComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
|