Skip to content

Commit 7dd6088

Browse files
authored
Merge pull request #4478 from appirio-tech/dev
[PROD] Milestone Management - Customer Approval
2 parents cd81f2b + 21eabe9 commit 7dd6088

File tree

60 files changed

+2829
-4295
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+2829
-4295
lines changed

.circleci/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ workflows:
195195
- build-dev
196196
filters: &filters-dev
197197
branches:
198-
only: ['dev', 'feature/new-milestone-concept']
198+
only: ['dev', 'feature/milestone-customer-approval']
199199

200200
- deployTest01:
201201
context : org-global
+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"args": [
9+
"-u",
10+
"tdd",
11+
"--timeout",
12+
"999999",
13+
"--colors",
14+
"${workspaceFolder}/test-suites"
15+
],
16+
"internalConsoleOptions": "openOnSessionStart",
17+
"name": "Mocha Tests",
18+
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
19+
"request": "launch",
20+
"skipFiles": [
21+
"<node_internals>/**"
22+
],
23+
"type": "pwa-node"
24+
},
25+
]
26+
}

connect-automation/conf.ts

+12-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,15 @@ exports.config = {
2626
'--disable-gpu',
2727
'--no-sandbox',
2828
'--window-size=1325x744',
29+
'disable-infobars'
2930
],
31+
'excludeSwitches': ['enable-automation'],
32+
prefs: {
33+
'credentials_enable_service': false,
34+
'profile': {
35+
'password_manager_enabled': false
36+
}
37+
}
3038
},
3139
},
3240

@@ -41,8 +49,10 @@ exports.config = {
4149
'../temp/test-suites/project-creation-flow/create-project.spec.js',
4250
'../temp/test-suites/project-creation-flow/invite-copilot.spec.js',
4351
'../temp/test-suites/project-creation-flow/projects.spec.js',
44-
'../temp/test-suites/phase-creation-flow/create-new-phase.spec.js',
45-
'../temp/test-suites/project-settings-flow/project-settings.spec.js'
52+
'../temp/test-suites/project-settings-flow/project-settings.spec.js',
53+
'../temp/test-suites/milestone-flow/create-new-milestone.spec.js',
54+
'../temp/test-suites/milestone-flow/verify-customer-role.spec.js',
55+
'../temp/test-suites/milestone-flow/verify-customer-approveMilestone.spec.js'
4656
],
4757

4858
// Options to be passed to Jasmine.

connect-automation/config/config.json

+27-28
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,28 @@
11
{
2-
"env": "dev",
3-
"username": "mailmemakar402",
4-
"password": "P@ssw0rd",
5-
"customerRole": {
6-
"email": "[email protected]",
7-
"password": "appirio123"
8-
},
9-
"copilotRole": {
10-
"email": "[email protected]",
11-
"password": "appirio123"
12-
},
13-
"copilotManagerRole": {
14-
"email": "[email protected]",
15-
"password": "appirio123"
16-
},
17-
"homePageUrl": "https://connect.topcoder-dev.com/",
18-
"loginUrl": "https://auth.topcoder-dev.com",
19-
"redirectLoginUrl": "https://accounts-auth0.topcoder-dev.com/?regSource=tcBusiness&retUrl=https://connect.topcoder-dev.com",
20-
"logoutUrl": "https://accounts-auth0.topcoder-dev.com/?logout=true&retUrl=https://connect.topcoder-dev.com",
21-
"myProfileUrl": "https://connect.topcoder-dev.com/settings/profile",
22-
"notificationSettingsUrl": "https://connect.topcoder-dev.com/settings/notifications",
23-
"accountAndSecurityUrl": "https://connect.topcoder-dev.com/settings/account",
24-
"notificationsUrl": "https://connect.topcoder-dev.com/notifications",
25-
"allProjectsUrl": "https://connect.topcoder-dev.com/projects",
26-
"givenProjectUrl": "https://connect.topcoder-dev.com/projects/18013",
27-
"expiredProjectUrl": "https://connect.topcoder-dev.com/projects/17236",
28-
"platformUrl": "https://platform.topcoder-dev.com/taas/myteams"
29-
}
2+
"env": "dev",
3+
"username": "mailmemakar402",
4+
"password": "P@ssw0rd",
5+
"customerRole": {
6+
"email": "[email protected]",
7+
"password": "appirio123"
8+
},
9+
"copilotRole": {
10+
"email": "[email protected]",
11+
"password": "appirio123"
12+
},
13+
"copilotManagerRole": {
14+
"email": "[email protected]",
15+
"password": "appirio123"
16+
},
17+
"homePageUrl": "https://connect.topcoder-dev.com/",
18+
"loginUrl": "https://auth.topcoder-dev.com",
19+
"redirectLoginUrl": "https://accounts-auth0.topcoder-dev.com/?regSource=tcBusiness&retUrl=https://connect.topcoder-dev.com",
20+
"logoutUrl": "https://accounts-auth0.topcoder-dev.com/?logout=true&retUrl=https://connect.topcoder-dev.com",
21+
"myProfileUrl": "https://connect.topcoder-dev.com/settings/profile",
22+
"notificationSettingsUrl": "https://connect.topcoder-dev.com/settings/notifications",
23+
"accountAndSecurityUrl": "https://connect.topcoder-dev.com/settings/account",
24+
"notificationsUrl": "https://connect.topcoder-dev.com/notifications",
25+
"allProjectsUrl": "https://connect.topcoder-dev.com/projects",
26+
"expiredProjectUrl": "https://connect.topcoder-dev.com/projects/17236",
27+
"platformUrl": "https://platform.topcoder-dev.com/taas/myteams"
28+
}

0 commit comments

Comments
 (0)