2018-11-27 22:44:37 +01:00
|
|
|
import { TestBed, inject } from '@angular/core/testing';
|
|
|
|
|
|
|
|
import { E2EImportsModule } from 'e2e-imports.module';
|
|
|
|
import { MotionMultiselectService } from './motion-multiselect.service';
|
|
|
|
|
|
|
|
describe('MotionMultiselectService', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
TestBed.configureTestingModule({
|
|
|
|
imports: [E2EImportsModule],
|
|
|
|
providers: [MotionMultiselectService]
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2018-11-29 17:36:22 +01:00
|
|
|
it('should be created', inject([MotionMultiselectService], (service: MotionMultiselectService) => {
|
|
|
|
expect(service).toBeTruthy();
|
|
|
|
}));
|
2018-11-27 22:44:37 +01:00
|
|
|
});
|