Skip to content

Commit 4dd9bd0

Browse files
remove unused test/ spec files
1 parent 9a6de26 commit 4dd9bd0

File tree

6 files changed

+3
-84
lines changed

6 files changed

+3
-84
lines changed

ui-dev/src/app/services/global-features.service.spec.ts

Lines changed: 0 additions & 16 deletions
This file was deleted.

ui-dev/src/app/services/loader.service.spec.ts

Lines changed: 0 additions & 16 deletions
This file was deleted.

ui-dev/src/app/services/local-storage.service.spec.ts

Lines changed: 0 additions & 16 deletions
This file was deleted.

ui-dev/src/app/services/project-list.service.spec.ts

Lines changed: 0 additions & 16 deletions
This file was deleted.

ui-dev/src/app/services/project-list.service.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ export class ProjectListService implements OnDestroy {
6767
// Requested Page Called First Time
6868
else {
6969
new Promise((resolve) => {
70-
this.getLocalProjects(type, pageNum, limit);
71-
// this.getLocalProjects(type, pageNum, limit);
70+
this.getAllProjects(type, pageNum, limit);
71+
// this.getAllProjects(type, pageNum, limit);
7272
resolve(this.saveNewlyCachedData(type, pageNum));
7373
});
7474
this.navigateToRoute(pageNum);
@@ -77,7 +77,7 @@ export class ProjectListService implements OnDestroy {
7777

7878
// Nothing's Cached
7979
else {
80-
this.getLocalProjects(type, pageNum, limit);
80+
this.getAllProjects(type, pageNum, limit);
8181
// this.getLocalProjects(type, pageNum, limit);
8282
}
8383
}
@@ -161,7 +161,6 @@ export class ProjectListService implements OnDestroy {
161161
Object.keys(response).filter((currentVal, index) => {
162162
if (currentVal === type) {
163163
allProjects = Object.values(response)[index];
164-
// console.log(allProjects);
165164
}
166165
if (currentVal === 'totals') {
167166
this.totalPages = Math.ceil(response['totals'][type] / 10);

ui-dev/src/app/services/sidebar-service.spec.ts

Lines changed: 0 additions & 16 deletions
This file was deleted.

0 commit comments

Comments
 (0)