2018-12-12 18:06:06 +01:00
|
|
|
import { TestBed } from '@angular/core/testing';
|
|
|
|
|
|
|
|
import { DurationService } from './duration.service';
|
|
|
|
import { E2EImportsModule } from 'e2e-imports.module';
|
|
|
|
|
|
|
|
describe('DurationService', () => {
|
2019-01-10 12:54:48 +01:00
|
|
|
beforeEach(() =>
|
|
|
|
TestBed.configureTestingModule({
|
|
|
|
imports: [E2EImportsModule]
|
|
|
|
})
|
|
|
|
);
|
2018-12-12 18:06:06 +01:00
|
|
|
|
|
|
|
it('should be created', () => {
|
|
|
|
const service: DurationService = TestBed.get(DurationService);
|
|
|
|
expect(service).toBeTruthy();
|
|
|
|
});
|
|
|
|
});
|