|
| 1 | +# WDIO to Cypress Migration - Quick Summary |
| 2 | + |
| 3 | +## Migration Status |
| 4 | + |
| 5 | +| Category | Tests | Priority | Status | |
| 6 | +|----------|-------|----------|--------| |
| 7 | +| Application Settings | 2 | Medium | ⏳ Pending | |
| 8 | +| Device Users | 3 | High | ⏳ Pending | |
| 9 | +| eForm Visual Editor - Create | 1 | High | ⏳ Pending | |
| 10 | +| Folders - Tree | 3 | Medium | ⏳ Pending | |
| 11 | +| Folders - Child | 3 | Medium | ⏳ Pending | |
| 12 | +| Navigation Menu | 4 | Medium | ⏳ Pending | |
| 13 | +| Password Settings | 1 | High | ⏳ Pending | |
| 14 | +| Profile Settings | 1 | Medium | ⏳ Pending | |
| 15 | +| Searchable Lists | 3 | Medium | ⏳ Pending | |
| 16 | +| Selectable Lists | 4 | Medium | ⏳ Pending | |
| 17 | +| User Administration | 1 | High | ⏳ Pending | |
| 18 | +| Workers | 2 | Medium | ⏳ Pending | |
| 19 | +| **TOTAL** | **28** | | **0% Complete** | |
| 20 | + |
| 21 | +## Already Migrated (10 test files) |
| 22 | + |
| 23 | +✅ **Main Page eForms** (6 tests): create, filter, sort, delete, pairing, tags |
| 24 | +✅ **Sites** (1 test): site-tag.multi |
| 25 | +✅ **Navigation** (1 test): subheader |
| 26 | +✅ **eForm Visual Editor** (3 tests): edit-eform, edit-xml, multi-language |
| 27 | +✅ **Database Configuration** (1 test): database-configuration |
| 28 | + |
| 29 | +## Recommended Sub-Issue Groups |
| 30 | + |
| 31 | +### High Priority (5 tests) |
| 32 | +1. Device Users (3 tests) - Critical for mobile app testing |
| 33 | +2. Password Settings (1 test) - Security feature |
| 34 | +3. User Administration (1 test) - User management |
| 35 | + |
| 36 | +### Medium Priority - User Interface (10 tests) |
| 37 | +4. Navigation Menu (4 tests) - UI customization |
| 38 | +5. Application Settings (2 tests) - App configuration |
| 39 | +6. Profile Settings (1 test) - User preferences |
| 40 | +7. eForm Visual Editor - Create (1 test) - Form creation |
| 41 | +8. Folders - Tree & Child (6 tests) - Could be split into 2 issues |
| 42 | + |
| 43 | +### Medium Priority - Data Management (11 tests) |
| 44 | +9. Searchable Lists (3 tests) - Data entry |
| 45 | +10. Selectable Lists (4 tests) - Data entry |
| 46 | +11. Workers (2 tests) - Staff management |
| 47 | + |
| 48 | +## Next Steps |
| 49 | + |
| 50 | +1. Create GitHub issues for each category using the template in `WDIO_TO_CYPRESS_MIGRATION.md` |
| 51 | +2. Assign priorities based on business impact |
| 52 | +3. Begin with High Priority tests |
| 53 | +4. Update progress in `WDIO_TO_CYPRESS_MIGRATION.md` as tests are completed |
| 54 | + |
| 55 | +## Quick Commands |
| 56 | + |
| 57 | +```bash |
| 58 | +# View all wdio tests |
| 59 | +find eform-client/e2e/Tests -name "*.spec.ts" |
| 60 | + |
| 61 | +# View all Cypress tests |
| 62 | +find eform-client/cypress/e2e -name "*.cy.ts" |
| 63 | + |
| 64 | +# Run wdio tests |
| 65 | +yarn testheadless2a # (through testheadless2j) |
| 66 | + |
| 67 | +# Run Cypress tests |
| 68 | +yarn cypress:run |
| 69 | +``` |
| 70 | + |
| 71 | +## Documentation |
| 72 | + |
| 73 | +- Full details: [WDIO_TO_CYPRESS_MIGRATION.md](./WDIO_TO_CYPRESS_MIGRATION.md) |
| 74 | +- Testing guide: [eform-client/TESTING.md](./eform-client/TESTING.md) |
0 commit comments