fix cloud ordering

This commit is contained in:
Richard Yu
2025-12-03 23:53:04 -08:00
parent b9537d352a
commit 2aa2be6d90
3 changed files with 37 additions and 28 deletions

View File

@@ -332,7 +332,7 @@ describe('useJobList', () => {
expect(vi.getTimerCount()).toBe(0)
})
it('sorts all tasks by queue index descending', async () => {
it('sorts all tasks by priority descending', async () => {
queueStoreMock.pendingTasks = [
createTask({ promptId: 'p', queueIndex: 1, mockState: 'pending' })
]