7 lines
197 B
Python
7 lines
197 B
Python
"""Constants for the Jellyfin integration tests."""
|
|
|
|
from typing import Final
|
|
|
|
TEST_URL: Final = "https://example.com"
|
|
TEST_USERNAME: Final = "test-username"
|
|
TEST_PASSWORD: Final = "test-password"
|