-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlint_output.txt
executable file
·3039 lines (2397 loc) · 368 KB
/
lint_output.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
yarn run v1.22.22
$ yarn build:lint && ng lint --fix=true
$ rimraf 'lint/dist/**/*.js' 'lint/dist/**/*.js.map' && tsc -b lint/tsconfig.json
Linting "dspace-angular"...
/data/dspace-angular-dspace-8.1/src/app/access-control/bulk-access/browse/bulk-access-browse.component.spec.ts
42:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/access-control/bulk-access/bulk-access.component.spec.ts
78:9 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/access-control/epeople-registry/epeople-registry.component.spec.ts
153:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
154:91 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/access-control/epeople-registry/eperson-form/eperson-form.component.spec.ts
224:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/access-control/group-registry/group-form/group-form.component.spec.ts
428:9 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
441:9 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
461:9 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/access-control/group-registry/group-form/group-form.component.ts
284:40 warning 'name' is deprecated. use {@link DSONameService } instead deprecation/deprecation
290:38 warning 'name' is deprecated. use {@link DSONameService } instead deprecation/deprecation
291:45 warning 'name' is deprecated. use {@link DSONameService } instead deprecation/deprecation
300:38 warning 'name' is deprecated. use {@link DSONameService } instead deprecation/deprecation
382:61 warning 'name' is deprecated. use {@link DSONameService } instead deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/access-control/group-registry/group-form/members-list/members-list.component.ts
241:55 warning 'observableCombineLatest' is deprecated. Pass an array of sources instead. The rest-parameters signature will be removed in v8. Details: https://rxjs.dev/deprecations/array-argument deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/access-control/group-registry/group-form/validators/group-exists.validator.ts
28:49 warning 'name' is deprecated. use {@link DSONameService } instead deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/admin/admin-curation-tasks/admin-curation-tasks.component.spec.ts
17:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/admin/admin-import-batch-page/batch-import-page.component.spec.ts
57:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
61:9 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/admin/admin-import-batch-page/batch-import-page.component.ts
139:13 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/admin/admin-import-metadata-page/metadata-import-page.component.spec.ts
57:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
61:9 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/admin/admin-import-metadata-page/metadata-import-page.component.ts
93:13 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/admin/admin-ldn-services/ldn-service-form/ldn-service-form.component.ts
548:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/admin/admin-notifications/admin-notifications-publication-claim-page/admin-notifications-publication-claim-page.component.spec.ts
18:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/admin/admin-notify-dashboard/admin-notify-logs/admin-notify-logs-result/admin-notify-logs-result.component.ts
80:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
81:7 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/admin/admin-notify-dashboard/admin-notify-metrics/admin-notify-metrics.component.ts
46:7 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
59:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/admin/admin-notify-dashboard/services/admin-notify-messages.service.ts
72:60 warning 'name' is deprecated. use {@link DSONameService } instead deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/admin/admin-registries/bitstream-formats/add-bitstream-format/add-bitstream-format.component.spec.ts
57:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
58:31 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
104:7 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
105:33 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/admin/admin-registries/bitstream-formats/add-bitstream-format/add-bitstream-format.component.ts
51:9 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/admin/admin-registries/bitstream-formats/bitstream-formats.component.spec.ts
103:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
240:7 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
297:7 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/admin/admin-registries/bitstream-formats/edit-bitstream-format/edit-bitstream-format.component.spec.ts
63:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
64:31 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
120:7 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
121:33 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/admin/admin-registries/bitstream-formats/edit-bitstream-format/edit-bitstream-format.component.ts
73:9 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/admin/admin-registries/bitstream-formats/format-form/format-form.component.spec.ts
55:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
58:9 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/admin/admin-registries/bitstream-formats/format-form/format-form.component.ts
207:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/admin/admin-registries/metadata-registry/metadata-registry.component.spec.ts
100:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
103:9 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
175:7 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
185:7 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
202:7 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/admin/admin-registries/metadata-registry/metadata-schema-form/metadata-schema-form.component.spec.ts
33:31 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/admin/admin-registries/metadata-schema/metadata-field-form/metadata-field-form.component.spec.ts
40:31 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/admin/admin-registries/metadata-schema/metadata-schema.component.spec.ts
148:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
151:9 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
221:7 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
231:7 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
248:7 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/admin/admin-reports/filtered-collections/filtered-collections.component.spec.ts
88:7 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/admin/admin-reports/filtered-items/filtered-items.component.ts
127:72 warning 'name' is deprecated. use {@link DSONameService } instead deprecation/deprecation
136:88 warning 'name' is deprecated. use {@link DSONameService } instead deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/admin/admin-search-page/admin-search-results/admin-search-result-grid-element/collection-search-result/collection-admin-search-result-grid-element.component.spec.ts
49:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
53:9 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/admin/admin-search-page/admin-search-results/admin-search-result-grid-element/community-search-result/community-admin-search-result-grid-element.component.spec.ts
50:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
54:9 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/admin/admin-search-page/admin-search-results/admin-search-result-grid-element/item-search-result/item-admin-search-result-grid-element.component.spec.ts
64:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
69:11 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/admin/admin-search-page/admin-search-results/admin-search-result-list-element/collection-search-result/collection-admin-search-result-list-element.component.spec.ts
42:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
45:9 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/admin/admin-search-page/admin-search-results/admin-search-result-list-element/community-search-result/community-admin-search-result-list-element.component.spec.ts
40:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
43:9 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/admin/admin-search-page/admin-search-results/admin-search-result-list-element/item-search-result/item-admin-search-result-list-element.component.spec.ts
39:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
42:9 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/admin/admin-search-page/admin-search-results/item-admin-search-result-actions.component.spec.ts
38:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
41:9 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/admin/admin-sidebar/admin-sidebar-section/admin-sidebar-section.component.spec.ts
27:7 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
28:41 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
61:7 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
62:41 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
99:13 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/admin/admin-sidebar/admin-sidebar-section/admin-sidebar-section.component.ts
63:7 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/admin/admin-sidebar/admin-sidebar.component.spec.ts
78:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
79:66 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/admin/admin-sidebar/expandable-admin-sidebar-section/expandable-admin-sidebar-section.component.spec.ts
26:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/admin/admin-workflow-page/admin-workflow-page.component.spec.ts
16:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/admin/admin-workflow-page/admin-workflow-search-results/actions/workflow-item/workflow-item-admin-workflow-actions.component.spec.ts
41:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
44:9 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/admin/admin-workflow-page/admin-workflow-search-results/actions/workspace-item/supervision-order-group-selector/supervision-order-group-selector.component.spec.ts
45:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/admin/admin-workflow-page/admin-workflow-search-results/actions/workspace-item/workspace-item-admin-workflow-actions.component.spec.ts
54:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
58:9 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/admin/admin-workflow-page/admin-workflow-search-results/admin-workflow-search-result-grid-element/workflow-item/workflow-item-search-result-admin-workflow-grid-element.component.spec.ts
57:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
65:11 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/admin/admin-workflow-page/admin-workflow-search-results/admin-workflow-search-result-grid-element/workspace-item/workspace-item-search-result-admin-workflow-grid-element.component.spec.ts
69:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
77:11 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/admin/admin-workflow-page/admin-workflow-search-results/admin-workflow-search-result-list-element/workflow-item/workflow-item-search-result-admin-workflow-list-element.component.spec.ts
55:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
60:11 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/admin/admin-workflow-page/admin-workflow-search-results/admin-workflow-search-result-list-element/workspace-item/workspace-item-search-result-admin-workflow-list-element.component.spec.ts
67:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
72:11 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/bitstream-page/bitstream-authorizations/bitstream-authorizations.component.spec.ts
54:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/bitstream-page/bitstream-download-page/bitstream-download-page.component.spec.ts
100:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/bitstream-page/bitstream-download-page/bitstream-download-page.component.ts
121:9 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
124:9 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/bitstream-page/edit-bitstream-page/edit-bitstream-page.component.spec.ts
217:7 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
218:46 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
256:77 warning 'name' is deprecated. use {@link DSONameService } instead deprecation/deprecation
512:7 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
513:46 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
636:7 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
637:46 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/bitstream-page/edit-bitstream-page/edit-bitstream-page.component.ts
504:7 warning 'observableCombineLatest' is deprecated. Pass an array of sources instead. The rest-parameters signature will be removed in v8. Details: https://rxjs.dev/deprecations/array-argument deprecation/deprecation
549:29 warning 'name' is deprecated. use {@link DSONameService } instead deprecation/deprecation
709:5 warning 'combineLatest' is deprecated. Pass an array of sources instead. The rest-parameters signature will be removed in v8. Details: https://rxjs.dev/deprecations/array-argument deprecation/deprecation
786:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
817:21 warning 'combineLatest' is deprecated. Pass an array of sources instead. The rest-parameters signature will be removed in v8. Details: https://rxjs.dev/deprecations/array-argument deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/breadcrumbs/breadcrumbs.component.spec.ts
49:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
51:9 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/breadcrumbs/breadcrumbs.service.ts
83:16 warning 'combineLatest' is deprecated. Pass an array of sources instead. The rest-parameters signature will be removed in v8. Details: https://rxjs.dev/deprecations/array-argument deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/browse-by/browse-by-date/browse-by-date.component.spec.ts
111:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
114:9 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/browse-by/browse-by-metadata/browse-by-metadata.component.spec.ts
133:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
136:9 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/browse-by/browse-by-title/browse-by-title.component.spec.ts
94:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
95:31 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/collection-page/collection-item-mapper/collection-item-mapper.component.spec.ts
127:76 warning 'name' is deprecated. use {@link DSONameService } instead deprecation/deprecation
185:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
186:44 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
229:53 warning 'name' is deprecated. use {@link DSONameService } instead deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/collection-page/collection-item-mapper/collection-item-mapper.component.ts
177:35 warning 'observableCombineLatest' is deprecated. Pass an array of sources instead. The rest-parameters signature will be removed in v8. Details: https://rxjs.dev/deprecations/array-argument deprecation/deprecation
251:33 warning 'observableCombineLatest' is deprecated. Pass an array of sources instead. The rest-parameters signature will be removed in v8. Details: https://rxjs.dev/deprecations/array-argument deprecation/deprecation
262:35 warning 'observableCombineLatest' is deprecated. Pass an array of sources instead. The rest-parameters signature will be removed in v8. Details: https://rxjs.dev/deprecations/array-argument deprecation/deprecation
281:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
325:7 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/collection-page/create-collection-page/create-collection-page.component.spec.ts
32:58 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/collection-page/create-collection-page/create-collection-page.guard.ts
38:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
47:11 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/collection-page/delete-collection-page/delete-collection-page.component.spec.ts
25:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
26:58 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/collection-page/edit-collection-page/collection-authorizations/collection-authorizations.component.spec.ts
46:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/collection-page/edit-collection-page/collection-curate/collection-curate.component.spec.ts
45:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/collection-page/edit-collection-page/collection-metadata/collection-metadata.component.spec.ts
78:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
79:58 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/collection-page/edit-collection-page/collection-metadata/collection-metadata.component.ts
130:5 warning 'combineLatestObservable' is deprecated. Pass an array of sources instead. The rest-parameters signature will be removed in v8. Details: https://rxjs.dev/deprecations/array-argument deprecation/deprecation
132:7 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/collection-page/edit-collection-page/collection-roles/collection-roles.component.spec.ts
79:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
81:9 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/collection-page/edit-collection-page/collection-source/collection-source-controls/collection-source-controls.component.spec.ts
107:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
108:44 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/collection-page/edit-collection-page/collection-source/collection-source.component.spec.ts
147:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
148:44 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/collection-page/edit-collection-page/collection-source/collection-source.component.ts
424:51 warning 'removeByHrefSubstring' is deprecated. use setStaleByHrefSubstring instead deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/collection-page/edit-collection-page/edit-collection-page.component.spec.ts
44:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
45:58 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/collection-page/edit-item-template-page/edit-item-template-page.component.spec.ts
42:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
43:58 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/community-list-page/community-list-page.component.spec.ts
24:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/community-list-page/community-list-service.ts
77:11 warning 'name' is deprecated. use {@link DSONameService } instead deprecation/deprecation
157:22 warning 'observableCombineLatest' is deprecated. Pass an array of sources instead. The rest-parameters signature will be removed in v8. Details: https://rxjs.dev/deprecations/array-argument deprecation/deprecation
331:12 warning 'observableCombineLatest' is deprecated. Pass an array of sources instead. The rest-parameters signature will be removed in v8. Details: https://rxjs.dev/deprecations/array-argument deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/community-list-page/community-list/community-list.component.spec.ts
212:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
221:9 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
326:73 warning 'name' is deprecated. use {@link DSONameService } instead deprecation/deprecation
359:112 warning 'name' is deprecated. use {@link DSONameService } instead deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/community-page/create-community-page/create-community-page.component.spec.ts
28:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
29:58 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/community-page/create-community-page/create-community-page.guard.ts
47:11 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/community-page/delete-community-page/delete-community-page.component.spec.ts
25:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
26:58 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/community-page/edit-community-page/community-authorizations/community-authorizations.component.spec.ts
46:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/community-page/edit-community-page/community-curate/community-curate.component.spec.ts
45:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/community-page/edit-community-page/community-metadata/community-metadata.component.spec.ts
24:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
25:58 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/community-page/edit-community-page/community-roles/community-roles.component.spec.ts
64:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
66:9 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/community-page/edit-community-page/edit-community-page.component.spec.ts
44:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
45:58 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/community-page/sections/sub-com-col-section/sub-collection-list/community-page-sub-collection-list.component.spec.ts
154:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
157:9 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/community-page/sections/sub-com-col-section/sub-community-list/community-page-sub-community-list.component.spec.ts
155:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
158:9 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/core/auth/auth-blocking.guard.spec.ts
41:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/core/auth/auth.effects.spec.ts
128:81 warning 'observableThrow' is deprecated. Support for passing an error value will be removed in v8. Instead, pass a factory function to `throwError(() => new Error('test'))`. This is
because it will create the error at the moment it should be created and capture a more appropriate stack trace. If
for some reason you need to create the error ahead of time, you can still do that: `const err = new Error('test'); throwError(() => err);` deprecation/deprecation
169:86 warning 'observableThrow' is deprecated. Support for passing an error value will be removed in v8. Instead, pass a factory function to `throwError(() => new Error('test'))`. This is
because it will create the error at the moment it should be created and capture a more appropriate stack trace. If
for some reason you need to create the error ahead of time, you can still do that: `const err = new Error('test'); throwError(() => err);` deprecation/deprecation
221:96 warning 'observableThrow' is deprecated. Support for passing an error value will be removed in v8. Instead, pass a factory function to `throwError(() => new Error('test'))`. This is
because it will create the error at the moment it should be created and capture a more appropriate stack trace. If
for some reason you need to create the error ahead of time, you can still do that: `const err = new Error('test'); throwError(() => err);` deprecation/deprecation
270:94 warning 'observableThrow' is deprecated. Support for passing an error value will be removed in v8. Instead, pass a factory function to `throwError(() => new Error('test'))`. This is
because it will create the error at the moment it should be created and capture a more appropriate stack trace. If
for some reason you need to create the error ahead of time, you can still do that: `const err = new Error('test'); throwError(() => err);` deprecation/deprecation
300:100 warning 'observableThrow' is deprecated. Support for passing an error value will be removed in v8. Instead, pass a factory function to `throwError(() => new Error('test'))`. This is
because it will create the error at the moment it should be created and capture a more appropriate stack trace. If
for some reason you need to create the error ahead of time, you can still do that: `const err = new Error('test'); throwError(() => err);` deprecation/deprecation
326:95 warning 'observableThrow' is deprecated. Support for passing an error value will be removed in v8. Instead, pass a factory function to `throwError(() => new Error('test'))`. This is
because it will create the error at the moment it should be created and capture a more appropriate stack trace. If
for some reason you need to create the error ahead of time, you can still do that: `const err = new Error('test'); throwError(() => err);` deprecation/deprecation
354:95 warning 'observableThrow' is deprecated. Support for passing an error value will be removed in v8. Instead, pass a factory function to `throwError(() => new Error('test'))`. This is
because it will create the error at the moment it should be created and capture a more appropriate stack trace. If
for some reason you need to create the error ahead of time, you can still do that: `const err = new Error('test'); throwError(() => err);` deprecation/deprecation
384:75 warning 'observableThrow' is deprecated. Support for passing an error value will be removed in v8. Instead, pass a factory function to `throwError(() => new Error('test'))`. This is
because it will create the error at the moment it should be created and capture a more appropriate stack trace. If
for some reason you need to create the error ahead of time, you can still do that: `const err = new Error('test'); throwError(() => err);` deprecation/deprecation
409:102 warning 'observableThrow' is deprecated. Support for passing an error value will be removed in v8. Instead, pass a factory function to `throwError(() => new Error('test'))`. This is
because it will create the error at the moment it should be created and capture a more appropriate stack trace. If
for some reason you need to create the error ahead of time, you can still do that: `const err = new Error('test'); throwError(() => err);` deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/core/auth/auth.interceptor.ts
336:16 warning 'observableThrowError' is deprecated. Support for passing an error value will be removed in v8. Instead, pass a factory function to `throwError(() => new Error('test'))`. This is
because it will create the error at the moment it should be created and capture a more appropriate stack trace. If
for some reason you need to create the error ahead of time, you can still do that: `const err = new Error('test'); throwError(() => err);` deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/core/auth/auth.service.spec.ts
264:7 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
339:7 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
569:7 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
609:7 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/core/auth/auth.service.ts
496:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
512:7 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/core/breadcrumbs/dso-breadcrumbs.service.spec.ts
100:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/core/breadcrumbs/dso-name.service.ts
61:56 warning 'name' is deprecated. use {@link DSONameService } instead deprecation/deprecation
107:72 warning 'name' is deprecated. use {@link DSONameService } instead deprecation/deprecation
115:68 warning 'name' is deprecated. use {@link DSONameService } instead deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/core/breadcrumbs/i18n-breadcrumb.resolver.ts
27:75 warning Invalid operand for a '+' operation. Operands must each be a number or string, allowing a string + any of: `any`, `boolean`, `null`, `RegExp`, `undefined`. Got `UrlSegment[]` @typescript-eslint/restrict-plus-operands
/data/dspace-angular-dspace-8.1/src/app/core/breadcrumbs/i18n-breadcrumbs.service.spec.ts
25:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/core/breadcrumbs/navigation-breadcrumbs.service.spec.ts
31:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/core/breadcrumbs/publication-claim-breadcrumb.service.spec.ts
40:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/core/breadcrumbs/quality-assurance-breadcrumb.service.spec.ts
28:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/core/cache/object-cache.service.spec.ts
117:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
248:55 warning 'empty' is deprecated. Replaced with the {@link EMPTY} constant or {@link scheduled } (e.g. `scheduled([], scheduler)`). Will be removed in v8 deprecation/deprecation
291:55 warning 'empty' is deprecated. Replaced with the {@link EMPTY} constant or {@link scheduled } (e.g. `scheduled([], scheduler)`). Will be removed in v8 deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/core/cache/object-cache.service.ts
333:12 warning 'observableCombineLatest' is deprecated. Pass an array of sources instead. The rest-parameters signature will be removed in v8. Details: https://rxjs.dev/deprecations/array-argument deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/core/cache/server-sync-buffer.effects.ts
108:22 warning 'observableCombineLatest' is deprecated. Pass an array of sources instead. The rest-parameters signature will be removed in v8. Details: https://rxjs.dev/deprecations/array-argument deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/core/data/bitstream-data.service.ts
166:27 warning 'removeByHrefSubstring' is deprecated. use setStaleByHrefSubstring instead deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/core/data/bitstream-format-data.service.ts
139:49 warning 'removeByHrefSubstring' is deprecated. use setStaleByHrefSubstring instead deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/core/data/bundle-data.service.ts
92:20 warning 'name' is deprecated. use {@link DSONameService } instead deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/core/data/item-data.service.ts
184:25 warning 'removeByHrefSubstring' is deprecated. use setStaleByHrefSubstring instead deprecation/deprecation
198:25 warning 'removeByHrefSubstring' is deprecated. use setStaleByHrefSubstring instead deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/core/data/lookup-relation.service.spec.ts
139:29 warning 'removeByHrefSubstring' is deprecated. use setStaleByHrefSubstring instead deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/core/data/lookup-relation.service.ts
73:7 warning 'multicast' is deprecated. Will be removed in v8. Use the {@link connect } operator instead.
`multicast(subjectFactory, selector)` is equivalent to
`connect(selector, { connector: subjectFactory })`.
Details: https://rxjs.dev/deprecations/multicasting deprecation/deprecation
77:11 warning 'concat' is deprecated. Replaced with {@link concatWith }. Will be removed in v8 deprecation/deprecation
117:78 warning 'removeByHrefSubstring' is deprecated. use setStaleByHrefSubstring instead deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/core/data/metadata-schema-data.service.spec.ts
101:31 warning 'removeByHrefSubstring' is deprecated. use setStaleByHrefSubstring instead deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/core/data/metadata-schema-data.service.ts
84:49 warning 'removeByHrefSubstring' is deprecated. use setStaleByHrefSubstring instead deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/core/data/object-updates/object-updates.service.spec.ts
303:25 warning 'get' is deprecated. use object-based flags (`InjectOptions`) instead deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/core/data/relationship-data.service.spec.ts
183:29 warning 'removeByHrefSubstring' is deprecated. use setStaleByHrefSubstring instead deprecation/deprecation
184:29 warning 'removeByHrefSubstring' is deprecated. use setStaleByHrefSubstring instead deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/core/data/relationship-data.service.ts
229:40 warning 'observableCombineLatest' is deprecated. Pass an array of sources instead. The rest-parameters signature will be removed in v8. Details: https://rxjs.dev/deprecations/array-argument deprecation/deprecation
247:25 warning 'removeByHrefSubstring' is deprecated. use setStaleByHrefSubstring instead deprecation/deprecation
625:11 warning 'observableCombineLatest' is deprecated. Pass an array of sources instead. The rest-parameters signature will be removed in v8. Details: https://rxjs.dev/deprecations/array-argument deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/core/data/request.service.spec.ts
86:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/core/dspace-rest/dspace-rest.service.spec.ts
70:34 warning 'subscribe' is deprecated. Instead of passing separate callback arguments, use an observer argument. Signatures taking separate callback arguments will be removed in v8. Details: https://rxjs.dev/deprecations/subscribe-arguments deprecation/deprecation
79:11 warning 'error' is deprecated. Http requests never emit an `ErrorEvent`. Please specify a `ProgressEvent` deprecation/deprecation
85:34 warning 'subscribe' is deprecated. Instead of passing separate callback arguments, use an observer argument. Signatures taking separate callback arguments will be removed in v8. Details: https://rxjs.dev/deprecations/subscribe-arguments deprecation/deprecation
91:11 warning 'error' is deprecated. Http requests never emit an `ErrorEvent`. Please specify a `ProgressEvent` deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/core/dspace-rest/dspace-rest.service.ts
143:29 warning 'name' is deprecated. use {@link DSONameService } instead deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/core/eperson/eperson-data.service.spec.ts
293:29 warning 'removeByHrefSubstring' is deprecated. use setStaleByHrefSubstring instead deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/core/eperson/eperson-data.service.ts
296:27 warning 'removeByHrefSubstring' is deprecated. use setStaleByHrefSubstring instead deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/core/eperson/group-data.service.ts
260:27 warning 'removeByHrefSubstring' is deprecated. use setStaleByHrefSubstring instead deprecation/deprecation
352:29 warning 'removeByHrefSubstring' is deprecated. use setStaleByHrefSubstring instead deprecation/deprecation
380:29 warning 'removeByHrefSubstring' is deprecated. use setStaleByHrefSubstring instead deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/core/google-recaptcha/google-recaptcha.service.ts
135:13 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/core/index/index.effects.spec.ts
70:28 warning 'get' is deprecated. from v9.0.0 use TestBed.inject deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/core/json-patch/builder/json-patch-operation-path-combiner.ts
52:21 warning Invalid operand for a '+' operation. Operands must each be a number or string, allowing a string + any of: `any`, `boolean`, `null`, `RegExp`, `undefined`. Got `string[]` @typescript-eslint/restrict-plus-operands
/data/dspace-angular-dspace-8.1/src/app/core/json-patch/json-patch-operations.service.ts
68:44 warning 'partition' is deprecated. Replaced with the `partition` static creation function. Will be removed in v8 deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/core/lazy-data-service.ts
39:30 warning 'get' is deprecated. from v4.0.0 use ProviderToken<T> deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/core/orcid/orcid-auth.service.ts
131:99 warning Invalid operand for a '+' operation. Operands must each be a number or string, allowing a string + any of: `any`, `boolean`, `null`, `RegExp`, `undefined`. Got `URLCombiner` @typescript-eslint/restrict-plus-operands
/data/dspace-angular-dspace-8.1/src/app/core/pagination/pagination.service.ts
176:11 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
183:11 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/core/registry/registry.service.ts
313:22 warning 'observableCombineLatest' is deprecated. Pass an array of sources instead. The rest-parameters signature will be removed in v8. Details: https://rxjs.dev/deprecations/array-argument deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/core/services/route.service.ts
243:5 warning 'combineLatest' is deprecated. Pass an array of sources instead. The rest-parameters signature will be removed in v8. Details: https://rxjs.dev/deprecations/array-argument deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/core/services/server-hard-redirect.service.ts
54:18 warning 'finished' is deprecated. Use `writableEnded` instead deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/core/shared/authorized.operators.ts
43:13 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
47:15 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
51:15 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
80:5 warning 'observableCombineLatest' is deprecated. Pass an array of sources instead. The rest-parameters signature will be removed in v8. Details: https://rxjs.dev/deprecations/array-argument deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/core/shared/math.service.spec.ts
51:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/core/shared/search/search-filter.service.ts
116:12 warning 'observableCombineLatest' is deprecated. Pass an array of sources instead. The rest-parameters signature will be removed in v8. Details: https://rxjs.dev/deprecations/array-argument deprecation/deprecation
133:12 warning 'observableCombineLatest' is deprecated. Pass an array of sources instead. The rest-parameters signature will be removed in v8. Details: https://rxjs.dev/deprecations/array-argument deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/core/shared/search/search.service.spec.ts
58:11 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
125:11 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/core/submission/resolver/submission-parent-breadcrumb.resolver.ts
22:69 warning 'Resolve' is deprecated. Class-based `Route` resolvers are deprecated in favor of functional resolvers. An
injectable class can be used as a functional guard using the [`inject`](api/core/inject)
function: `resolve:
{'user': () => inject(UserResolver).resolve()}` deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/core/submission/submission-response-parsing.service.ts
95:36 warning 'DSOResponseParsingService' is deprecated. use DspaceRestResponseParsingService for new code, this is only left to support a
few legacy use cases, and should get removed eventually deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/core/submission/vocabularies/vocabulary.service.spec.ts
565:31 warning 'removeByHrefSubstring' is deprecated. use setStaleByHrefSubstring instead deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/core/submission/vocabularies/vocabulary.service.ts
347:25 warning 'removeByHrefSubstring' is deprecated. use setStaleByHrefSubstring instead deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/core/xsrf/browser-xsrf.service.spec.ts
30:7 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
45:9 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/core/xsrf/server-xsrf.service.spec.ts
16:7 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
27:7 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/core/xsrf/xsrf.interceptor.spec.ts
51:23 warning 'get' is deprecated. from v9.0.0 use TestBed.inject deprecation/deprecation
52:24 warning 'get' is deprecated. from v9.0.0 use TestBed.inject deprecation/deprecation
53:29 warning 'get' is deprecated. from v9.0.0 use TestBed.inject deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/core/xsrf/xsrf.interceptor.ts
115:16 warning 'throwError' is deprecated. Support for passing an error value will be removed in v8. Instead, pass a factory function to `throwError(() => new Error('test'))`. This is
because it will create the error at the moment it should be created and capture a more appropriate stack trace. If
for some reason you need to create the error ahead of time, you can still do that: `const err = new Error('test'); throwError(() => err);` deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/curation-form/curation-form.component.spec.ts
77:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/dso-shared/dso-edit-metadata/dso-edit-metadata-field-values/dso-edit-metadata-field-values.component.spec.ts
65:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
66:44 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/dso-shared/dso-edit-metadata/dso-edit-metadata-form.ts
466:98 warning 'substr' is deprecated. A legacy feature for browser compatibility deprecation/deprecation
466:125 warning 'substr' is deprecated. A legacy feature for browser compatibility deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/dso-shared/dso-edit-metadata/dso-edit-metadata-headers/dso-edit-metadata-headers.component.spec.ts
19:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
20:44 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/dso-shared/dso-edit-metadata/dso-edit-metadata-value/dso-edit-metadata-value.component.spec.ts
189:9 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
463:9 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
474:9 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/dso-shared/dso-edit-metadata/dso-edit-metadata.component.spec.ts
90:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
95:9 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/dso-shared/dso-edit-metadata/metadata-field-selector/metadata-field-selector.component.spec.ts
65:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
66:44 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/dso-shared/dso-edit-metadata/metadata-field-selector/metadata-field-selector.component.ts
183:7 warning 'observableCombineLatest' is deprecated. Pass an array of sources instead. The rest-parameters signature will be removed in v8. Details: https://rxjs.dev/deprecations/array-argument deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/entity-groups/journal-entities/item-grid-elements/journal-issue/journal-issue-grid-element.component.spec.ts
59:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/entity-groups/journal-entities/item-grid-elements/journal-volume/journal-volume-grid-element.component.spec.ts
67:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/entity-groups/journal-entities/item-grid-elements/journal/journal-grid-element.component.spec.ts
63:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/entity-groups/journal-entities/item-list-elements/journal-issue/journal-issue-list-element.component.spec.ts
59:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/entity-groups/journal-entities/item-list-elements/journal-volume/journal-volume-list-element.component.spec.ts
53:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/entity-groups/journal-entities/item-list-elements/search-result-list-elements/journal-issue/journal-issue-search-result-list-element.component.spec.ts
93:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
190:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/entity-groups/journal-entities/item-list-elements/search-result-list-elements/journal-volume/journal-volume-search-result-list-element.component.spec.ts
92:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
185:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/entity-groups/journal-entities/item-list-elements/search-result-list-elements/journal/journal-search-result-list-element.component.spec.ts
88:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
160:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/entity-groups/journal-entities/item-pages/journal/journal.component.spec.ts
101:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
109:9 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/entity-groups/research-entities/item-grid-elements/org-unit/org-unit-grid-element.component.spec.ts
67:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/entity-groups/research-entities/item-grid-elements/person/person-grid-element.component.spec.ts
57:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/entity-groups/research-entities/item-grid-elements/project/project-grid-element.component.spec.ts
55:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/entity-groups/research-entities/item-list-elements/org-unit/org-unit-list-element.component.spec.ts
54:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/entity-groups/research-entities/item-list-elements/person/person-list-element.component.spec.ts
53:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/entity-groups/research-entities/item-list-elements/project/project-list-element.component.spec.ts
47:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/entity-groups/research-entities/item-list-elements/search-result-list-elements/org-unit/org-unit-search-result-list-element.component.spec.ts
89:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
160:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/entity-groups/research-entities/item-list-elements/search-result-list-elements/person/person-search-result-list-element.component.spec.ts
89:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
160:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/entity-groups/research-entities/item-list-elements/search-result-list-elements/project/project-search-result-list-element.component.spec.ts
85:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
150:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/entity-groups/research-entities/metadata-representations/org-unit/org-unit-item-metadata-list-element.component.spec.ts
31:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/entity-groups/research-entities/metadata-representations/person/person-item-metadata-list-element.component.spec.ts
33:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/entity-groups/research-entities/metadata-representations/project/project-item-metadata-list-element.component.spec.ts
33:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/entity-groups/research-entities/submission/item-list-elements/external-source-entry/external-source-entry-list-submission-element.component.spec.ts
31:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/entity-groups/research-entities/submission/item-list-elements/org-unit/org-unit-search-result-list-submission-element.component.spec.ts
114:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/entity-groups/research-entities/submission/item-list-elements/org-unit/org-unit-suggestions/org-unit-input-suggestions.component.spec.ts
29:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/entity-groups/research-entities/submission/item-list-elements/person/person-search-result-list-submission-element.component.spec.ts
130:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
231:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/entity-groups/research-entities/submission/name-variant-modal/name-variant-modal.component.spec.ts
26:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/forgot-password/forgot-password-email/forgot-email.component.spec.ts
19:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/forgot-password/forgot-password-form/forgot-password-form.component.spec.ts
69:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
72:9 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/forgot-password/forgot-password-form/forgot-password-form.component.ts
113:11 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/header/context-help-toggle/context-help-toggle.component.spec.ts
46:7 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
59:7 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/header/header.component.spec.ts
45:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/home-page/top-level-community-list/top-level-community-list.component.spec.ts
145:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
148:9 warning 'RouterTestingModule' is deprecated. Use `provideRouter` or `RouterModule`/`RouterModule.forRoot` instead.
This module was previously used to provide a helpful collection of test fakes,
most notably those for `Location` and `LocationStrategy`. These are generally not
required anymore, as `MockPlatformLocation` is provided in `TestBed` by default.
However, you can use them directly with `provideLocationMocks` deprecation/deprecation
/data/dspace-angular-dspace-8.1/src/app/import-external-page/import-external-page.component.spec.ts
21:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/info/end-user-agreement/end-user-agreement-content/end-user-agreement-content.component.spec.ts
17:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/info/end-user-agreement/end-user-agreement.component.spec.ts
60:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/info/end-user-agreement/end-user-agreement.component.ts
91:9 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
106:9 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/info/feedback/feedback-form/feedback-form.component.spec.ts
48:5 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises
/data/dspace-angular-dspace-8.1/src/app/info/feedback/feedback-form/feedback-form.component.ts
99:9 warning Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator @typescript-eslint/no-floating-promises