Files
barker/bookie/src/app/sections/section-list.resolver.spec.ts
Amritanshu 010e9a84db Chore: Upgrade to Angular v18
Chore: Upgrade to Python 3.12
Chore: Upgrade to psycopg3
2024-06-03 13:22:56 +05:30

16 lines
427 B
TypeScript

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();
}));
});