2018-06-13 18:34:10 +02:00
|
|
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
|
2019-01-10 15:06:10 +01:00
|
|
|
import { UsersUserSlideComponent } from './users-user-slide.component';
|
|
|
|
import { E2EImportsModule } from '../../../../e2e-imports.module';
|
2018-06-13 18:34:10 +02:00
|
|
|
|
2019-01-10 15:06:10 +01:00
|
|
|
describe('UsersUserSlideComponent', () => {
|
|
|
|
let component: UsersUserSlideComponent;
|
|
|
|
let fixture: ComponentFixture<UsersUserSlideComponent>;
|
2018-06-13 18:34:10 +02:00
|
|
|
|
2018-06-16 18:05:46 +02:00
|
|
|
beforeEach(async(() => {
|
|
|
|
TestBed.configureTestingModule({
|
2018-09-02 11:05:09 +02:00
|
|
|
imports: [E2EImportsModule],
|
2019-01-10 15:06:10 +01:00
|
|
|
declarations: [UsersUserSlideComponent]
|
2018-06-19 16:55:50 +02:00
|
|
|
}).compileComponents();
|
2018-06-16 18:05:46 +02:00
|
|
|
}));
|
2018-06-13 18:34:10 +02:00
|
|
|
|
2018-06-16 18:05:46 +02:00
|
|
|
beforeEach(() => {
|
2019-01-10 15:06:10 +01:00
|
|
|
fixture = TestBed.createComponent(UsersUserSlideComponent);
|
2018-06-16 18:05:46 +02:00
|
|
|
component = fixture.componentInstance;
|
|
|
|
fixture.detectChanges();
|
|
|
|
});
|
2018-06-13 18:34:10 +02:00
|
|
|
|
2018-06-16 18:05:46 +02:00
|
|
|
it('should create', () => {
|
|
|
|
expect(component).toBeTruthy();
|
|
|
|
});
|
2018-06-13 18:34:10 +02:00
|
|
|
});
|