Feature: Changed the unposted report to entries report with paging, sorting, etc.
This commit is contained in:
17
overlord/src/app/entries/entries.service.spec.ts
Normal file
17
overlord/src/app/entries/entries.service.spec.ts
Normal file
@ -0,0 +1,17 @@
|
||||
import { HttpClientModule } from '@angular/common/http';
|
||||
import { inject, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { EntriesService } from './entries.service';
|
||||
|
||||
describe('EntriesService', () => {
|
||||
beforeEach(() => {
|
||||
TestBed.configureTestingModule({
|
||||
imports: [HttpClientModule],
|
||||
providers: [EntriesService],
|
||||
});
|
||||
});
|
||||
|
||||
it('should be created', inject([EntriesService], (service: EntriesService) => {
|
||||
expect(service).toBeTruthy();
|
||||
}));
|
||||
});
|
||||
Reference in New Issue
Block a user