Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
c28d451
migrate manager menu items
christian-byrne Apr 9, 2025
588bd99
Update locales [skip ci]
invalid-email-address Apr 9, 2025
de6ed34
switch to v2 manager API endpoints
christian-byrne Apr 9, 2025
54a0981
re-arrange menu items
christian-byrne Apr 11, 2025
eb5c49f
await promises. update settings schema
christian-byrne Apr 14, 2025
aba2e5e
move legacy option to startup arg
christian-byrne Apr 14, 2025
f8953a8
Add banner indicating how to use legacy manager UI
christian-byrne Apr 14, 2025
e780e1d
Update locales [skip ci]
invalid-email-address Apr 14, 2025
b01056e
add "Check for Updates", "Install Missing" menu items
christian-byrne Apr 14, 2025
bdd1230
Update locales [skip ci]
invalid-email-address Apr 14, 2025
1aee434
use correct response shape
christian-byrne Apr 14, 2025
f1610db
improve command names
christian-byrne Apr 14, 2025
4f94707
dont show missing nodes button in legacy manager mode
christian-byrne Apr 15, 2025
8075db4
[Update to v2 API] update WS done message
christian-byrne Apr 15, 2025
1a29fb9
migrate manager menu items
christian-byrne Apr 9, 2025
e0aa0d0
re-arrange menu items
christian-byrne Apr 11, 2025
4a518eb
await promises. update settings schema
christian-byrne Apr 14, 2025
a70d013
move legacy option to startup arg
christian-byrne Apr 14, 2025
edc61a0
Add banner indicating how to use legacy manager UI
christian-byrne Apr 14, 2025
7318ef9
add "Check for Updates", "Install Missing" menu items
christian-byrne Apr 14, 2025
5ad236e
use correct response shape
christian-byrne Apr 14, 2025
0d1da6d
improve command names
christian-byrne Apr 14, 2025
a4c0ab0
dont show missing nodes button in legacy manager mode
christian-byrne Apr 15, 2025
229c0e5
Update locales [skip ci]
invalid-email-address Apr 26, 2025
3af4f82
[manager] Update type definitions and schemas for menu items migration
christian-byrne Jun 13, 2025
9551595
[manager] Update core services for new manager API
christian-byrne Jun 13, 2025
9d58d4e
[manager] Update composables and state management
christian-byrne Jun 13, 2025
2914c67
[manager] Update UI components for new manager interface
christian-byrne Jun 13, 2025
d76702e
[manager] Update tests for new manager API
christian-byrne Jun 13, 2025
7685ca3
[manager] Fix test failures and missing type definitions
christian-byrne Jun 14, 2025
5e285db
fix rebase errors
christian-byrne Jun 21, 2025
9fceda8
[Manager] Filter task queue and history by client id (#4241)
christian-byrne Jun 21, 2025
8a920f1
fix failed task tab state binding
christian-byrne Jun 22, 2025
ea9bc11
[Manager] Fix: failed tasks logs not correctly partitioned in UI (#4242)
christian-byrne Jun 22, 2025
b7ba509
[tests] Update useServerLogs test to handle task-started events
christian-byrne Jun 22, 2025
c2f3a47
fix: logs stops listening after 1st of multiple queue tasks
christian-byrne Jun 23, 2025
88d8d14
remove the temporary check for legacy custom node version of manager
christian-byrne Jun 23, 2025
20b47ef
[tests] Update useServerLogs test after log subscription change
christian-byrne Jun 23, 2025
84542e8
[Manager] Add update all button functionality
viva-jinyi Jun 24, 2025
8e6ed32
[Manager] “Restarting” state after clicking restart button (#4269)
viva-jinyi Jun 26, 2025
ec4e672
fix rebase error
christian-byrne Jul 11, 2025
c10c151
Update locales [skip ci]
invalid-email-address Jul 11, 2025
aa5e8e5
[test] Update PackVersionBadge test to use role selector instead of B…
viva-jinyi Jul 11, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[tests] Update useServerLogs test after log subscription change
The test was expecting subscribeLogs(false) to be called, but this was commented out in commit 33d6447 to fix logs stopping after the first of multiple queue tasks. Updated test to reflect this temporary change.
  • Loading branch information
christian-byrne committed Aug 27, 2025
commit 20b47efffbf04ff38cb632f11c75f59863413c05
5 changes: 4 additions & 1 deletion tests-ui/tests/composables/useServerLogs.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,10 @@ describe('useServerLogs', () => {
await startListening()
await stopListening()

expect(api.subscribeLogs).toHaveBeenCalledWith(false)
// TODO: Update this test when subscribeLogs(false) is re-enabled
// Currently commented out in useServerLogs to prevent logs from stopping
// after 1st of multiple queue tasks
expect(api.subscribeLogs).toHaveBeenCalledWith(true)
})

it('should register event listener when starting', async () => {
Expand Down