From e22a2afba45e873ae2fbaae06a79166e12a1072b Mon Sep 17 00:00:00 2001 From: "Luiz R. Rodrigues" Date: Mon, 5 Jul 2021 22:56:58 -0300 Subject: [PATCH 1/4] AST - Run Member Profile Test Cases only --- automated-smoke-test/conf.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/automated-smoke-test/conf.ts b/automated-smoke-test/conf.ts index c283b6375b..255a97564c 100644 --- a/automated-smoke-test/conf.ts +++ b/automated-smoke-test/conf.ts @@ -41,10 +41,10 @@ exports.config = { // '../temp/test-suites/tc-header.spec.js', // '../temp/test-suites/tc-footer.spec.js', // '../temp/test-suites/tc-preferences.spec.js', - '../temp/test-suites/tc-challenge-listing.spec.js', - '../temp/test-suites/tc-challenge-detail.spec.js', + // '../temp/test-suites/tc-challenge-listing.spec.js', + // '../temp/test-suites/tc-challenge-detail.spec.js', // '../temp/test-suites/tc-my-dashboard.spec.js', - // '../temp/test-suites/tc-member-profile.spec.js', + '../temp/test-suites/tc-member-profile.spec.js', ], // Options to be passed to Jasmine. From 1b5c8b52b0f43185a5e39ced408b20004b0118fa Mon Sep 17 00:00:00 2001 From: "Luiz R. Rodrigues" Date: Mon, 5 Jul 2021 22:57:14 -0300 Subject: [PATCH 2/4] Updated test data --- automated-smoke-test/config/automation-config-beta.json | 6 +++--- automated-smoke-test/config/automation-config-prod.json | 6 +++--- automated-smoke-test/config/automation-config-staging.json | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/automated-smoke-test/config/automation-config-beta.json b/automated-smoke-test/config/automation-config-beta.json index 9ba4ecc18b..a5d3762c17 100644 --- a/automated-smoke-test/config/automation-config-beta.json +++ b/automated-smoke-test/config/automation-config-beta.json @@ -152,7 +152,7 @@ "numberOfSubtracks": 11, "winInfo": { "name": "WEB DESIGNS", - "info": "258", + "info": "268", "infoTitle": "WINS", "link": "https://beta-community-app.topcoder.com/members/iamtong/details/?track=DESIGN&subTrack=WEB_DESIGNS" } @@ -160,10 +160,10 @@ "developmentProfile": { "handle": "iamtong", "trackName": "DEVELOP", - "numberOfSubtracks": 8, + "numberOfSubtracks": 7, "winInfo": { "name": "FIRST2FINISH", - "info": "56", + "info": "61", "infoTitle": "WINS", "link": "https://beta-community-app.topcoder.com/members/iamtong/details/?track=DEVELOP&subTrack=FIRST_2_FINISH" } diff --git a/automated-smoke-test/config/automation-config-prod.json b/automated-smoke-test/config/automation-config-prod.json index f0fb447d58..6c1f60df05 100644 --- a/automated-smoke-test/config/automation-config-prod.json +++ b/automated-smoke-test/config/automation-config-prod.json @@ -148,7 +148,7 @@ "numberOfSubtracks": 11, "winInfo": { "name": "WEB DESIGNS", - "info": "258", + "info": "268", "infoTitle": "WINS", "link": "https://www.topcoder.com/members/iamtong/details/?track=DESIGN&subTrack=WEB_DESIGNS" } @@ -156,10 +156,10 @@ "developmentProfile": { "handle": "iamtong", "trackName": "DEVELOP", - "numberOfSubtracks": 8, + "numberOfSubtracks": 7, "winInfo": { "name": "FIRST2FINISH", - "info": "56", + "info": "61", "infoTitle": "WINS", "link": "https://www.topcoder.com/members/iamtong/details/?track=DEVELOP&subTrack=FIRST_2_FINISH" } diff --git a/automated-smoke-test/config/automation-config-staging.json b/automated-smoke-test/config/automation-config-staging.json index 693a4ba44e..e75c937db5 100644 --- a/automated-smoke-test/config/automation-config-staging.json +++ b/automated-smoke-test/config/automation-config-staging.json @@ -153,7 +153,7 @@ "numberOfSubtracks": 11, "winInfo": { "name": "WEB DESIGNS", - "info": "258", + "info": "268", "infoTitle": "WINS", "link": "https://staging-community-app.topcoder.com/members/iamtong/details/?track=DESIGN&subTrack=WEB_DESIGNS" } @@ -161,10 +161,10 @@ "developmentProfile": { "handle": "iamtong", "trackName": "DEVELOP", - "numberOfSubtracks": 8, + "numberOfSubtracks": 7, "winInfo": { "name": "FIRST2FINISH", - "info": "56", + "info": "61", "infoTitle": "WINS", "link": "https://staging-community-app.topcoder.com/members/iamtong/details/?track=DEVELOP&subTrack=FIRST_2_FINISH" } From 1c94f4cfb3165eae613f42327a401d191ce29ede Mon Sep 17 00:00:00 2001 From: "Luiz R. Rodrigues" Date: Mon, 5 Jul 2021 22:58:09 -0300 Subject: [PATCH 3/4] ci: Deploy ast-member-profile to Stag --- .circleci/config.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 832d6f80cd..fc63a4dde8 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -369,7 +369,8 @@ workflows: filters: &filters-staging branches: only: - - develop + - develop + - ast-member-profile # Production builds are exectuted # when PR is merged to the master # Don't change anything in this configuration From b655ea62d5da959b44212e1fa618e2eca84885fc Mon Sep 17 00:00:00 2001 From: "Luiz R. Rodrigues" Date: Tue, 6 Jul 2021 11:06:54 -0300 Subject: [PATCH 4/4] ast: Enable finished Test Cases --- automated-smoke-test/conf.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/automated-smoke-test/conf.ts b/automated-smoke-test/conf.ts index 255a97564c..cef10377c4 100644 --- a/automated-smoke-test/conf.ts +++ b/automated-smoke-test/conf.ts @@ -34,15 +34,15 @@ exports.config = { framework: 'jasmine2', specs: [ - // '../temp/test-suites/tc-login.spec.js' + '../temp/test-suites/tc-login.spec.js', // '../temp/test-suites/tc-tools.spec.js', // '../temp/test-suites/tc-account.spec.js', // '../temp/test-suites/tc-profile.spec.js', // '../temp/test-suites/tc-header.spec.js', // '../temp/test-suites/tc-footer.spec.js', // '../temp/test-suites/tc-preferences.spec.js', - // '../temp/test-suites/tc-challenge-listing.spec.js', - // '../temp/test-suites/tc-challenge-detail.spec.js', + '../temp/test-suites/tc-challenge-listing.spec.js', + '../temp/test-suites/tc-challenge-detail.spec.js', // '../temp/test-suites/tc-my-dashboard.spec.js', '../temp/test-suites/tc-member-profile.spec.js', ],