This commit is contained in:
Amritanshu
2019-06-23 01:35:00 +05:30
parent 20801afc8a
commit 142a0f5a8a
42 changed files with 1069 additions and 234 deletions

View File

@ -0,0 +1,15 @@
import {inject, TestBed} from '@angular/core/testing';
import {SectionListResolver} from './section-list-resolver.service';
describe('SectionListResolverService', () => {
beforeEach(() => {
TestBed.configureTestingModule({
providers: [SectionListResolver]
});
});
it('should be created', inject([SectionListResolver], (service: SectionListResolver) => {
expect(service).toBeTruthy();
}));
});