Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ocrvs 7584 e2e #1173

Merged
merged 52 commits into from
Jan 2, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
52 commits
Select commit Hold shift + click to select a range
814bb8f
new certificate svg template added
tareq89 Oct 3, 2024
247be5f
client csv certificate fields updated
tareq89 Oct 3, 2024
21b7872
added new route to get certificate config data
tareq89 Oct 3, 2024
75f8bfa
update certificate template folder
tareq89 Oct 4, 2024
74774fb
select certificate template label added
tareq89 Oct 4, 2024
0ff9fdd
additional certificate config info added
tareq89 Oct 14, 2024
9b20d9b
selectedTemplate translation added
tareq89 Oct 22, 2024
5a2b19a
ICertificateConfigData added
tareq89 Oct 29, 2024
8b81671
change log updated
tareq89 Oct 29, 2024
324bfe7
misc
tareq89 Oct 31, 2024
11b53e6
/certificates auth enabled
tareq89 Oct 31, 2024
cbea55b
certificate svg auth enabled
tareq89 Nov 1, 2024
fa9e85a
variables binding in sample svg certificates
tareq89 Nov 6, 2024
d9ba3f7
certificate indentation fixed
tareq89 Nov 11, 2024
59c23c7
rect removed from svg certificate as image container
tareq89 Nov 12, 2024
ba6a1de
groom and bride last name added in the certificate
tareq89 Nov 12, 2024
9fbaa34
misc binding issues in certificates
tareq89 Nov 12, 2024
71e94f8
misc
tareq89 Nov 13, 2024
3586ada
registrar signature condition updated
tareq89 Nov 14, 2024
67677a7
serving svg templates as file
tareq89 Nov 14, 2024
0d3e5e6
marriage certificate witness relation added
tareq89 Nov 18, 2024
f79cbed
added formattedAddress helper
tareq89 Nov 19, 2024
0500846
always using birth date in certificates, not years of age
tareq89 Nov 19, 2024
0ce2319
informant helper added in certificates
tareq89 Nov 19, 2024
415a3b8
different certificate fees changed
tareq89 Nov 20, 2024
a779fbd
added secondary font Libre Baskerville in birth certificate
tareq89 Nov 20, 2024
0589f45
marriage otherRelationship template operation changed to fieldValueTr…
tareq89 Nov 22, 2024
acee9ab
ageOf**InYears variable implementation fixed
tareq89 Nov 25, 2024
9f9f91e
merged develop
tareq89 Nov 25, 2024
f17d89d
farajaland generate e2e types
tareq89 Nov 26, 2024
db00fb8
Merge remote-tracking branch 'country-config-origin/ocrvs-7584' into …
tareq89 Nov 27, 2024
6f33827
Merge branch 'ocrvs-7584' into ocrvs-7584-e2e
tareq89 Nov 27, 2024
9955773
Merge branch 'develop' into ocrvs-7584
tareq89 Nov 27, 2024
635fe67
in progress
tareq89 Nov 29, 2024
54b7932
Merge branch 'develop' into ocrvs-7584
tareq89 Dec 1, 2024
7aabe07
Merge branch 'ocrvs-7584' into ocrvs-7584-e2e
tareq89 Dec 1, 2024
5967c27
certifed copy e2e updated
tareq89 Dec 2, 2024
0d34626
certified e2e breakdown into smaller files
tareq89 Dec 2, 2024
b04137e
certifed copy e2e updated
tareq89 Dec 3, 2024
75a992a
Merge remote-tracking branch 'country-config-origin/ocrvs-7584' into …
tareq89 Dec 4, 2024
8ea38fa
Merge branch 'ocrvs-7584' of github.com:opencrvs/opencrvs-farajaland …
tareq89 Dec 4, 2024
63d5b0b
Merge branch 'develop' into ocrvs-7584
tareq89 Dec 4, 2024
ff3d411
Merge branch 'develop' of github.com:opencrvs/opencrvs-farajaland int…
tareq89 Dec 10, 2024
0cc21d5
Merge branch 'ocrvs-7584' of github.com:opencrvs/opencrvs-countryconf…
tareq89 Dec 10, 2024
d1ca2ea
Merge branch 'ocrvs-7584' into ocrvs-7584-e2e
tareq89 Dec 11, 2024
0091240
Merge branch 'develop' of github.com:opencrvs/opencrvs-farajaland int…
tareq89 Jan 1, 2025
ac27275
birth declaration e2e tests
tareq89 Jan 1, 2025
faca4e2
regrouped all the certified copy tests for birth
tareq89 Jan 1, 2025
988aafc
e2e certified copy death test
tareq89 Jan 1, 2025
b66d22b
certified copy affidavit test fixed
tareq89 Jan 2, 2025
e85901d
gateway types updated
tareq89 Jan 2, 2025
0a1d398
missing template selector code added in rest of the e2e
tareq89 Jan 2, 2025
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
24 changes: 20 additions & 4 deletions e2e/constants.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,24 @@
export const DOMAIN = process.env.DOMAIN || 'farajaland-dev.opencrvs.org'
export const LOGIN_URL = 'https://login.' + DOMAIN
export const AUTH_URL = 'https://auth.' + DOMAIN
export const CLIENT_URL = 'https://register.' + DOMAIN
export const GATEWAY_HOST = 'https://gateway.' + DOMAIN

export const LOGIN_URL =
process.env.NODE_ENV === 'development'
? 'http://localhost:3020'
: 'https://login.' + DOMAIN

export const AUTH_URL =
process.env.NODE_ENV === 'development'
? 'http://localhost:4040'
: 'https://auth.' + DOMAIN

export const CLIENT_URL =
process.env.NODE_ENV === 'development'
? 'http://localhost:3000'
: 'https://register.' + DOMAIN

export const GATEWAY_HOST =
process.env.NODE_ENV === 'development'
? 'http://localhost:7070'
: 'https://gateway.' + DOMAIN

/*
* This timeout is to ensure that all previous actions have been completed
Expand Down
Loading
Loading