- Created Playwright configuration file to set up testing environment. - Added a new e2e test for user authentication in login.spec.ts. - Updated tsconfig.node.json to include playwright.config.ts. - Enhanced vite.config.ts to include API proxying for backend integration. - Added a placeholder for last run test results in .last-run.json.
40 lines
559 B
Python
40 lines
559 B
Python
from .auth import (
|
|
AuthResponse,
|
|
LoginRequest,
|
|
RegisterRequest,
|
|
TokenPayload,
|
|
TokenResponse,
|
|
UserInDB,
|
|
UserPublic,
|
|
)
|
|
from .base import (
|
|
StationCreate,
|
|
StationModel,
|
|
TrackCreate,
|
|
TrackModel,
|
|
TrainScheduleCreate,
|
|
TrainCreate,
|
|
TrainModel,
|
|
UserCreate,
|
|
to_camel,
|
|
)
|
|
|
|
__all__ = [
|
|
"LoginRequest",
|
|
"RegisterRequest",
|
|
"AuthResponse",
|
|
"TokenPayload",
|
|
"TokenResponse",
|
|
"UserInDB",
|
|
"UserPublic",
|
|
"StationCreate",
|
|
"StationModel",
|
|
"TrackCreate",
|
|
"TrackModel",
|
|
"TrainScheduleCreate",
|
|
"TrainCreate",
|
|
"TrainModel",
|
|
"UserCreate",
|
|
"to_camel",
|
|
]
|