-
Notifications
You must be signed in to change notification settings - Fork 31
/
jest-results.json
2215 lines (2215 loc) · 76.5 KB
/
jest-results.json
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
{
"numFailedTestSuites": 2,
"numFailedTests": 3,
"numPassedTestSuites": 17,
"numPassedTests": 102,
"numPendingTestSuites": 0,
"numPendingTests": 2,
"numRuntimeErrorTestSuites": 1,
"numTodoTests": 0,
"numTotalTestSuites": 19,
"numTotalTests": 107,
"openHandles": [],
"snapshot": {
"added": 0,
"didUpdate": true,
"failure": false,
"filesAdded": 0,
"filesRemoved": 0,
"filesRemovedList": [],
"filesUnmatched": 0,
"filesUpdated": 11,
"matched": 14,
"total": 63,
"unchecked": 0,
"uncheckedKeysByFile": [],
"unmatched": 0,
"updated": 49
},
"startTime": 1674927713410,
"success": false,
"testResults": [
{
"leaks": false,
"numFailingTests": 0,
"numPassingTests": 2,
"numPendingTests": 0,
"numTodoTests": 0,
"openHandles": [],
"perfStats": {
"end": 1674927725373,
"runtime": 8936,
"slow": true,
"start": 1674927716437
},
"skipped": false,
"snapshot": {
"added": 0,
"fileDeleted": false,
"matched": 0,
"unchecked": 0,
"uncheckedKeys": [],
"unmatched": 0,
"updated": 3
},
"testFilePath": "C:\\dev\\node\\jest-stare\\__tests__\\processor\\EnvVars.test.ts",
"testResults": [
{
"ancestorTitles": [
"EnvVars tests"
],
"duration": 27,
"failureDetails": [],
"failureMessages": [],
"fullName": "EnvVars tests should have an empty config for no env variables set",
"invocations": 1,
"location": null,
"numPassingAsserts": 1,
"retryReasons": [],
"status": "passed",
"title": "should have an empty config for no env variables set"
},
{
"ancestorTitles": [
"EnvVars tests"
],
"duration": 24,
"failureDetails": [],
"failureMessages": [],
"fullName": "EnvVars tests should have a complete config for all env variables set",
"invocations": 1,
"location": null,
"numPassingAsserts": 2,
"retryReasons": [],
"status": "passed",
"title": "should have a complete config for all env variables set"
}
],
"failureMessage": null
},
{
"leaks": false,
"numFailingTests": 0,
"numPassingTests": 4,
"numPendingTests": 0,
"numTodoTests": 0,
"openHandles": [],
"perfStats": {
"end": 1674927725483,
"runtime": 8953,
"slow": true,
"start": 1674927716530
},
"skipped": false,
"snapshot": {
"added": 0,
"fileDeleted": false,
"matched": 0,
"unchecked": 0,
"uncheckedKeys": [],
"unmatched": 0,
"updated": 4
},
"testFilePath": "C:\\dev\\node\\jest-stare\\__tests__\\render\\summary\\TestSummary.test.ts",
"testResults": [
{
"ancestorTitles": [
"TestSuite tests"
],
"duration": 43,
"failureDetails": [],
"failureMessages": [],
"fullName": "TestSuite tests should create proper elements for simple passing tests",
"invocations": 1,
"location": null,
"numPassingAsserts": 1,
"retryReasons": [],
"status": "passed",
"title": "should create proper elements for simple passing tests"
},
{
"ancestorTitles": [
"TestSuite tests"
],
"duration": 15,
"failureDetails": [],
"failureMessages": [],
"fullName": "TestSuite tests should create proper elements for simple failing tests",
"invocations": 1,
"location": null,
"numPassingAsserts": 1,
"retryReasons": [],
"status": "passed",
"title": "should create proper elements for simple failing tests"
},
{
"ancestorTitles": [
"TestSuite tests"
],
"duration": 15,
"failureDetails": [],
"failureMessages": [],
"fullName": "TestSuite tests should create proper elements for two diffs in html",
"invocations": 1,
"location": null,
"numPassingAsserts": 1,
"retryReasons": [],
"status": "passed",
"title": "should create proper elements for two diffs in html"
},
{
"ancestorTitles": [
"TestSuite tests"
],
"duration": 12,
"failureDetails": [],
"failureMessages": [],
"fullName": "TestSuite tests should create proper elements for large test more than 500 tests",
"invocations": 1,
"location": null,
"numPassingAsserts": 1,
"retryReasons": [],
"status": "passed",
"title": "should create proper elements for large test more than 500 tests"
}
],
"failureMessage": null
},
{
"leaks": false,
"numFailingTests": 0,
"numPassingTests": 5,
"numPendingTests": 0,
"numTodoTests": 0,
"openHandles": [],
"perfStats": {
"end": 1674927725603,
"runtime": 9103,
"slow": true,
"start": 1674927716500
},
"skipped": false,
"snapshot": {
"added": 0,
"fileDeleted": false,
"matched": 0,
"unchecked": 0,
"uncheckedKeys": [],
"unmatched": 0,
"updated": 2
},
"testFilePath": "C:\\dev\\node\\jest-stare\\__tests__\\render\\diff\\TestDifference.test.ts",
"testResults": [
{
"ancestorTitles": [
"TestDifference tests"
],
"duration": 4,
"failureDetails": [],
"failureMessages": [],
"fullName": "TestDifference tests should return false if no diff",
"invocations": 1,
"location": null,
"numPassingAsserts": 1,
"retryReasons": [],
"status": "passed",
"title": "should return false if no diff"
},
{
"ancestorTitles": [
"TestDifference tests"
],
"duration": 1,
"failureDetails": [],
"failureMessages": [],
"fullName": "TestDifference tests should return true if diff",
"invocations": 1,
"location": null,
"numPassingAsserts": 1,
"retryReasons": [],
"status": "passed",
"title": "should return true if diff"
},
{
"ancestorTitles": [
"TestDifference tests"
],
"duration": 1,
"failureDetails": [],
"failureMessages": [],
"fullName": "TestDifference tests should return true if diff for old version",
"invocations": 1,
"location": null,
"numPassingAsserts": 1,
"retryReasons": [],
"status": "passed",
"title": "should return true if diff for old version"
},
{
"ancestorTitles": [
"TestDifference tests"
],
"duration": 4,
"failureDetails": [],
"failureMessages": [],
"fullName": "TestDifference tests should return isolated diff",
"invocations": 1,
"location": null,
"numPassingAsserts": 1,
"retryReasons": [],
"status": "passed",
"title": "should return isolated diff"
},
{
"ancestorTitles": [
"TestDifference tests"
],
"duration": 3,
"failureDetails": [],
"failureMessages": [],
"fullName": "TestDifference tests should return isolated diff for older version",
"invocations": 1,
"location": null,
"numPassingAsserts": 1,
"retryReasons": [],
"status": "passed",
"title": "should return isolated diff for older version"
}
],
"failureMessage": null
},
{
"leaks": false,
"numFailingTests": 0,
"numPassingTests": 14,
"numPendingTests": 0,
"numTodoTests": 0,
"openHandles": [],
"perfStats": {
"end": 1674927725644,
"runtime": 9204,
"slow": true,
"start": 1674927716440
},
"skipped": false,
"snapshot": {
"added": 0,
"fileDeleted": false,
"matched": 1,
"unchecked": 0,
"uncheckedKeys": [],
"unmatched": 0,
"updated": 2
},
"testFilePath": "C:\\dev\\node\\jest-stare\\__tests__\\utils\\IO.test.ts",
"testResults": [
{
"ancestorTitles": [
"IO tests"
],
"duration": 5,
"failureDetails": [],
"failureMessages": [],
"fullName": "IO tests should pretend to write to a file",
"invocations": 1,
"location": null,
"numPassingAsserts": 1,
"retryReasons": [],
"status": "passed",
"title": "should pretend to write to a file"
},
{
"ancestorTitles": [
"IO tests"
],
"duration": 4,
"failureDetails": [],
"failureMessages": [],
"fullName": "IO tests should pretend to write to a file and reject promise for IO errors",
"invocations": 1,
"location": null,
"numPassingAsserts": 1,
"retryReasons": [],
"status": "passed",
"title": "should pretend to write to a file and reject promise for IO errors"
},
{
"ancestorTitles": [
"IO tests",
"mkdirsSync tests"
],
"duration": 11,
"failureDetails": [],
"failureMessages": [],
"fullName": "IO tests mkdirsSync tests should not be called for each directory if all exist",
"invocations": 1,
"location": null,
"numPassingAsserts": 1,
"retryReasons": [],
"status": "passed",
"title": "should not be called for each directory if all exist"
},
{
"ancestorTitles": [
"IO tests",
"mkdirsSync tests"
],
"duration": 2,
"failureDetails": [],
"failureMessages": [],
"fullName": "IO tests mkdirsSync tests should be called for each directory if non exist",
"invocations": 1,
"location": null,
"numPassingAsserts": 1,
"retryReasons": [],
"status": "passed",
"title": "should be called for each directory if non exist"
},
{
"ancestorTitles": [
"IO tests",
"mkdirsSync tests"
],
"duration": 1,
"failureDetails": [],
"failureMessages": [],
"fullName": "IO tests mkdirsSync tests should be called for each directory that does not exist",
"invocations": 1,
"location": null,
"numPassingAsserts": 2,
"retryReasons": [],
"status": "passed",
"title": "should be called for each directory that does not exist"
},
{
"ancestorTitles": [
"IO tests",
"writeFileSync tests"
],
"duration": 1,
"failureDetails": [],
"failureMessages": [],
"fullName": "IO tests writeFileSync tests should call fs writeFileSync",
"invocations": 1,
"location": null,
"numPassingAsserts": 1,
"retryReasons": [],
"status": "passed",
"title": "should call fs writeFileSync"
},
{
"ancestorTitles": [
"IO tests",
"mkDirSync tests"
],
"duration": 1,
"failureDetails": [],
"failureMessages": [],
"fullName": "IO tests mkDirSync tests should be called if dir does not exist",
"invocations": 1,
"location": null,
"numPassingAsserts": 1,
"retryReasons": [],
"status": "passed",
"title": "should be called if dir does not exist"
},
{
"ancestorTitles": [
"IO tests",
"mkDirSync tests"
],
"duration": 18,
"failureDetails": [],
"failureMessages": [],
"fullName": "IO tests mkDirSync tests should not be called if dir does exist",
"invocations": 1,
"location": null,
"numPassingAsserts": 1,
"retryReasons": [],
"status": "passed",
"title": "should not be called if dir does exist"
},
{
"ancestorTitles": [
"IO tests",
"unlinkSync tests"
],
"duration": 1,
"failureDetails": [],
"failureMessages": [],
"fullName": "IO tests unlinkSync tests should not be called if dir does not exist",
"invocations": 1,
"location": null,
"numPassingAsserts": 1,
"retryReasons": [],
"status": "passed",
"title": "should not be called if dir does not exist"
},
{
"ancestorTitles": [
"IO tests",
"unlinkSync tests"
],
"duration": 1,
"failureDetails": [],
"failureMessages": [],
"fullName": "IO tests unlinkSync tests should be called if dir exists",
"invocations": 1,
"location": null,
"numPassingAsserts": 1,
"retryReasons": [],
"status": "passed",
"title": "should be called if dir exists"
},
{
"ancestorTitles": [
"IO tests"
],
"duration": 1,
"failureDetails": [],
"failureMessages": [],
"fullName": "IO tests should say true if dir exists",
"invocations": 1,
"location": null,
"numPassingAsserts": 1,
"retryReasons": [],
"status": "passed",
"title": "should say true if dir exists"
},
{
"ancestorTitles": [
"IO tests"
],
"duration": 2,
"failureDetails": [],
"failureMessages": [],
"fullName": "IO tests should false if dir does not exist",
"invocations": 1,
"location": null,
"numPassingAsserts": 1,
"retryReasons": [],
"status": "passed",
"title": "should false if dir does not exist"
},
{
"ancestorTitles": [
"IO tests"
],
"duration": 3,
"failureDetails": [],
"failureMessages": [],
"fullName": "IO tests should read return an empty object if no package.json is found",
"invocations": 1,
"location": null,
"numPassingAsserts": 1,
"retryReasons": [],
"status": "passed",
"title": "should read return an empty object if no package.json is found"
},
{
"ancestorTitles": [
"IO tests"
],
"duration": 2,
"failureDetails": [],
"failureMessages": [],
"fullName": "IO tests should read return a populated object if package.json is found",
"invocations": 1,
"location": null,
"numPassingAsserts": 1,
"retryReasons": [],
"status": "passed",
"title": "should read return a populated object if package.json is found"
}
],
"failureMessage": null
},
{
"leaks": false,
"numFailingTests": 0,
"numPassingTests": 6,
"numPendingTests": 0,
"numTodoTests": 0,
"openHandles": [],
"perfStats": {
"end": 1674927725769,
"runtime": 9290,
"slow": true,
"start": 1674927716479
},
"skipped": false,
"snapshot": {
"added": 0,
"fileDeleted": false,
"matched": 0,
"unchecked": 0,
"uncheckedKeys": [],
"unmatched": 0,
"updated": 4
},
"testFilePath": "C:\\dev\\node\\jest-stare\\__tests__\\render\\suites\\TestSuite.test.ts",
"testResults": [
{
"ancestorTitles": [
"TestSuite tests",
"Snapshots"
],
"duration": 49,
"failureDetails": [],
"failureMessages": [],
"fullName": "TestSuite tests Snapshots should create proper elements for simple passing tests",
"invocations": 1,
"location": null,
"numPassingAsserts": 1,
"retryReasons": [],
"status": "passed",
"title": "should create proper elements for simple passing tests"
},
{
"ancestorTitles": [
"TestSuite tests",
"Snapshots"
],
"duration": 15,
"failureDetails": [],
"failureMessages": [],
"fullName": "TestSuite tests Snapshots should create proper elements for simple failing tests",
"invocations": 1,
"location": null,
"numPassingAsserts": 1,
"retryReasons": [],
"status": "passed",
"title": "should create proper elements for simple failing tests"
},
{
"ancestorTitles": [
"TestSuite tests",
"Snapshots"
],
"duration": 50,
"failureDetails": [],
"failureMessages": [],
"fullName": "TestSuite tests Snapshots should create proper elements for two diffs in html",
"invocations": 1,
"location": null,
"numPassingAsserts": 1,
"retryReasons": [],
"status": "passed",
"title": "should create proper elements for two diffs in html"
},
{
"ancestorTitles": [
"TestSuite tests",
"Snapshots"
],
"duration": 44,
"failureDetails": [],
"failureMessages": [],
"fullName": "TestSuite tests Snapshots should create proper elements for large test more than 500 tests",
"invocations": 1,
"location": null,
"numPassingAsserts": 1,
"retryReasons": [],
"status": "passed",
"title": "should create proper elements for large test more than 500 tests"
},
{
"ancestorTitles": [
"TestSuite tests"
],
"duration": 4,
"failureDetails": [],
"failureMessages": [],
"fullName": "TestSuite tests should assign test status correctly when all are the same",
"invocations": 1,
"location": null,
"numPassingAsserts": 2,
"retryReasons": [],
"status": "passed",
"title": "should assign test status correctly when all are the same"
},
{
"ancestorTitles": [
"TestSuite tests"
],
"duration": 1,
"failureDetails": [],
"failureMessages": [],
"fullName": "TestSuite tests should assign test status correctly when are different",
"invocations": 1,
"location": null,
"numPassingAsserts": 2,
"retryReasons": [],
"status": "passed",
"title": "should assign test status correctly when are different"
}
],
"failureMessage": null
},
{
"leaks": false,
"numFailingTests": 3,
"numPassingTests": 1,
"numPendingTests": 0,
"numTodoTests": 0,
"openHandles": [],
"perfStats": {
"end": 1674927725924,
"runtime": 9510,
"slow": true,
"start": 1674927716414
},
"skipped": false,
"snapshot": {
"added": 0,
"fileDeleted": false,
"matched": 0,
"unchecked": 0,
"uncheckedKeys": [],
"unmatched": 0,
"updated": 0
},
"testFilePath": "C:\\dev\\node\\jest-stare\\__tests__\\cli\\CLI.test.ts",
"testResults": [
{
"ancestorTitles": [
"jest-stare cli tests"
],
"duration": 43,
"failureDetails": [],
"failureMessages": [],
"fullName": "jest-stare cli tests should throw error when no test result path given",
"invocations": 1,
"location": null,
"numPassingAsserts": 1,
"retryReasons": [],
"status": "passed",
"title": "should throw error when no test result path given"
},
{
"ancestorTitles": [
"jest-stare cli tests"
],
"duration": 6,
"failureDetails": [
{
"matcherResult": {
"message": "\u001b[2mexpect(\u001b[22m\u001b[31mreceived\u001b[39m\u001b[2m).\u001b[22mnot\u001b[2m.\u001b[22mtoBeDefined\u001b[2m()\u001b[22m\n\nReceived: \u001b[31m[Error]\u001b[39m",
"pass": true
}
}
],
"failureMessages": [
"Error: \u001b[2mexpect(\u001b[22m\u001b[31mreceived\u001b[39m\u001b[2m).\u001b[22mnot\u001b[2m.\u001b[22mtoBeDefined\u001b[2m()\u001b[22m\n\nReceived: \u001b[31m[Error]\u001b[39m\n at Object.<anonymous> (C:\\dev\\node\\jest-stare\\__tests__\\cli\\CLI.test.ts:51:27)\n at Promise.then.completed (C:\\dev\\node\\jest-stare\\node_modules\\jest-circus\\build\\utils.js:290:28)\n at new Promise (<anonymous>)\n at callAsyncCircusFn (C:\\dev\\node\\jest-stare\\node_modules\\jest-circus\\build\\utils.js:223:10)\n at _callCircusTest (C:\\dev\\node\\jest-stare\\node_modules\\jest-circus\\build\\run.js:248:40)\n at processTicksAndRejections (node:internal/process/task_queues:96:5)\n at _runTest (C:\\dev\\node\\jest-stare\\node_modules\\jest-circus\\build\\run.js:184:3)\n at _runTestsForDescribeBlock (C:\\dev\\node\\jest-stare\\node_modules\\jest-circus\\build\\run.js:86:9)\n at _runTestsForDescribeBlock (C:\\dev\\node\\jest-stare\\node_modules\\jest-circus\\build\\run.js:81:9)\n at run (C:\\dev\\node\\jest-stare\\node_modules\\jest-circus\\build\\run.js:26:3)\n at runAndTransformResultsToJestFormat (C:\\dev\\node\\jest-stare\\node_modules\\jest-circus\\build\\legacy-code-todo-rewrite\\jestAdapterInit.js:120:21)\n at jestAdapter (C:\\dev\\node\\jest-stare\\node_modules\\jest-circus\\build\\legacy-code-todo-rewrite\\jestAdapter.js:79:19)\n at runTestInternal (C:\\dev\\node\\jest-stare\\node_modules\\jest-runner\\build\\runTest.js:367:16)\n at runTest (C:\\dev\\node\\jest-stare\\node_modules\\jest-runner\\build\\runTest.js:444:34)\n at Object.worker (C:\\dev\\node\\jest-stare\\node_modules\\jest-runner\\build\\testWorker.js:106:12)"
],
"fullName": "jest-stare cli tests should not throw error for input args",
"invocations": 1,
"location": null,
"numPassingAsserts": 0,
"retryReasons": [],
"status": "failed",
"title": "should not throw error for input args"
},
{
"ancestorTitles": [
"jest-stare cli tests"
],
"duration": 11,
"failureDetails": [
{
"matcherResult": {
"message": "\u001b[2mexpect(\u001b[22m\u001b[31mreceived\u001b[39m\u001b[2m).\u001b[22mnot\u001b[2m.\u001b[22mtoBeDefined\u001b[2m()\u001b[22m\n\nReceived: \u001b[31m[Error]\u001b[39m",
"pass": true
}
}
],
"failureMessages": [
"Error: \u001b[2mexpect(\u001b[22m\u001b[31mreceived\u001b[39m\u001b[2m).\u001b[22mnot\u001b[2m.\u001b[22mtoBeDefined\u001b[2m()\u001b[22m\n\nReceived: \u001b[31m[Error]\u001b[39m\n at Object.<anonymous> (C:\\dev\\node\\jest-stare\\__tests__\\cli\\CLI.test.ts:77:27)\n at Promise.then.completed (C:\\dev\\node\\jest-stare\\node_modules\\jest-circus\\build\\utils.js:290:28)\n at new Promise (<anonymous>)\n at callAsyncCircusFn (C:\\dev\\node\\jest-stare\\node_modules\\jest-circus\\build\\utils.js:223:10)\n at _callCircusTest (C:\\dev\\node\\jest-stare\\node_modules\\jest-circus\\build\\run.js:248:40)\n at processTicksAndRejections (node:internal/process/task_queues:96:5)\n at _runTest (C:\\dev\\node\\jest-stare\\node_modules\\jest-circus\\build\\run.js:184:3)\n at _runTestsForDescribeBlock (C:\\dev\\node\\jest-stare\\node_modules\\jest-circus\\build\\run.js:86:9)\n at _runTestsForDescribeBlock (C:\\dev\\node\\jest-stare\\node_modules\\jest-circus\\build\\run.js:81:9)\n at run (C:\\dev\\node\\jest-stare\\node_modules\\jest-circus\\build\\run.js:26:3)\n at runAndTransformResultsToJestFormat (C:\\dev\\node\\jest-stare\\node_modules\\jest-circus\\build\\legacy-code-todo-rewrite\\jestAdapterInit.js:120:21)\n at jestAdapter (C:\\dev\\node\\jest-stare\\node_modules\\jest-circus\\build\\legacy-code-todo-rewrite\\jestAdapter.js:79:19)\n at runTestInternal (C:\\dev\\node\\jest-stare\\node_modules\\jest-runner\\build\\runTest.js:367:16)\n at runTest (C:\\dev\\node\\jest-stare\\node_modules\\jest-runner\\build\\runTest.js:444:34)\n at Object.worker (C:\\dev\\node\\jest-stare\\node_modules\\jest-runner\\build\\testWorker.js:106:12)"
],
"fullName": "jest-stare cli tests should not throw error for all input args",
"invocations": 1,
"location": null,
"numPassingAsserts": 0,
"retryReasons": [],
"status": "failed",
"title": "should not throw error for all input args"
},
{
"ancestorTitles": [
"jest-stare cli tests"
],
"duration": 6,
"failureDetails": [
{
"matcherResult": {
"message": "\u001b[2mexpect(\u001b[22m\u001b[31mreceived\u001b[39m\u001b[2m).\u001b[22mnot\u001b[2m.\u001b[22mtoBeDefined\u001b[2m()\u001b[22m\n\nReceived: \u001b[31m[Error]\u001b[39m",
"pass": true
}
}
],
"failureMessages": [
"Error: \u001b[2mexpect(\u001b[22m\u001b[31mreceived\u001b[39m\u001b[2m).\u001b[22mnot\u001b[2m.\u001b[22mtoBeDefined\u001b[2m()\u001b[22m\n\nReceived: \u001b[31m[Error]\u001b[39m\n at Object.<anonymous> (C:\\dev\\node\\jest-stare\\__tests__\\cli\\CLI.test.ts:97:27)\n at Promise.then.completed (C:\\dev\\node\\jest-stare\\node_modules\\jest-circus\\build\\utils.js:290:28)\n at new Promise (<anonymous>)\n at callAsyncCircusFn (C:\\dev\\node\\jest-stare\\node_modules\\jest-circus\\build\\utils.js:223:10)\n at _callCircusTest (C:\\dev\\node\\jest-stare\\node_modules\\jest-circus\\build\\run.js:248:40)\n at processTicksAndRejections (node:internal/process/task_queues:96:5)\n at _runTest (C:\\dev\\node\\jest-stare\\node_modules\\jest-circus\\build\\run.js:184:3)\n at _runTestsForDescribeBlock (C:\\dev\\node\\jest-stare\\node_modules\\jest-circus\\build\\run.js:86:9)\n at _runTestsForDescribeBlock (C:\\dev\\node\\jest-stare\\node_modules\\jest-circus\\build\\run.js:81:9)\n at run (C:\\dev\\node\\jest-stare\\node_modules\\jest-circus\\build\\run.js:26:3)\n at runAndTransformResultsToJestFormat (C:\\dev\\node\\jest-stare\\node_modules\\jest-circus\\build\\legacy-code-todo-rewrite\\jestAdapterInit.js:120:21)\n at jestAdapter (C:\\dev\\node\\jest-stare\\node_modules\\jest-circus\\build\\legacy-code-todo-rewrite\\jestAdapter.js:79:19)\n at runTestInternal (C:\\dev\\node\\jest-stare\\node_modules\\jest-runner\\build\\runTest.js:367:16)\n at runTest (C:\\dev\\node\\jest-stare\\node_modules\\jest-runner\\build\\runTest.js:444:34)\n at Object.worker (C:\\dev\\node\\jest-stare\\node_modules\\jest-runner\\build\\testWorker.js:106:12)"
],
"fullName": "jest-stare cli tests allow coverageLink config setting to be set via the command line",
"invocations": 1,
"location": null,
"numPassingAsserts": 0,
"retryReasons": [],
"status": "failed",
"title": "allow coverageLink config setting to be set via the command line"
}
],
"failureMessage": "\u001b[1m\u001b[31m \u001b[1m● \u001b[22m\u001b[1mjest-stare cli tests › should not throw error for input args\u001b[39m\u001b[22m\n\n \u001b[2mexpect(\u001b[22m\u001b[31mreceived\u001b[39m\u001b[2m).\u001b[22mnot\u001b[2m.\u001b[22mtoBeDefined\u001b[2m()\u001b[22m\n\n Received: \u001b[31m[Error]\u001b[39m\n\u001b[2m\u001b[22m\n\u001b[2m \u001b[0m \u001b[90m 49 |\u001b[39m }\u001b[0m\u001b[22m\n\u001b[2m \u001b[0m \u001b[90m 50 |\u001b[39m\u001b[0m\u001b[22m\n\u001b[2m \u001b[0m\u001b[31m\u001b[1m>\u001b[22m\u001b[2m\u001b[39m\u001b[90m 51 |\u001b[39m expect(error)\u001b[33m.\u001b[39mnot\u001b[33m.\u001b[39mtoBeDefined()\u001b[33m;\u001b[39m\u001b[0m\u001b[22m\n\u001b[2m \u001b[0m \u001b[90m |\u001b[39m \u001b[31m\u001b[1m^\u001b[22m\u001b[2m\u001b[39m\u001b[0m\u001b[22m\n\u001b[2m \u001b[0m \u001b[90m 52 |\u001b[39m expect(\u001b[33mProcessor\u001b[39m\u001b[33m.\u001b[39mrun)\u001b[33m.\u001b[39mtoBeCalled()\u001b[33m;\u001b[39m\u001b[0m\u001b[22m\n\u001b[2m \u001b[0m \u001b[90m 53 |\u001b[39m })\u001b[33m;\u001b[39m\u001b[0m\u001b[22m\n\u001b[2m \u001b[0m \u001b[90m 54 |\u001b[39m\u001b[0m\u001b[22m\n\u001b[2m\u001b[22m\n\u001b[2m \u001b[2mat Object.<anonymous> (\u001b[22m\u001b[2m\u001b[0m\u001b[36m__tests__/cli/CLI.test.ts\u001b[39m\u001b[0m\u001b[2m:51:27)\u001b[22m\u001b[2m\u001b[22m\n\n\u001b[1m\u001b[31m \u001b[1m● \u001b[22m\u001b[1mjest-stare cli tests › should not throw error for all input args\u001b[39m\u001b[22m\n\n \u001b[2mexpect(\u001b[22m\u001b[31mreceived\u001b[39m\u001b[2m).\u001b[22mnot\u001b[2m.\u001b[22mtoBeDefined\u001b[2m()\u001b[22m\n\n Received: \u001b[31m[Error]\u001b[39m\n\u001b[2m\u001b[22m\n\u001b[2m \u001b[0m \u001b[90m 75 |\u001b[39m }\u001b[0m\u001b[22m\n\u001b[2m \u001b[0m \u001b[90m 76 |\u001b[39m\u001b[0m\u001b[22m\n\u001b[2m \u001b[0m\u001b[31m\u001b[1m>\u001b[22m\u001b[2m\u001b[39m\u001b[90m 77 |\u001b[39m expect(error)\u001b[33m.\u001b[39mnot\u001b[33m.\u001b[39mtoBeDefined()\u001b[33m;\u001b[39m\u001b[0m\u001b[22m\n\u001b[2m \u001b[0m \u001b[90m |\u001b[39m \u001b[31m\u001b[1m^\u001b[22m\u001b[2m\u001b[39m\u001b[0m\u001b[22m\n\u001b[2m \u001b[0m \u001b[90m 78 |\u001b[39m expect(\u001b[33mProcessor\u001b[39m\u001b[33m.\u001b[39mrun)\u001b[33m.\u001b[39mtoBeCalled()\u001b[33m;\u001b[39m\u001b[0m\u001b[22m\n\u001b[2m \u001b[0m \u001b[90m 79 |\u001b[39m })\u001b[33m;\u001b[39m\u001b[0m\u001b[22m\n\u001b[2m \u001b[0m \u001b[90m 80 |\u001b[39m\u001b[0m\u001b[22m\n\u001b[2m\u001b[22m\n\u001b[2m \u001b[2mat Object.<anonymous> (\u001b[22m\u001b[2m\u001b[0m\u001b[36m__tests__/cli/CLI.test.ts\u001b[39m\u001b[0m\u001b[2m:77:27)\u001b[22m\u001b[2m\u001b[22m\n\n\u001b[1m\u001b[31m \u001b[1m● \u001b[22m\u001b[1mjest-stare cli tests › allow coverageLink config setting to be set via the command line\u001b[39m\u001b[22m\n\n \u001b[2mexpect(\u001b[22m\u001b[31mreceived\u001b[39m\u001b[2m).\u001b[22mnot\u001b[2m.\u001b[22mtoBeDefined\u001b[2m()\u001b[22m\n\n Received: \u001b[31m[Error]\u001b[39m\n\u001b[2m\u001b[22m\n\u001b[2m \u001b[0m \u001b[90m 95 |\u001b[39m }\u001b[0m\u001b[22m\n\u001b[2m \u001b[0m \u001b[90m 96 |\u001b[39m\u001b[0m\u001b[22m\n\u001b[2m \u001b[0m\u001b[31m\u001b[1m>\u001b[22m\u001b[2m\u001b[39m\u001b[90m 97 |\u001b[39m expect(error)\u001b[33m.\u001b[39mnot\u001b[33m.\u001b[39mtoBeDefined()\u001b[33m;\u001b[39m\u001b[0m\u001b[22m\n\u001b[2m \u001b[0m \u001b[90m |\u001b[39m \u001b[31m\u001b[1m^\u001b[22m\u001b[2m\u001b[39m\u001b[0m\u001b[22m\n\u001b[2m \u001b[0m \u001b[90m 98 |\u001b[39m expect(\u001b[0m\u001b[22m\n\u001b[2m \u001b[0m \u001b[90m 99 |\u001b[39m runSpy\u001b[33m.\u001b[39mmock\u001b[33m.\u001b[39mcalls\u001b[33m.\u001b[39mfind(args \u001b[33m=>\u001b[39m {\u001b[0m\u001b[22m\n\u001b[2m \u001b[0m \u001b[90m 100 |\u001b[39m \u001b[36mconst\u001b[39m config \u001b[33m=\u001b[39m args[\u001b[35m1\u001b[39m] \u001b[36mas\u001b[39m \u001b[33mIJestStareConfig\u001b[39m\u001b[33m;\u001b[39m\u001b[0m\u001b[22m\n\u001b[2m\u001b[22m\n\u001b[2m \u001b[2mat Object.<anonymous> (\u001b[22m\u001b[2m\u001b[0m\u001b[36m__tests__/cli/CLI.test.ts\u001b[39m\u001b[0m\u001b[2m:97:27)\u001b[22m\u001b[2m\u001b[22m\n"
},
{
"leaks": false,
"numFailingTests": 0,
"numPassingTests": 6,
"numPendingTests": 0,
"numTodoTests": 0,
"openHandles": [],
"perfStats": {
"end": 1674927725898,
"runtime": 9463,
"slow": true,
"start": 1674927716435
},
"skipped": false,
"snapshot": {
"added": 0,
"fileDeleted": false,
"matched": 1,
"unchecked": 0,
"uncheckedKeys": [],
"unmatched": 0,
"updated": 3
},
"testFilePath": "C:\\dev\\node\\jest-stare\\__tests__\\processor\\Processor.test.ts",
"testResults": [
{
"ancestorTitles": [
"Processor tests"
],
"duration": 37,
"failureDetails": [],
"failureMessages": [],
"fullName": "Processor tests should accept override config on input and not log when requested not to",
"invocations": 1,
"location": null,
"numPassingAsserts": 2,
"retryReasons": [],
"status": "passed",
"title": "should accept override config on input and not log when requested not to"
},
{
"ancestorTitles": [
"Processor tests"
],
"duration": 3,
"failureDetails": [],
"failureMessages": [],
"fullName": "Processor tests should accept override config on input and log when requested to",
"invocations": 1,
"location": null,
"numPassingAsserts": 2,
"retryReasons": [],
"status": "passed",
"title": "should accept override config on input and log when requested to"
},
{
"ancestorTitles": [
"Processor tests"
],
"duration": 41,
"failureDetails": [],
"failureMessages": [],
"fullName": "Processor tests should accept override html and JSON file name",
"invocations": 1,
"location": null,
"numPassingAsserts": 4,
"retryReasons": [],
"status": "passed",
"title": "should accept override html and JSON file name"
},
{
"ancestorTitles": [
"Processor tests"
],
"duration": 6,
"failureDetails": [],
"failureMessages": [],
"fullName": "Processor tests should create a report form an input object",
"invocations": 1,
"location": null,
"numPassingAsserts": 1,
"retryReasons": [],
"status": "passed",
"title": "should create a report form an input object"
},
{
"ancestorTitles": [
"Processor tests"
],
"duration": 5,
"failureDetails": [],
"failureMessages": [],
"fullName": "Processor tests should create file names correctly when default 'resultDir' is used",
"invocations": 1,
"location": null,
"numPassingAsserts": 2,
"retryReasons": [],
"status": "passed",
"title": "should create file names correctly when default 'resultDir' is used"
},
{
"ancestorTitles": [
"Processor tests"
],
"duration": 1,
"failureDetails": [],
"failureMessages": [],
"fullName": "Processor tests should error when called without input",
"invocations": 1,
"location": null,
"numPassingAsserts": 1,
"retryReasons": [],
"status": "passed",
"title": "should error when called without input"
}
],
"failureMessage": null
},
{
"leaks": false,
"numFailingTests": 0,
"numPassingTests": 7,
"numPendingTests": 2,
"numTodoTests": 0,
"openHandles": [],
"perfStats": {
"end": 1674927726189,
"runtime": 9722,
"slow": true,
"start": 1674927716467
},
"skipped": false,
"snapshot": {
"added": 0,
"fileDeleted": false,
"matched": 0,
"unchecked": 0,
"uncheckedKeys": [],
"unmatched": 0,
"updated": 7
},
"testFilePath": "C:\\dev\\node\\jest-stare\\__tests__\\__integration__\\render\\suites\\TestSuite.test.ts",
"testResults": [
{
"ancestorTitles": [
"TestSuite tests"
],
"duration": 70,
"failureDetails": [],
"failureMessages": [],
"fullName": "TestSuite tests should create proper elements for simple passing tests",
"invocations": 1,
"location": null,
"numPassingAsserts": 1,
"retryReasons": [],
"status": "passed",
"title": "should create proper elements for simple passing tests"
},
{
"ancestorTitles": [
"TestSuite tests"
],
"duration": 281,
"failureDetails": [],
"failureMessages": [],
"fullName": "TestSuite tests should create proper elements for simple failing tests",
"invocations": 1,
"location": null,
"numPassingAsserts": 1,
"retryReasons": [],
"status": "passed",
"title": "should create proper elements for simple failing tests"
},
{
"ancestorTitles": [
"TestSuite tests"
],
"duration": 244,
"failureDetails": [],
"failureMessages": [],
"fullName": "TestSuite tests should create proper elements for two diffs in html",
"invocations": 1,
"location": null,
"numPassingAsserts": 1,
"retryReasons": [],
"status": "passed",
"title": "should create proper elements for two diffs in html"
},
{
"ancestorTitles": [
"TestSuite tests"
],
"duration": 11,
"failureDetails": [],
"failureMessages": [],
"fullName": "TestSuite tests should show no red box if all tests are pending",
"invocations": 1,
"location": null,
"numPassingAsserts": 1,
"retryReasons": [],
"status": "passed",
"title": "should show no red box if all tests are pending"
},
{
"ancestorTitles": [
"TestSuite tests"
],
"duration": null,
"failureDetails": [],
"failureMessages": [],
"fullName": "TestSuite tests should create proper elements for large test more than 500 tests",
"invocations": 1,
"location": null,
"numPassingAsserts": 0,
"retryReasons": [],
"status": "pending",
"title": "should create proper elements for large test more than 500 tests"
},
{
"ancestorTitles": [
"TestSuite tests"
],
"duration": 67,
"failureDetails": [],
"failureMessages": [],
"fullName": "TestSuite tests should create proper elements for nested describes with reused names",
"invocations": 1,
"location": null,
"numPassingAsserts": 1,
"retryReasons": [],
"status": "passed",
"title": "should create proper elements for nested describes with reused names"
},
{
"ancestorTitles": [
"TestSuite tests"
],