Files
ComfyUI-Lora-Manager/tests/routes/__snapshots__/test_api_snapshots.ambr
T
Will Miao 5adfa3be36 feat(settings): editable model library paths for standalone mode
Standalone users previously had to hand-edit settings.json to configure
primary folder_paths. Add a standalone-only Model Paths section to the
settings modal:

- Backend exposes standalone_mode, folder_paths (with template placeholder
  values filtered out) and a data-driven folder_path_schema derived from
  OTHER_MODEL_FOLDER_SUBTYPES via GET /api/lm/settings
- The new section renders multi-path editors per model type from the
  schema, with inline enable_other_models / sub-type controls so other
  model types are configured without leaving the tab
- Persistent restart-required cues after a save: nav dot, inline notice
  and a global banner (unique id per change so dismissals don't mute
  future reminders)
- The missing-model-paths startup banner and the Other Models no-paths
  empty state now deep-link into the new section instead of pointing at
  settings.json
2026-09-18 19:36:19 +08:00

74 lines
1.9 KiB
Plaintext

# serializer version: 1
# name: TestModelLibraryHandlerSnapshots.test_check_model_exists_empty_response
dict({
'downloadedVersionIds': list([
]),
'modelType': None,
'success': True,
'versions': list([
]),
})
# ---
# name: TestNodeRegistryHandlerSnapshots.test_register_nodes_error_response
dict({
'message': '0 nodes registered successfully',
'success': True,
})
# ---
# name: TestNodeRegistryHandlerSnapshots.test_register_nodes_success_response
dict({
'message': '1 nodes registered successfully',
'success': True,
})
# ---
# name: TestSettingsHandlerSnapshots.test_get_settings_response_format
dict({
'messages': list([
]),
'settings': dict({
'civitai_api_key_set': True,
'language': 'en',
'llm_api_key_set': False,
'other_models_paths_available': False,
'standalone_mode': False,
'theme': 'dark',
}),
'success': True,
})
# ---
# name: TestSettingsHandlerSnapshots.test_update_settings_success_response
dict({
'success': True,
})
# ---
# name: TestUtilityFunctionSnapshots.test_calculate_recipe_fingerprint_various_inputs
list([
'',
'abc123:1.0',
'abc123:1.0|def456:0.75',
'abc123:0.5|def456:1.0',
'abc123:0.8',
'12345:1.0',
'',
'',
'',
])
# ---
# name: TestUtilityFunctionSnapshots.test_sanitize_folder_name_various_inputs
dict({
'': '',
' spaces ': 'spaces',
'___underscores___': 'underscores',
'folder with spaces': 'folder with spaces',
'folder"with"quotes': 'folder_with_quotes',
'folder*with*asterisks': 'folder_with_asterisks',
'folder.with.dots': 'folder.with.dots',
'folder/with/slashes': 'folder_with_slashes',
'folder<with>brackets': 'folder_with_brackets',
'folder?with?questions': 'folder_with_questions',
'folder\\with\\backslashes': 'folder_with_backslashes',
'folder|with|pipes': 'folder_with_pipes',
'normal_folder': 'normal_folder',
})
# ---