Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
8907f4e
Add e2e test case covering individual json schema config workflow
weilu Aug 6, 2025
ae77ce2
Add activity admin CRUD E2E tests
weilu Aug 7, 2025
8deb236
Extract deleteModuleConfig e2e command for reuse
weilu Aug 7, 2025
1d712af
Add E2E test for menu config
weilu Aug 7, 2025
6b3be4d
Add E2E tests for program creation & deletion
weilu Aug 7, 2025
3a5ed94
fix: baseUrl setup to offer flexibility
weilu Aug 7, 2025
ebd7c32
Add E2E tests for group programs creation and deletion
weilu Aug 19, 2025
c26e35c
Add individual program update E2E test
weilu Aug 21, 2025
a48042c
Add group program update E2E test
weilu Aug 21, 2025
ff99223
Set HOSTS to fix the CSRF issue
weilu Aug 21, 2025
d214d82
Adjust E2E tests and config such that it can be used with or without …
weilu Sep 4, 2025
98b734f
Disable sonar coverage check on this repo
weilu Sep 5, 2025
fd6344d
Exclude test code from duplication analysis
weilu Sep 5, 2025
6e91d12
Move to the maintained version of sonar action
weilu Sep 5, 2025
ea1db8f
Extract language pack check into util func & use it in E2E tests
weilu Sep 5, 2025
cf3f696
Add individual & household csv import E2E test
weilu Sep 5, 2025
039cc2e
Pin down 3rd party GitHub action versions
weilu Sep 5, 2025
5f2f7df
Increase server check timeout & log non-200 response code
weilu Sep 5, 2025
6f9d1b9
Add domain config to avoid 400 when request is redirected to https
weilu Sep 5, 2025
bf0b0cc
Reorganize cash transfer tests to share setup steps
weilu Sep 11, 2025
185d9ee
Trigger admin user auto provision of DB core user before admin tests
weilu Sep 11, 2025
d07c4c3
Add failed login E2E tests
weilu Sep 11, 2025
078a161
Add E2E tests on default enrollment criteria config on programs
weilu Sep 11, 2025
2dad2ec
E2E test for creating and deleting a project under a household program
weilu Sep 20, 2025
8b638ca
E2E tests for update a project and restore a deleted project
weilu Sep 20, 2025
8f9b022
Fix E2E login before each tests so the entire suite runs correctly
weilu Sep 21, 2025
a75b81e
Individual program’s Project create/update/delete/restore E2E tests
weilu Oct 2, 2025
60320a7
Ensure individual csv group codes are different across E2E runs
weilu Oct 15, 2025
7d34392
Add E2E test for group program enrollment
weilu Oct 16, 2025
f5cff20
E2E test for household enrollment into a project
weilu Oct 17, 2025
b669d25
Add E2E test for individual enrollment into a program
weilu Oct 18, 2025
cd9f6df
E2E test for individual project enrollment & filter
weilu Oct 21, 2025
0ae0695
Merge branch 'develop' into feature/coremis-e2e
weilu Nov 20, 2025
6e850d0
added base grievance creation test cases
Shahzaibahmad97 Dec 12, 2025
57c4ec7
fix: improve grievance e2e tests reliability
Shahzaibahmad97 Feb 20, 2026
d8ba8ad
feat: add comprehensive grievance e2e test suite
Shahzaibahmad97 Feb 24, 2026
d0d8ad3
Merge remote-tracking branch 'origin/develop' into feature/coremis-e2…
Shahzaibahmad97 Feb 24, 2026
469fa91
fix: resolve grievance e2e test failures and clean up test code
Shahzaibahmad97 Feb 27, 2026
49497a2
removed unnecessary/old copy of .env.cache in ci
Shahzaibahmad97 Feb 27, 2026
6a2bee8
removed detailed instructions from readme as they are moved to contri…
Shahzaibahmad97 Feb 27, 2026
fba48b8
added a blank line to keep it same
Shahzaibahmad97 Feb 27, 2026
9afca01
removed the wrong named file which is already renamed
Shahzaibahmad97 Feb 27, 2026
f6fd7be
fix(e2e): stabilize grievance login flow and cleanup redundant auth h…
Shahzaibahmad97 Mar 4, 2026
8a95114
refactor(e2e): reuse autocomplete helper and remove redundant picker …
Shahzaibahmad97 Mar 17, 2026
6078ded
added assert for priority and description on update workflow
Shahzaibahmad97 Mar 17, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions cypress/e2e/admin.cy.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import { capitalizeWords } from '../support/utils';

const path = require('path');

describe('Django admin workflows', () => {
Expand Down Expand Up @@ -50,7 +48,7 @@ describe('Django admin workflows', () => {
'Tasks Management',
'Administration',
]
const programMenuText = 'programmes'
const programMenuText = 'Programs'
const expectedSubMenuItems = [
'Individuals',
'Groups',
Expand Down
Loading
Loading