Skip to content

Commit fe53980

Browse files
committed
fix skipped test cases
1 parent 545950f commit fe53980

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

automated-smoke-test/test-suites/tc-challenge-listing.spec.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ describe('Topcoder Challenge Listing Page Tests: ', () => {
5858
await ChallengeListingPageHelper.verifyFilterByType();
5959
});
6060

61-
xit('[TC-010] should verify that the "Filter" option "Sub Community" is working correctly', async () => {
61+
it('[TC-010] should verify that the "Filter" option "Sub Community" is working correctly', async () => {
6262
await ChallengeListingPageHelper.verifyFilterBySubCommunity();
6363
});
6464

@@ -88,7 +88,7 @@ describe('Topcoder Challenge Listing Page Tests: ', () => {
8888
await ChallengeListingPageHelper.verifyRemovalOfType();
8989
});
9090

91-
xit('[TC_015] should verify whether the number of filters applied are shown into Filter button according to the keyword/Type/Sub community/Date range fields selected', async () => {
91+
it('[TC_015] should verify whether the number of filters applied are shown into Filter button according to the keyword/Type/Sub community/Date range fields selected', async () => {
9292
await ChallengeListingPageHelper.openFiltersPanel();
9393
await ChallengeListingPageHelper.selectKeyword('Java');
9494
await ChallengeListingPageHelper.selectType('Challenge');
@@ -98,7 +98,7 @@ describe('Topcoder Challenge Listing Page Tests: ', () => {
9898
await ChallengeListingPageHelper.verifyNumberOfAppliedFilters(expectedFilterNumber);
9999
});
100100

101-
xit('[TC_016] should verify whether the clear filter button clears all the filters selected and all the challenges are displayed', async () => {
101+
it('[TC_016] should verify whether the clear filter button clears all the filters selected and all the challenges are displayed', async () => {
102102
await ChallengeListingPageHelper.openFiltersPanel();
103103
await ChallengeListingPageHelper.selectKeyword('Java');
104104
await ChallengeListingPageHelper.selectType('Challenge');
@@ -152,7 +152,7 @@ describe('Topcoder Challenge Listing Page Tests: ', () => {
152152
);
153153
});
154154

155-
fit('[TC-023] should verify All Challenges link functionality with the design, development, data science and QA toggle switches on', async () => {
155+
it('[TC-023] should verify All Challenges link functionality with the design, development, data science and QA toggle switches on', async () => {
156156
await ChallengeListingPageHelper.verifyAllChallenges();
157157
await ChallengeListingPageHelper.verifyOpenForRegistrationChallengesOnly();
158158
await ChallengeListingPageHelper.verifyOpenForReviewChallengesOnly();

0 commit comments

Comments
 (0)