-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest-timings.json
More file actions
1935 lines (1935 loc) · 85 KB
/
test-timings.json
File metadata and controls
1935 lines (1935 loc) · 85 KB
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
{
"generatedAt": "2026-02-13T23:14:27.691Z",
"rows": [
{
"file": "/home/rogardle/projects/Worklog/test/comment-update.test.ts",
"title": "create comment then update workitem (regression) preserves comment after updating work item",
"durationMs": 167.61123799999996
},
{
"file": "/home/rogardle/projects/Worklog/test/doctor-dependency-check.test.ts",
"title": "doctor dependency validation returns no findings when all endpoints exist",
"durationMs": 6.620625000000018
},
{
"file": "/home/rogardle/projects/Worklog/test/doctor-dependency-check.test.ts",
"title": "doctor dependency validation flags missing fromId",
"durationMs": 11.235628999999903
},
{
"file": "/home/rogardle/projects/Worklog/test/doctor-dependency-check.test.ts",
"title": "doctor dependency validation flags missing toId",
"durationMs": 0.9300470000000587
},
{
"file": "/home/rogardle/projects/Worklog/test/doctor-dependency-check.test.ts",
"title": "doctor dependency validation flags missing fromId and toId",
"durationMs": 0.8095560000000432
},
{
"file": "/home/rogardle/projects/Worklog/test/doctor-status-stage.test.ts",
"title": "doctor status/stage validation returns no findings for valid combinations",
"durationMs": 2.4635230000000092
},
{
"file": "/home/rogardle/projects/Worklog/test/doctor-status-stage.test.ts",
"title": "doctor status/stage validation flags invalid status values",
"durationMs": 27.2979610000001
},
{
"file": "/home/rogardle/projects/Worklog/test/doctor-status-stage.test.ts",
"title": "doctor status/stage validation flags invalid stage values",
"durationMs": 0.6753549999999677
},
{
"file": "/home/rogardle/projects/Worklog/test/doctor-status-stage.test.ts",
"title": "doctor status/stage validation flags incompatible status/stage combinations",
"durationMs": 0.6762479999999869
},
{
"file": "/home/rogardle/projects/Worklog/test/doctor-status-stage.test.ts",
"title": "doctor status/stage validation accepts normalized legacy values as fix suggestions",
"durationMs": 0.5501420000000508
},
{
"file": "/home/rogardle/projects/Worklog/test/migrations.test.ts",
"title": "migrations runner lists pending migration when column missing",
"durationMs": 120.95081699999992
},
{
"file": "/home/rogardle/projects/Worklog/test/migrations.test.ts",
"title": "migrations runner applies migration and creates backup",
"durationMs": 145.42965299999992
},
{
"file": "/home/rogardle/projects/Worklog/test/tui-chords.test.ts",
"title": "ChordHandler matches single-key registered chords",
"durationMs": 19.047192999999993
},
{
"file": "/home/rogardle/projects/Worklog/test/tui-chords.test.ts",
"title": "ChordHandler consumes partial sequences and times out",
"durationMs": 32.30395700000008
},
{
"file": "/home/rogardle/projects/Worklog/test/tui-chords.test.ts",
"title": "ChordHandler handles nested chords and invokes handler on full match",
"durationMs": 1.0590530000000626
},
{
"file": "/home/rogardle/projects/Worklog/test/tui-integration.test.ts",
"title": "TUI integration: style preservation runs TUI action and ensures textarea.style object is preserved when layout logic executes",
"durationMs": 833.1996790000001
},
{
"file": "/home/rogardle/projects/Worklog/test/tui-integration.test.ts",
"title": "TUI integration: style preservation escapes blessed tags when rendering detail text",
"durationMs": 58.07079599999997
},
{
"file": "/home/rogardle/projects/Worklog/test/tui-integration.test.ts",
"title": "TUI integration: style preservation renders all comments for selected item in details",
"durationMs": 65.26313500000015
},
{
"file": "/home/rogardle/projects/Worklog/test/tui-integration.test.ts",
"title": "TUI integration: style preservation cycles focus panes with Ctrl+W then w",
"durationMs": 89.56369899999981
},
{
"file": "/home/rogardle/projects/Worklog/test/tui-integration.test.ts",
"title": "TUI integration: style preservation moves focus between OpenCode response and input with Ctrl+W then k/j",
"durationMs": 60.08870100000013
},
{
"file": "/home/rogardle/projects/Worklog/test/tui-integration.test.ts",
"title": "TUI integration: style preservation updates border styles when focus changes",
"durationMs": 81.00884300000007
},
{
"file": "/home/rogardle/projects/Worklog/test/tui-integration.test.ts",
"title": "TUI integration: style preservation advances to the next recommendation in the Next Item dialog",
"durationMs": 211.6780120000003
},
{
"file": "/home/rogardle/projects/Worklog/test/tui-integration.test.ts",
"title": "TUI integration: style preservation opens detail modal when clicking a wrapped line with an id",
"durationMs": 103.07155999999986
},
{
"file": "/home/rogardle/projects/Worklog/test/tui-style.test.ts",
"title": "TUI Style Handling should preserve style object when clearing style properties",
"durationMs": 10.304847999999993
},
{
"file": "/home/rogardle/projects/Worklog/test/tui-style.test.ts",
"title": "TUI Style Handling should not crash when accessing style properties after clearing",
"durationMs": 13.868327000000022
},
{
"file": "/home/rogardle/projects/Worklog/test/tui-style.test.ts",
"title": "TUI Style Handling should handle widgets with no initial style object",
"durationMs": 4.232009999999946
},
{
"file": "/home/rogardle/projects/Worklog/test/tui-style.test.ts",
"title": "TUI Style Handling should not replace style object reference (regression test for crash bug)",
"durationMs": 3.0508969999999636
},
{
"file": "/home/rogardle/projects/Worklog/test/validator.test.ts",
"title": "CLI documentation validator validator script exits zero and prints OK",
"durationMs": 1401.3450629999998
},
{
"file": "/home/rogardle/projects/Worklog/tests/config.test.ts",
"title": "Configuration getConfigDir should return .worklog directory in current working directory",
"durationMs": 45.05001399999992
},
{
"file": "/home/rogardle/projects/Worklog/tests/config.test.ts",
"title": "Configuration getConfigPath should return path to config.yaml",
"durationMs": 90.12802499999998
},
{
"file": "/home/rogardle/projects/Worklog/tests/config.test.ts",
"title": "Configuration getConfigDefaultsPath should return path to config.defaults.yaml",
"durationMs": 54.384532000000036
},
{
"file": "/home/rogardle/projects/Worklog/tests/config.test.ts",
"title": "Configuration configExists should return false when config does not exist",
"durationMs": 49.38020800000004
},
{
"file": "/home/rogardle/projects/Worklog/tests/config.test.ts",
"title": "Configuration configExists should return true when config exists",
"durationMs": 33.14166799999998
},
{
"file": "/home/rogardle/projects/Worklog/tests/config.test.ts",
"title": "Configuration saveConfig should save config to file",
"durationMs": 56.88219800000002
},
{
"file": "/home/rogardle/projects/Worklog/tests/config.test.ts",
"title": "Configuration saveConfig should save config with autoExport setting",
"durationMs": 46.68283999999994
},
{
"file": "/home/rogardle/projects/Worklog/tests/config.test.ts",
"title": "Configuration saveConfig should create .worklog directory if it does not exist",
"durationMs": 24.990250999999944
},
{
"file": "/home/rogardle/projects/Worklog/tests/config.test.ts",
"title": "Configuration loadConfig should return null when no config exists",
"durationMs": 92.67760299999986
},
{
"file": "/home/rogardle/projects/Worklog/tests/config.test.ts",
"title": "Configuration loadConfig should reject configs missing required status/stage sections",
"durationMs": 67.90172400000006
},
{
"file": "/home/rogardle/projects/Worklog/tests/config.test.ts",
"title": "Configuration loadConfig should reject empty status/stage compatibility sections",
"durationMs": 46.43857400000002
},
{
"file": "/home/rogardle/projects/Worklog/tests/config.test.ts",
"title": "Configuration loadConfig should load config from file",
"durationMs": 37.71358700000019
},
{
"file": "/home/rogardle/projects/Worklog/tests/config.test.ts",
"title": "Configuration loadConfig should load config with autoExport setting",
"durationMs": 65.18076100000008
},
{
"file": "/home/rogardle/projects/Worklog/tests/config.test.ts",
"title": "Configuration loadConfig should load defaults when only defaults exist",
"durationMs": 62.39595499999996
},
{
"file": "/home/rogardle/projects/Worklog/tests/config.test.ts",
"title": "Configuration loadConfig should require status/stage sections in defaults",
"durationMs": 39.59379100000024
},
{
"file": "/home/rogardle/projects/Worklog/tests/config.test.ts",
"title": "Configuration loadConfig should load autoExport from defaults",
"durationMs": 118.14696299999969
},
{
"file": "/home/rogardle/projects/Worklog/tests/config.test.ts",
"title": "Configuration loadConfig should merge user config over defaults",
"durationMs": 107.80730399999993
},
{
"file": "/home/rogardle/projects/Worklog/tests/config.test.ts",
"title": "Configuration loadConfig should allow user config to override autoExport from defaults",
"durationMs": 72.96803699999964
},
{
"file": "/home/rogardle/projects/Worklog/tests/config.test.ts",
"title": "Configuration loadConfig should validate that projectName is a string",
"durationMs": 60.056285000000116
},
{
"file": "/home/rogardle/projects/Worklog/tests/config.test.ts",
"title": "Configuration loadConfig should validate that prefix is a string",
"durationMs": 49.00404800000024
},
{
"file": "/home/rogardle/projects/Worklog/tests/config.test.ts",
"title": "Configuration getDefaultPrefix should return WI when no config exists",
"durationMs": 77.66372200000023
},
{
"file": "/home/rogardle/projects/Worklog/tests/config.test.ts",
"title": "Configuration getDefaultPrefix should return prefix from config when it exists",
"durationMs": 53.919762999999875
},
{
"file": "/home/rogardle/projects/Worklog/tests/config.test.ts",
"title": "Configuration getDefaultPrefix should return prefix from defaults when only defaults exist",
"durationMs": 66.49784700000009
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase create should create a work item with required fields",
"durationMs": 202.75465499999984
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase create should create a work item with all optional fields",
"durationMs": 151.92678699999988
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase create should create a work item with a parent",
"durationMs": 167.65513699999997
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase create should generate unique IDs for multiple items",
"durationMs": 144.66928600000006
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase get should retrieve a work item by ID",
"durationMs": 84.26572899999996
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase get should return null for non-existent ID",
"durationMs": 107.77487299999984
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase list should list all work items when no filters are provided",
"durationMs": 70.88818199999992
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase list should filter by status",
"durationMs": 133.70125000000007
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase list should filter by priority",
"durationMs": 80.02908399999978
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase list should filter by status and priority",
"durationMs": 89.83721199999991
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase list should filter by tags",
"durationMs": 77.37720799999988
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase list should filter by assignee",
"durationMs": 129.04902399999992
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase list should filter by parentId null (root items)",
"durationMs": 141.60617899999988
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase update should update a work item title",
"durationMs": 83.78898100000015
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase update should update multiple fields",
"durationMs": 206.86945000000014
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase update should return null for non-existent ID",
"durationMs": 71.62411500000007
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase delete should delete a work item",
"durationMs": 82.07291799999985
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase delete should not regress deleted status after dependent reconciliation",
"durationMs": 57.548007000000325
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase delete should return false for non-existent ID",
"durationMs": 60.938060999999834
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase getChildren should return children of a work item",
"durationMs": 41.47147099999984
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase getChildren should return empty array for item with no children",
"durationMs": 125.87071000000014
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase getDescendants should return all descendants including nested children",
"durationMs": 104.136661
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase comments should create a comment",
"durationMs": 48.14188299999978
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase comments should create a comment with references",
"durationMs": 87.37189899999976
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase comments should get a comment by ID",
"durationMs": 54.931117000000086
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase comments should list comments for a work item",
"durationMs": 64.36353199999985
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase comments should update a comment",
"durationMs": 71.15800800000034
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase comments should delete a comment",
"durationMs": 85.1712950000001
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase dependency edges should add and list outbound dependency edges",
"durationMs": 82.30753699999968
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase dependency edges should list inbound dependency edges",
"durationMs": 78.82983000000013
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase dependency edges should remove dependency edges",
"durationMs": 43.40712600000006
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase dependency edges should return null when adding edge with missing items",
"durationMs": 39.295276000000285
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase dependency edges should open a blocked dependent when dependency is removed and no blockers remain",
"durationMs": 74.31705899999997
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase dependency edges should keep blocked status when other active blockers remain",
"durationMs": 87.691237
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase dependency edges should unblock dependents when target becomes inactive",
"durationMs": 168.60201899999993
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase import and export should import work items",
"durationMs": 189.3887539999996
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase import and export should record lastJsonlExportMtime in metadata after export",
"durationMs": 99.84302000000025
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase autoExport should export to JSONL when autoExport is enabled",
"durationMs": 70.52745400000003
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase autoExport should not export to JSONL when autoExport is disabled",
"durationMs": 76.20426300000054
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase findNextWorkItem should return null when no work items exist",
"durationMs": 70.71464399999968
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase findNextWorkItem should return the only open item when no in-progress items exist",
"durationMs": 61.21776300000056
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase findNextWorkItem should return highest priority item when multiple open items exist",
"durationMs": 63.0039569999999
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase findNextWorkItem should return oldest item when priorities are equal",
"durationMs": 117.70958299999984
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase findNextWorkItem should select direct child under in-progress item",
"durationMs": 82.31648099999984
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase findNextWorkItem should skip completed and deleted items",
"durationMs": 76.52411200000006
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase findNextWorkItem should exclude blocked in_review items by default",
"durationMs": 147.8359129999999
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase findNextWorkItem should include blocked in_review items when requested",
"durationMs": 89.60121199999958
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase findNextWorkItem should filter by assignee when provided",
"durationMs": 51.05543499999931
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase findNextWorkItem should filter by search term in title",
"durationMs": 62.69639900000038
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase findNextWorkItem should filter by search term in description",
"durationMs": 136.5127360000006
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase findNextWorkItem should filter by search term in comments",
"durationMs": 105.05511800000022
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase findNextWorkItem should filter by search term in id",
"durationMs": 70.9648559999996
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase findNextWorkItem should return in-progress item if it has no suitable children",
"durationMs": 146.20966899999985
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase findNextWorkItem should select highest priority child when multiple children exist",
"durationMs": 66.78262600000016
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase findNextWorkItem should apply assignee filter to children",
"durationMs": 80.71470899999986
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase findNextWorkItem should apply search filter to children",
"durationMs": 135.126671
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase findNextWorkItem should find blocking issues when in-progress item is blocked",
"durationMs": 84.19731700000011
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase findNextWorkItem should find blocking issues mentioned in comments",
"durationMs": 165.27936099999988
},
{
"file": "/home/rogardle/projects/Worklog/tests/database.test.ts",
"title": "WorklogDatabase findNextWorkItem should skip completed blocking issues",
"durationMs": 83.03119999999944
},
{
"file": "/home/rogardle/projects/Worklog/tests/grouping.test.ts",
"title": "Help grouping prints commands under the expected groups in order",
"durationMs": 918.9571520000001
},
{
"file": "/home/rogardle/projects/Worklog/tests/jsonl.test.ts",
"title": "JSONL Import/Export exportToJsonl should export work items and comments to JSONL format",
"durationMs": 53.372417999999925
},
{
"file": "/home/rogardle/projects/Worklog/tests/jsonl.test.ts",
"title": "JSONL Import/Export exportToJsonl should create directory if it does not exist",
"durationMs": 4.054170000000113
},
{
"file": "/home/rogardle/projects/Worklog/tests/jsonl.test.ts",
"title": "JSONL Import/Export exportToJsonl should export empty arrays as empty file with newline",
"durationMs": 3.189681999999948
},
{
"file": "/home/rogardle/projects/Worklog/tests/jsonl.test.ts",
"title": "JSONL Import/Export exportToJsonl should return file mtime and not leave temporary files behind",
"durationMs": 2.0908439999998336
},
{
"file": "/home/rogardle/projects/Worklog/tests/jsonl.test.ts",
"title": "JSONL Import/Export importFromJsonl should import work items and comments from JSONL format",
"durationMs": 7.5329159999998865
},
{
"file": "/home/rogardle/projects/Worklog/tests/jsonl.test.ts",
"title": "JSONL Import/Export importFromJsonl should handle old format (work items without type field)",
"durationMs": 7.8012769999998
},
{
"file": "/home/rogardle/projects/Worklog/tests/jsonl.test.ts",
"title": "JSONL Import/Export importFromJsonl should handle missing assignee and stage fields",
"durationMs": 1.3942070000000513
},
{
"file": "/home/rogardle/projects/Worklog/tests/jsonl.test.ts",
"title": "JSONL Import/Export importFromJsonl should throw error for non-existent file",
"durationMs": 2.6217169999999896
},
{
"file": "/home/rogardle/projects/Worklog/tests/jsonl.test.ts",
"title": "JSONL Import/Export importFromJsonl should skip empty lines",
"durationMs": 3.8148640000001706
},
{
"file": "/home/rogardle/projects/Worklog/tests/jsonl.test.ts",
"title": "JSONL Import/Export round-trip should preserve data through export and import cycle",
"durationMs": 11.650395000000117
},
{
"file": "/home/rogardle/projects/Worklog/tests/jsonl.test.ts",
"title": "JSONL Import/Export dependencies should include dependency edges in JSONL export and import",
"durationMs": 9.645612000000028
},
{
"file": "/home/rogardle/projects/Worklog/tests/jsonl.test.ts",
"title": "JSONL Import/Export dependencies should default missing dependencies to empty array",
"durationMs": 3.7706490000000485
},
{
"file": "/home/rogardle/projects/Worklog/tests/plugin-integration.test.ts",
"title": "Plugin Integration Tests should load and execute a simple external plugin",
"durationMs": 3049.092116
},
{
"file": "/home/rogardle/projects/Worklog/tests/plugin-integration.test.ts",
"title": "Plugin Integration Tests should load multiple plugins in lexicographic order",
"durationMs": 1289.9432310000007
},
{
"file": "/home/rogardle/projects/Worklog/tests/plugin-integration.test.ts",
"title": "Plugin Integration Tests should continue working even if a plugin fails to load",
"durationMs": 819.5891360000005
},
{
"file": "/home/rogardle/projects/Worklog/tests/plugin-integration.test.ts",
"title": "Plugin Integration Tests should show plugin information with plugins command",
"durationMs": 822.1364220000005
},
{
"file": "/home/rogardle/projects/Worklog/tests/plugin-integration.test.ts",
"title": "Plugin Integration Tests should handle empty plugin directory gracefully",
"durationMs": 732.9308660000006
},
{
"file": "/home/rogardle/projects/Worklog/tests/plugin-integration.test.ts",
"title": "Plugin Integration Tests should handle non-existent plugin directory gracefully",
"durationMs": 717.2881650000008
},
{
"file": "/home/rogardle/projects/Worklog/tests/plugin-integration.test.ts",
"title": "Plugin Integration Tests should allow plugin to access worklog database",
"durationMs": 1890.408214000001
},
{
"file": "/home/rogardle/projects/Worklog/tests/plugin-integration.test.ts",
"title": "Plugin Integration Tests should respect WORKLOG_PLUGIN_DIR environment variable",
"durationMs": 808.0050169999995
},
{
"file": "/home/rogardle/projects/Worklog/tests/plugin-integration.test.ts",
"title": "Plugin Integration Tests should not load .d.ts or .map files as plugins",
"durationMs": 756.5869470000016
},
{
"file": "/home/rogardle/projects/Worklog/tests/plugin-loader.test.ts",
"title": "Plugin Loader resolvePluginDir should return default plugin directory when no options provided",
"durationMs": 21.889383999999836
},
{
"file": "/home/rogardle/projects/Worklog/tests/plugin-loader.test.ts",
"title": "Plugin Loader resolvePluginDir should use WORKLOG_PLUGIN_DIR environment variable if set",
"durationMs": 7.738781000000017
},
{
"file": "/home/rogardle/projects/Worklog/tests/plugin-loader.test.ts",
"title": "Plugin Loader resolvePluginDir should use provided option over default",
"durationMs": 3.555556000000024
},
{
"file": "/home/rogardle/projects/Worklog/tests/plugin-loader.test.ts",
"title": "Plugin Loader resolvePluginDir should prioritize env var over option",
"durationMs": 1.6464710000000196
},
{
"file": "/home/rogardle/projects/Worklog/tests/plugin-loader.test.ts",
"title": "Plugin Loader discoverPlugins should return empty array when plugin directory does not exist",
"durationMs": 2.9014750000001186
},
{
"file": "/home/rogardle/projects/Worklog/tests/plugin-loader.test.ts",
"title": "Plugin Loader discoverPlugins should discover .js files in plugin directory",
"durationMs": 13.208272000000079
},
{
"file": "/home/rogardle/projects/Worklog/tests/plugin-loader.test.ts",
"title": "Plugin Loader discoverPlugins should discover .mjs files in plugin directory",
"durationMs": 13.728236000000152
},
{
"file": "/home/rogardle/projects/Worklog/tests/plugin-loader.test.ts",
"title": "Plugin Loader discoverPlugins should exclude .d.ts files",
"durationMs": 12.620443000000023
},
{
"file": "/home/rogardle/projects/Worklog/tests/plugin-loader.test.ts",
"title": "Plugin Loader discoverPlugins should exclude .map files",
"durationMs": 7.6561360000000604
},
{
"file": "/home/rogardle/projects/Worklog/tests/plugin-loader.test.ts",
"title": "Plugin Loader discoverPlugins should return plugins in deterministic lexicographic order",
"durationMs": 4.002091000000064
},
{
"file": "/home/rogardle/projects/Worklog/tests/plugin-loader.test.ts",
"title": "Plugin Loader discoverPlugins should ignore subdirectories",
"durationMs": 5.772650000000112
},
{
"file": "/home/rogardle/projects/Worklog/tests/plugin-loader.test.ts",
"title": "Plugin Loader loadPlugin should successfully load a valid plugin",
"durationMs": 28.82573699999989
},
{
"file": "/home/rogardle/projects/Worklog/tests/plugin-loader.test.ts",
"title": "Plugin Loader loadPlugin should fail when plugin has no default export",
"durationMs": 86.48553100000004
},
{
"file": "/home/rogardle/projects/Worklog/tests/plugin-loader.test.ts",
"title": "Plugin Loader loadPlugin should fail when plugin default export is not a function",
"durationMs": 25.930560000000014
},
{
"file": "/home/rogardle/projects/Worklog/tests/plugin-loader.test.ts",
"title": "Plugin Loader loadPlugin should fail when plugin throws an error",
"durationMs": 13.192866999999978
},
{
"file": "/home/rogardle/projects/Worklog/tests/plugin-loader.test.ts",
"title": "Plugin Loader loadPlugin should fail when plugin file has syntax errors",
"durationMs": 46.59530599999994
},
{
"file": "/home/rogardle/projects/Worklog/tests/plugin-loader.test.ts",
"title": "Plugin Loader plugin context should provide program instance to plugins",
"durationMs": 2.191832000000204
},
{
"file": "/home/rogardle/projects/Worklog/tests/plugin-loader.test.ts",
"title": "Plugin Loader plugin context should provide version to plugins",
"durationMs": 12.79039899999998
},
{
"file": "/home/rogardle/projects/Worklog/tests/plugin-loader.test.ts",
"title": "Plugin Loader plugin context should provide output helpers to plugins",
"durationMs": 12.096892000000025
},
{
"file": "/home/rogardle/projects/Worklog/tests/plugin-loader.test.ts",
"title": "Plugin Loader plugin context should provide utils to plugins",
"durationMs": 7.97752800000012
},
{
"file": "/home/rogardle/projects/Worklog/tests/sort-operations.test.ts",
"title": "Sort Operations sortIndex field should initialize sortIndex to 0 for new items",
"durationMs": 77.31008399999996
},
{
"file": "/home/rogardle/projects/Worklog/tests/sort-operations.test.ts",
"title": "Sort Operations sortIndex field should allow setting custom sortIndex on creation",
"durationMs": 54.37415599999986
},
{
"file": "/home/rogardle/projects/Worklog/tests/sort-operations.test.ts",
"title": "Sort Operations sortIndex field should update sortIndex through update method",
"durationMs": 40.22084599999994
},
{
"file": "/home/rogardle/projects/Worklog/tests/sort-operations.test.ts",
"title": "Sort Operations sortIndex field should preserve sortIndex when updating other fields",
"durationMs": 34.47922699999981
},
{
"file": "/home/rogardle/projects/Worklog/tests/sort-operations.test.ts",
"title": "Sort Operations createWithNextSortIndex should create item with sortIndex based on siblings",
"durationMs": 40.01622999999995
},
{
"file": "/home/rogardle/projects/Worklog/tests/sort-operations.test.ts",
"title": "Sort Operations createWithNextSortIndex should use specified gap value (default 100)",
"durationMs": 61.353297999999995
},
{
"file": "/home/rogardle/projects/Worklog/tests/sort-operations.test.ts",
"title": "Sort Operations createWithNextSortIndex should use custom gap value",
"durationMs": 107.63487500000019
},
{
"file": "/home/rogardle/projects/Worklog/tests/sort-operations.test.ts",
"title": "Sort Operations createWithNextSortIndex should place new items after all siblings with correct gap",
"durationMs": 64.24671500000022
},
{
"file": "/home/rogardle/projects/Worklog/tests/sort-operations.test.ts",
"title": "Sort Operations createWithNextSortIndex should work with parent items",
"durationMs": 91.63460799999984
},
{
"file": "/home/rogardle/projects/Worklog/tests/sort-operations.test.ts",
"title": "Sort Operations createWithNextSortIndex should handle empty sibling list",
"durationMs": 53.737090999999964
},
{
"file": "/home/rogardle/projects/Worklog/tests/sort-operations.test.ts",
"title": "Sort Operations assignSortIndexValues should assign sortIndex values ensuring proper ordering",
"durationMs": 44.75715300000002
},
{
"file": "/home/rogardle/projects/Worklog/tests/sort-operations.test.ts",
"title": "Sort Operations assignSortIndexValues should use specified gap between items",
"durationMs": 134.33944800000017
},
{
"file": "/home/rogardle/projects/Worklog/tests/sort-operations.test.ts",
"title": "Sort Operations assignSortIndexValues should maintain hierarchy when assigning indices",
"durationMs": 132.83916499999987
},
{
"file": "/home/rogardle/projects/Worklog/tests/sort-operations.test.ts",
"title": "Sort Operations assignSortIndexValues should return count of updated items",
"durationMs": 103.20190600000024
},
{
"file": "/home/rogardle/projects/Worklog/tests/sort-operations.test.ts",
"title": "Sort Operations assignSortIndexValues should not update items that already have correct sortIndex",
"durationMs": 39.68027499999971
},
{
"file": "/home/rogardle/projects/Worklog/tests/sort-operations.test.ts",
"title": "Sort Operations previewSortIndexOrder should preview sortIndex assignment without modifying",
"durationMs": 51.36677400000008
},
{
"file": "/home/rogardle/projects/Worklog/tests/sort-operations.test.ts",
"title": "Sort Operations previewSortIndexOrder should return all items in preview",
"durationMs": 82.27671299999975
},
{
"file": "/home/rogardle/projects/Worklog/tests/sort-operations.test.ts",
"title": "Sort Operations previewSortIndexOrder should apply correct gap in preview",
"durationMs": 76.78785199999993
},
{
"file": "/home/rogardle/projects/Worklog/tests/sort-operations.test.ts",
"title": "Sort Operations sorting with list command should preserve sortIndex when listing items",
"durationMs": 66.61228099999971
},
{
"file": "/home/rogardle/projects/Worklog/tests/sort-operations.test.ts",
"title": "Sort Operations sorting with list command should respect sortIndex in hierarchical ordering when using computeSortIndexOrder",
"durationMs": 73.09828500000003
},
{
"file": "/home/rogardle/projects/Worklog/tests/sort-operations.test.ts",
"title": "Sort Operations next item selection with sortIndex should prefer lower sortIndex for next item",
"durationMs": 67.5106780000001
},
{
"file": "/home/rogardle/projects/Worklog/tests/sort-operations.test.ts",
"title": "Sort Operations next item selection with sortIndex should return open items in sortIndex order",
"durationMs": 74.15749300000016
},
{
"file": "/home/rogardle/projects/Worklog/tests/sort-operations.test.ts",
"title": "Sort Operations next item selection with sortIndex should respect parent-child relationships in next item",
"durationMs": 47.62595400000009
},
{
"file": "/home/rogardle/projects/Worklog/tests/sort-operations.test.ts",
"title": "Sort Operations sorting stability and edge cases should handle items with same sortIndex",
"durationMs": 59.5602200000003
},
{
"file": "/home/rogardle/projects/Worklog/tests/sort-operations.test.ts",
"title": "Sort Operations sorting stability and edge cases should handle large gaps in sortIndex",
"durationMs": 65.46047399999998
},
{
"file": "/home/rogardle/projects/Worklog/tests/sort-operations.test.ts",
"title": "Sort Operations sorting stability and edge cases should handle negative sortIndex values",
"durationMs": 60.12197900000001
},
{
"file": "/home/rogardle/projects/Worklog/tests/sort-operations.test.ts",
"title": "Sort Operations sorting stability and edge cases should handle zero sortIndex correctly",
"durationMs": 96.73456099999976
},
{
"file": "/home/rogardle/projects/Worklog/tests/sort-operations.test.ts",
"title": "Sort Operations performance with large datasets should handle 100 items efficiently",
"durationMs": 214.73981400000002
},
{
"file": "/home/rogardle/projects/Worklog/tests/sort-operations.test.ts",
"title": "Sort Operations performance with large datasets should handle 100 items per hierarchy level",
"durationMs": 141.10606800000005
},
{
"file": "/home/rogardle/projects/Worklog/tests/sort-operations.test.ts",
"title": "Sort Operations performance with large datasets should reindex 100 items efficiently",
"durationMs": 259.6592929999997
},
{
"file": "/home/rogardle/projects/Worklog/tests/sort-operations.test.ts",
"title": "Sort Operations performance with large datasets should handle 500 items efficiently",
"durationMs": 522.4454999999998
},
{
"file": "/home/rogardle/projects/Worklog/tests/sort-operations.test.ts",
"title": "Sort Operations performance with large datasets should handle 500 items per hierarchy level",
"durationMs": 1082.0368319999998
},
{
"file": "/home/rogardle/projects/Worklog/tests/sort-operations.test.ts",
"title": "Sort Operations performance with large datasets should reindex 500 items efficiently",
"durationMs": 1145.0435539999999
},
{
"file": "/home/rogardle/projects/Worklog/tests/sort-operations.test.ts",
"title": "Sort Operations performance with large datasets should handle 1000 items efficiently",
"durationMs": 1512.7201409999998
},
{
"file": "/home/rogardle/projects/Worklog/tests/sort-operations.test.ts",
"title": "Sort Operations performance with large datasets should handle 1000 items per hierarchy level",
"durationMs": 1503.9214909999992
},
{
"file": "/home/rogardle/projects/Worklog/tests/sort-operations.test.ts",
"title": "Sort Operations performance with large datasets should reindex 500 items efficiently",
"durationMs": 1142.9524689999998
},
{
"file": "/home/rogardle/projects/Worklog/tests/sort-operations.test.ts",
"title": "Sort Operations performance with large datasets should find next item efficiently with 500 items",
"durationMs": 496.45585799999935
},
{
"file": "/home/rogardle/projects/Worklog/tests/sort-operations.test.ts",
"title": "Sort Operations sorting with filters should preserve sortIndex values when filtering by status",
"durationMs": 112.04779599999893
},
{
"file": "/home/rogardle/projects/Worklog/tests/sort-operations.test.ts",
"title": "Sort Operations sorting with filters should preserve sortIndex values when filtering by priority",
"durationMs": 67.79322700000012
},
{
"file": "/home/rogardle/projects/Worklog/tests/sort-operations.test.ts",
"title": "Sort Operations sorting with filters should preserve sortIndex values when filtering by assignee",
"durationMs": 75.5460609999991
},
{
"file": "/home/rogardle/projects/Worklog/tests/sync.test.ts",
"title": "Sync Operations local persistence race preserves newer fields when a stale instance writes to shared JSONL",
"durationMs": 320.3457290000001
},
{
"file": "/home/rogardle/projects/Worklog/tests/sync.test.ts",
"title": "Sync Operations git ref naming should map explicit refs/* to local refs/worklog/remotes/* tracking refs",
"durationMs": 0.5026629999999841
},
{
"file": "/home/rogardle/projects/Worklog/tests/sync.test.ts",
"title": "Sync Operations git ref naming should map normal branches to refs/remotes/* tracking refs",
"durationMs": 0.6209879999998975
},
{
"file": "/home/rogardle/projects/Worklog/tests/sync.test.ts",
"title": "Sync Operations mergeWorkItems should merge when local has items and remote is empty",
"durationMs": 14.539258999999902
},
{
"file": "/home/rogardle/projects/Worklog/tests/sync.test.ts",
"title": "Sync Operations mergeWorkItems should merge when remote has new items",
"durationMs": 2.544932999999901
},
{
"file": "/home/rogardle/projects/Worklog/tests/sync.test.ts",
"title": "Sync Operations mergeWorkItems should keep identical items without conflicts",
"durationMs": 15.984157000000096
},
{
"file": "/home/rogardle/projects/Worklog/tests/sync.test.ts",
"title": "Sync Operations mergeWorkItems should use remote value when local has default and remote has non-default",
"durationMs": 1.429104999999936
},
{
"file": "/home/rogardle/projects/Worklog/tests/sync.test.ts",