Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

Commit 316f2d0

Browse files
author
Nick Litwin
committed
Fix test
1 parent e9e35cd commit 316f2d0

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

app/directives/challenge-tile/challenge-tile.directive.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
activate();
1818

1919
function activate() {
20-
console.log($scope.challenge.plain());
21-
// processChallenge($scope.challenge);
20+
// console.log($scope.challenge.plain());
21+
processChallenge($scope.challenge);
2222
}
2323

2424
function processChallenge(challenge) {

app/specs.html

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,7 @@ <h1><a href="specs.html">Spec Runner</a></h1>
148148
<script src="/app/my-challenges/my-challenges.controller.js"></script>
149149
<script src="/app/layout/layout.module.js"></script>
150150
<script src="/app/layout/header/header.controller.js"></script>
151+
<script src="/app/filters/underscore-strip.filter.js"></script>
151152
<script src="/app/filters/track.filter.js"></script>
152153
<script src="/app/filters/time-diff.filter.js"></script>
153154
<script src="/app/filters/role.filter.js"></script>
@@ -211,29 +212,29 @@ <h1><a href="specs.html">Spec Runner</a></h1>
211212
<script src="/app/services/user.service.spec.js"></script>
212213
<script src="/app/settings/settings.spec.js"></script>
213214
<script src="/app/skill-picker/skill-picker.spec.js"></script>
215+
<script src="/app/blocks/exception/exception-handler.provider.spec.js"></script>
214216
<script src="/app/account/login/login.spec.js"></script>
215217
<script src="/app/account/register/register.spec.js"></script>
216218
<script src="/app/account/reset-password/reset-password.spec.js"></script>
217-
<script src="/app/blocks/exception/exception-handler.provider.spec.js"></script>
218219
<script src="/app/directives/badges/badge-tooltip.spec.js"></script>
219220
<script src="/app/directives/challenge-tile/challenge-tile.spec.js"></script>
220221
<script src="/app/directives/external-account/external-account.directive.spec.js"></script>
221222
<script src="/app/directives/tc-paginator/tc-paginator.spec.js"></script>
222223
<script src="/app/my-dashboard/community-updates/community-updates.spec.js"></script>
223224
<script src="/app/my-dashboard/header-dashboard/header-dashboard.spec.js"></script>
224225
<script src="/app/my-dashboard/my-challenges/my-challenges.spec.js"></script>
225-
<script src="/app/my-dashboard/programs/programs.spec.js"></script>
226226
<script src="/app/my-dashboard/srms/srms.spec.js"></script>
227-
<script src="/app/peer-review/completed-review/completed-review.spec.js"></script>
227+
<script src="/app/my-dashboard/programs/programs.spec.js"></script>
228228
<script src="/app/peer-review/edit-review/edit-review.spec.js"></script>
229+
<script src="/app/peer-review/completed-review/completed-review.spec.js"></script>
229230
<script src="/app/peer-review/readOnlyScorecard/readOnlyScorecard.spec.js"></script>
230231
<script src="/app/peer-review/review-status/review-status.spec.js"></script>
231-
<script src="/app/profile/badges/badges.spec.js"></script>
232232
<script src="/app/profile/about/about.controller.spec.js"></script>
233+
<script src="/app/profile/badges/badges.spec.js"></script>
233234
<script src="/app/profile/subtrack/subtrack.spec.js"></script>
234235
<script src="/app/settings/account-info/account-info.spec.js"></script>
235-
<script src="/app/settings/edit-profile/edit-profile.spec.js"></script>
236236
<script src="/app/settings/preferences/preferences.spec.js"></script>
237+
<script src="/app/settings/edit-profile/edit-profile.spec.js"></script>
237238
<script src="/app/settings/update-password/update-password.spec.js"></script>
238239
<script src="/app/directives/account/toggle-password/toggle-password.spec.js"></script>
239240
<script src="/app/directives/account/toggle-password-with-tips/toggle-password-with-tips.spec.js"></script>

app/topcoder.constants.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
angular.module("CONSTANTS", [])
22

33
.constant("CONSTANTS", {
4-
"API_URL": "https://api.topcoder-qa.com/v3",
4+
"API_URL": "https://api.topcoder-dev.com/v3",
55
"API_URL_V2": "https://api.topcoder-dev.com/v2",
66
"ASSET_PREFIX": "",
77
"auth0Callback": "https://api.topcoder-dev.com/pub/callback.html",
@@ -31,4 +31,4 @@ angular.module("CONSTANTS", [])
3131
"BUSY_PROGRESS_MESSAGE": "Processing.."
3232
})
3333

34-
;
34+
;

0 commit comments

Comments
 (0)