mirror of
https://github.com/langgenius/dify.git
synced 2026-05-06 02:18:08 +08:00
- Introduced Playwright for end-to-end testing, including configuration in . - Created global setup and teardown scripts for authentication and cleanup. - Added page object models for key application pages (Apps, SignIn, Workflow). - Implemented utility functions for API interactions and common test helpers. - Updated to exclude Playwright test results and auth files. - Added initial E2E tests for the Apps page. - Updated with new test scripts for E2E testing.
11 lines
262 B
TypeScript
11 lines
262 B
TypeScript
/**
|
|
* Page Object Models Index
|
|
*
|
|
* Export all page objects from a single entry point.
|
|
*/
|
|
|
|
export { BasePage } from './base.page'
|
|
export { SignInPage } from './signin.page'
|
|
export { AppsPage } from './apps.page'
|
|
export { WorkflowPage } from './workflow.page'
|