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