Skip to content

Commit

Permalink
Merge pull request #4478 from appirio-tech/dev
Browse files Browse the repository at this point in the history
[PROD] Milestone Management - Customer Approval
  • Loading branch information
RishiRajSahu committed Sep 7, 2021
2 parents cd81f2b + 21eabe9 commit 7dd6088
Show file tree
Hide file tree
Showing 60 changed files with 2,829 additions and 4,295 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ workflows:
- build-dev
filters: &filters-dev
branches:
only: ['dev', 'feature/new-milestone-concept']
only: ['dev', 'feature/milestone-customer-approval']

- deployTest01:
context : org-global
Expand Down
26 changes: 26 additions & 0 deletions connect-automation/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"args": [
"-u",
"tdd",
"--timeout",
"999999",
"--colors",
"${workspaceFolder}/test-suites"
],
"internalConsoleOptions": "openOnSessionStart",
"name": "Mocha Tests",
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
"request": "launch",
"skipFiles": [
"<node_internals>/**"
],
"type": "pwa-node"
},
]
}
14 changes: 12 additions & 2 deletions connect-automation/conf.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,15 @@ exports.config = {
'--disable-gpu',
'--no-sandbox',
'--window-size=1325x744',
'disable-infobars'
],
'excludeSwitches': ['enable-automation'],
prefs: {
'credentials_enable_service': false,
'profile': {
'password_manager_enabled': false
}
}
},
},

Expand All @@ -41,8 +49,10 @@ exports.config = {
'../temp/test-suites/project-creation-flow/create-project.spec.js',
'../temp/test-suites/project-creation-flow/invite-copilot.spec.js',
'../temp/test-suites/project-creation-flow/projects.spec.js',
'../temp/test-suites/phase-creation-flow/create-new-phase.spec.js',
'../temp/test-suites/project-settings-flow/project-settings.spec.js'
'../temp/test-suites/project-settings-flow/project-settings.spec.js',
'../temp/test-suites/milestone-flow/create-new-milestone.spec.js',
'../temp/test-suites/milestone-flow/verify-customer-role.spec.js',
'../temp/test-suites/milestone-flow/verify-customer-approveMilestone.spec.js'
],

// Options to be passed to Jasmine.
Expand Down
55 changes: 27 additions & 28 deletions connect-automation/config/config.json
Original file line number Diff line number Diff line change
@@ -1,29 +1,28 @@
{
"env": "dev",
"username": "mailmemakar402",
"password": "P@ssw0rd",
"customerRole": {
"email": "topcoderconnect+Customer@gmail.com",
"password": "appirio123"
},
"copilotRole": {
"email": "topcoderconnect+Copilot@gmail.com",
"password": "appirio123"
},
"copilotManagerRole": {
"email": "topcoderconnect+CopilotManager@gmail.com",
"password": "appirio123"
},
"homePageUrl": "https://connect.topcoder-dev.com/",
"loginUrl": "https://auth.topcoder-dev.com",
"redirectLoginUrl": "https://accounts-auth0.topcoder-dev.com/?regSource=tcBusiness&retUrl=https://connect.topcoder-dev.com",
"logoutUrl": "https://accounts-auth0.topcoder-dev.com/?logout=true&retUrl=https://connect.topcoder-dev.com",
"myProfileUrl": "https://connect.topcoder-dev.com/settings/profile",
"notificationSettingsUrl": "https://connect.topcoder-dev.com/settings/notifications",
"accountAndSecurityUrl": "https://connect.topcoder-dev.com/settings/account",
"notificationsUrl": "https://connect.topcoder-dev.com/notifications",
"allProjectsUrl": "https://connect.topcoder-dev.com/projects",
"givenProjectUrl": "https://connect.topcoder-dev.com/projects/18013",
"expiredProjectUrl": "https://connect.topcoder-dev.com/projects/17236",
"platformUrl": "https://platform.topcoder-dev.com/taas/myteams"
}
"env": "dev",
"username": "mailmemakar402",
"password": "P@ssw0rd",
"customerRole": {
"email": "topcoderconnect+Customer@gmail.com",
"password": "appirio123"
},
"copilotRole": {
"email": "topcoderconnect+Copilot@gmail.com",
"password": "appirio123"
},
"copilotManagerRole": {
"email": "topcoderconnect+CopilotManager@gmail.com",
"password": "appirio123"
},
"homePageUrl": "https://connect.topcoder-dev.com/",
"loginUrl": "https://auth.topcoder-dev.com",
"redirectLoginUrl": "https://accounts-auth0.topcoder-dev.com/?regSource=tcBusiness&retUrl=https://connect.topcoder-dev.com",
"logoutUrl": "https://accounts-auth0.topcoder-dev.com/?logout=true&retUrl=https://connect.topcoder-dev.com",
"myProfileUrl": "https://connect.topcoder-dev.com/settings/profile",
"notificationSettingsUrl": "https://connect.topcoder-dev.com/settings/notifications",
"accountAndSecurityUrl": "https://connect.topcoder-dev.com/settings/account",
"notificationsUrl": "https://connect.topcoder-dev.com/notifications",
"allProjectsUrl": "https://connect.topcoder-dev.com/projects",
"expiredProjectUrl": "https://connect.topcoder-dev.com/projects/17236",
"platformUrl": "https://platform.topcoder-dev.com/taas/myteams"
}
Loading

0 comments on commit 7dd6088

Please sign in to comment.