Couple more test fixes

This commit is contained in:
shamoon 2025-02-13 20:09:58 -08:00
parent 5c68177960
commit 7c3f011e84
3 changed files with 6 additions and 2 deletions

View File

@ -309,6 +309,9 @@ describe('SettingsComponent', () => {
classifier_status: SystemStatusItemStatus.OK,
classifier_last_trained: new Date().toISOString(),
classifier_error: null,
sanity_check_status: SystemStatusItemStatus.ERROR,
sanity_check_last_run: new Date().toISOString(),
sanity_check_error: 'Error running sanity check.',
},
}
jest.spyOn(systemStatusService, 'get').mockReturnValue(of(status))

View File

@ -155,7 +155,7 @@ describe('TasksComponent', () => {
jest.useFakeTimers()
fixture.detectChanges()
httpTestingController
.expectOne(`${environment.apiBaseUrl}tasks/`)
.expectOne(`${environment.apiBaseUrl}tasks/?type=file`)
.flush(tasks)
})

View File

@ -1,8 +1,9 @@
import { ObjectWithId } from './object-with-id'
export enum PaperlessTaskType {
// just file tasks, for now
File = 'file',
ScheduledTask = 'scheduled_task',
ManualTask = 'manual_task',
}
export enum PaperlessTaskStatus {