-
Notifications
You must be signed in to change notification settings - Fork 1
/
sublime-package.json
1028 lines (1028 loc) · 60.3 KB
/
sublime-package.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
{
"contributions": {
"settings": [
{
"file_patterns": [
"/AnyTest.sublime-settings"
],
"schema": {
"$id": "sublime://settings/AnyTest",
"definitions": {
"Runner": {
"type": "string",
"default": "command",
"enum": [
"console",
"command",
"terminus"
],
"description": "A runner to run tests with"
},
"ElixirFrameworks": {
"type": "string",
"enum": [
"espec",
"exunit"
]
},
"GoFrameworks": {
"type": "string",
"enum": [
"delve",
"ginkgo",
"gotest"
]
},
"JavascriptFrameworks": {
"type": "string",
"enum": [
"jest",
"mocha",
"vitest"
]
},
"PythonFrameworks": {
"type": "string",
"enum": [
"behave",
"django",
"mamba",
"nose",
"nose2",
"pytest",
"pyunit"
]
},
"RubyFrameworks": {
"type": "string",
"enum": [
"cucumber",
"m",
"minitest",
"rails",
"rspec",
"test_bench"
]
},
"RustFrameworks": {
"type": "string",
"enum": [
"cargotest"
]
},
"SwiftFrameworks": {
"type": "string",
"enum": [
"xctest"
]
},
"JavaFrameworks": {
"type": "string",
"enum": [
"junit"
]
},
"ZigFrameworks": {
"type": "string",
"enum": [
"zigtest"
]
},
"PackageConfig": {
"properties": {
"subprojects": {
"type": "array",
"default": [],
"description": "A list of subprojects",
"items": {
"anyOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
}
},
"test_frameworks": {
"type": "object",
"description": "Test frameworks to choose from",
"properties": {
"elixir": {
"anyOf": [
{
"$ref": "sublime://settings/AnyTest#/definitions/ElixirFrameworks"
},
{
"type": "array",
"items": {
"$ref": "sublime://settings/AnyTest#/definitions/ElixirFrameworks"
}
}
]
},
"go": {
"anyOf": [
{
"$ref": "sublime://settings/AnyTest#/definitions/GoFrameworks"
},
{
"type": "array",
"items": {
"$ref": "sublime://settings/AnyTest#/definitions/GoFrameworks"
}
}
]
},
"javascript": {
"anyOf": [
{
"$ref": "sublime://settings/AnyTest#/definitions/JavascriptFrameworks"
},
{
"type": "array",
"items": {
"$ref": "sublime://settings/AnyTest#/definitions/JavascriptFrameworks"
}
}
]
},
"python": {
"anyOf": [
{
"$ref": "sublime://settings/AnyTest#/definitions/PythonFrameworks"
},
{
"type": "array",
"items": {
"$ref": "sublime://settings/AnyTest#/definitions/PythonFrameworks"
}
}
]
},
"ruby": {
"anyOf": [
{
"$ref": "sublime://settings/AnyTest#/definitions/RubyFrameworks"
},
{
"type": "array",
"items": {
"$ref": "sublime://settings/AnyTest#/definitions/RubyFrameworks"
}
}
]
},
"rust": {
"anyOf": [
{
"$ref": "sublime://settings/AnyTest#/definitions/RustFrameworks"
},
{
"type": "array",
"items": {
"$ref": "sublime://settings/AnyTest#/definitions/RustFrameworks"
}
}
]
},
"swift": {
"anyOf": [
{
"$ref": "sublime://settings/AnyTest#/definitions/SwiftFrameworks"
},
{
"type": "array",
"items": {
"$ref": "sublime://settings/AnyTest#/definitions/SwiftFrameworks"
}
}
]
},
"java": {
"anyOf": [
{
"$ref": "sublime://settings/AnyTest#/definitions/JavaFrameworks"
},
{
"type": "array",
"items": {
"$ref": "sublime://settings/AnyTest#/definitions/JavaFrameworks"
}
}
]
},
"zig": {
"anyOf": [
{
"$ref": "sublime://settings/AnyTest#/definitions/ZigFrameworks"
},
{
"type": "array",
"items": {
"$ref": "sublime://settings/AnyTest#/definitions/ZigFrameworks"
}
}
]
}
}
},
"log_level": {
"type": "string",
"default": "WARNING",
"enum": [
"DEBUG",
"INFO",
"WARNING",
"ERROR",
"CRITICAL"
],
"description": "Package log level"
},
"show_status_messages": {
"type": "boolean",
"default": true,
"description": "Show important messages in the sublime status bar"
},
"save_current_file_on_run": {
"type": "boolean",
"default": true,
"description": "Save current file when running tests"
},
"save_all_files_on_run": {
"type": "boolean",
"default": false,
"description": "Save all files when running tests"
},
"scroll_to_view_on_run": {
"type": "boolean",
"default": false,
"description": "Scroll the view when running tests and the panel is overlaying the cursor"
},
"select_test_framework_when_not_found": {
"type": "boolean",
"default": false,
"description": "When a test framework is not found show a quick panel with all available test frameworks"
},
"always_show_test_framework_selection": {
"type": "boolean",
"default": true,
"description": "show the quick panel even if there is only one test framework available otherwise use the first test framework from the list"
},
"runner": {
"$ref": "sublime://settings/AnyTest#/definitions/Runner"
},
"runner.command.name": {
"type": "string",
"default": "exec",
"description": "Sublime command to run tests with"
},
"runner.command.panel_name": {
"type": "string",
"default": "output.exec",
"description": "Output panel name"
},
"runner.terminus.focus_on_run": {
"type": "boolean",
"default": false,
"description": "Focus on the terminus panel when running tests"
},
"runner.terminus.run_in_view": {
"type": "boolean",
"default": false,
"description": "Run tests in a view or in a panel"
},
"runner.terminus.pre_window_hooks": {
"type": "array",
"default": [],
"description": "A list of window hooks before running tests"
},
"runner.terminus.post_window_hooks": {
"type": "array",
"default": [],
"description": "A list of window hooks after running tests(e.g. carry_file_to_pane to move the view to a pane)"
},
"runner.terminus.post_view_hooks": {
"type": "array",
"default": [],
"description": "A list of view hooks before running tests"
},
"elixir.runner": {
"$ref": "sublime://settings/AnyTest#/definitions/Runner",
"description": "A runner to run elixir tests with"
},
"elixir.env": {
"type": "object",
"default": {},
"description": "Elixir specific ENV variables (will be merged with the ENV variables defined on the test framework level)"
},
"elixir.espec.runner": {
"$ref": "sublime://settings/AnyTest#/definitions/Runner",
"description": "A runner to run ESpec tests with"
},
"elixir.espec.executable": {
"type": "array",
"default": [
"mix",
"espec"
],
"description": "ESpec test framework executable (e.g. [\"mix\", \"do\", \"smth\"])"
},
"elixir.espec.args": {
"type": "array",
"default": [],
"description": "ESpec cli args (e.g. [\"--do-smth\"])"
},
"elixir.espec.env": {
"type": "object",
"default": {},
"description": "ESpec specific ENV variables (will be merged with the ENV variables defined on the language level)"
},
"elixir.exunit.runner": {
"$ref": "sublime://settings/AnyTest#/definitions/Runner",
"description": "A runner to run ExUnit tests with"
},
"elixir.exunit.executable": {
"type": "array",
"description": "ExUnit test framework executable (e.g. [\"mix\", \"do\", \"smth\"])"
},
"elixir.exunit.args": {
"type": "array",
"default": [],
"description": "ExUnit cli args (e.g. [\"--do-smth\"])"
},
"elixir.exunit.env": {
"type": "object",
"default": {},
"description": "ExUnit specific ENV variables (will be merged with the ENV variables defined on the language level)"
},
"go.test_framework": {
"$ref": "sublime://settings/AnyTest#/definitions/GoFrameworks"
},
"go.runner": {
"$ref": "sublime://settings/AnyTest#/definitions/Runner",
"description": "A runner to run Go tests with"
},
"go.env": {
"type": "object",
"default": {},
"description": "Go specific ENV variables (will be merged with the ENV variables defined on the test framework level)"
},
"go.delve.runner": {
"$ref": "sublime://settings/AnyTest#/definitions/Runner",
"description": "A runner to run Delve tests with"
},
"go.delve.executable": {
"type": "array",
"default": [
"dlv",
"test"
],
"description": "Delve test framework executable (e.g. [\"dlv\", \"my_test\"])"
},
"go.delve.args": {
"type": "array",
"default": [],
"description": "Delve cli args (e.g. [\"--do-smth\"])"
},
"go.delve.env": {
"type": "object",
"default": {},
"description": "Delve specific ENV variables (will be merged with the ENV variables defined on the language level)"
},
"go.ginko.runner": {
"$ref": "sublime://settings/AnyTest#/definitions/Runner",
"description": "A runner to run Ginkgo tests with"
},
"go.ginko.executable": {
"type": "array",
"default": [
"ginkgo"
],
"description": "Ginkgo test framework executable (e.g. [\"my_ginkgo\"])"
},
"go.ginko.args": {
"type": "array",
"default": [],
"description": "Ginkgo cli args (e.g. [\"--do-smth\"])"
},
"go.ginko.env": {
"type": "object",
"default": {},
"description": "Ginkgo specific ENV variables (will be merged with the ENV variables defined on the language level)"
},
"go.gotest.runner": {
"$ref": "sublime://settings/AnyTest#/definitions/Runner",
"description": "A runner to run Gotest tests with"
},
"go.gotest.executable": {
"type": "array",
"default": [
"go",
"test"
],
"description": "Gotest test framework executable (e.g. [\"go\", \"my_test\"])"
},
"go.gotest.args": {
"type": "array",
"default": [],
"description": "Gotest cli args (e.g. [\"--do-smth\"])"
},
"go.gotest.env": {
"type": "object",
"default": {},
"description": "Gotest specific ENV variables (will be merged with the ENV variables defined on the language level)"
},
"java.env": {
"type": "object",
"default": {},
"description": "Java specific ENV variables (will be merged with the ENV variables defined on the test framework level)"
},
"java.junit.runner": {
"$ref": "sublime://settings/AnyTest#/definitions/Runner",
"description": "A runner to run Junit tests with"
},
"java.junit.executable": {
"type": "array",
"description": "JUnit test framework executable (e.g. [\"bin/my_wrapper\", \"test\"])"
},
"java.junit.args": {
"type": "array",
"default": [],
"description": "JUnit test cli args (e.g. [\"--do-smth\"])"
},
"java.junit.env": {
"type": "object",
"default": {},
"description": "JUnit tests specific ENV variables (will be merged with the ENV variables defined on the language level)"
},
"javascript.test_framework": {
"$ref": "sublime://settings/AnyTest#/definitions/JavascriptFrameworks"
},
"javascript.runner": {
"$ref": "sublime://settings/AnyTest#/definitions/Runner",
"description": "A runner to run JavaScript tests with"
},
"javascript.env": {
"type": "object",
"default": {},
"description": "JavaScript specific ENV variables (will be merged with the ENV variables defined on the test framework level)"
},
"javascript.jest.runner": {
"$ref": "sublime://settings/AnyTest#/definitions/Runner",
"description": "A runner to run Jest tests with"
},
"javascript.jest.executable": {
"type": "array",
"description": "Jest test framework executable (e.g. [\"npm\", \"run\", \"test\"])"
},
"javascript.jest.args": {
"type": "array",
"default": [
"--no-coverage"
],
"description": "Jest cli args (e.g. [\"--do-smth\"])"
},
"javascript.jest.env": {
"type": "object",
"default": {},
"description": "Jest specific ENV variables (will be merged with the ENV variables defined on the language level)"
},
"javascript.mocha.runner": {
"$ref": "sublime://settings/AnyTest#/definitions/Runner",
"description": "A runner to run Mocha tests with"
},
"javascript.mocha.executable": {
"type": "array",
"description": "Mocha test framework executable (e.g. [\"npm\", \"run\", \"test\"])"
},
"javascript.mocha.args": {
"type": "array",
"default": [],
"description": "Mocha cli args (e.g. [\"--do-smth\"])"
},
"javascript.mocha.env": {
"type": "object",
"default": {},
"description": "Mocha specific ENV variables (will be merged with the ENV variables defined on the language level)"
},
"javascript.vitest.runner": {
"$ref": "sublime://settings/AnyTest#/definitions/Runner",
"description": "A runner to run Vitest tests with"
},
"javascript.vitest.executable": {
"type": "array",
"description": "Vitest test framework executable (e.g. [\"npm\", \"run\", \"test\"])"
},
"javascript.vitest.args": {
"type": "array",
"default": [],
"description": "Vitest cli args (e.g. [\"--do-smth\"])"
},
"javascript.vitest.env": {
"type": "object",
"default": {},
"description": "Vitest specific ENV variables (will be merged with the ENV variables defined on the language level)"
},
"python.test_framework": {
"$ref": "sublime://settings/AnyTest#/definitions/PythonFrameworks"
},
"python.runner": {
"$ref": "sublime://settings/AnyTest#/definitions/Runner",
"description": "A runner to run Python tests with"
},
"python.env": {
"type": "object",
"default": {},
"description": "Python specific ENV variables (will be merged with the ENV variables defined on the test framework level)"
},
"python.behave.runner": {
"$ref": "sublime://settings/AnyTest#/definitions/Runner",
"description": "A runner to run Behave tests with"
},
"python.behave.executable": {
"type": "array",
"default": [
"behave"
],
"description": "Behave test framework executable (e.g. [\"my_behave\"])"
},
"python.behave.args": {
"type": "array",
"default": [],
"description": "Behave cli args (e.g. [\"--do-smth\"])"
},
"python.behave.env": {
"type": "object",
"default": {},
"description": "Behave specific ENV variables (will be merged with the ENV variables defined on the language level)"
},
"python.django.use_nose": {
"type": "boolean",
"default": false,
"description": "Use the Nose test framework for Django"
},
"python.django.runner": {
"$ref": "sublime://settings/AnyTest#/definitions/Runner",
"description": "A runner to run Django tests with"
},
"python.django.executable": {
"type": "array",
"description": "Django test framework executable (e.g. [\"my_djangotest\"])"
},
"python.django.args": {
"type": "array",
"default": [],
"description": "Django cli args (e.g. [\"--do-smth\"])"
},
"python.django.env": {
"type": "object",
"default": {},
"description": "Django specific ENV variables (will be merged with the ENV variables defined on the language level)"
},
"python.mamba.runner": {
"$ref": "sublime://settings/AnyTest#/definitions/Runner",
"description": "A runner to run Mamba tests with"
},
"python.mamba.executable": {
"type": "array",
"description": "Mamba test framework executable (e.g. [\"my_mamba\"])"
},
"python.mamba.args": {
"type": "array",
"default": [],
"description": "Mamba cli args (e.g. [\"--do-smth\"])"
},
"python.mamba.env": {
"type": "object",
"default": {},
"description": "Mamba specific ENV variables (will be merged with the ENV variables defined on the language level)"
},
"python.nose.runner": {
"$ref": "sublime://settings/AnyTest#/definitions/Runner",
"description": "A runner to run Nose tests with"
},
"python.nose.executable": {
"type": "array",
"description": "Nose test framework executable (e.g. [\"my_nosetests\"])"
},
"python.nose.args": {
"type": "array",
"default": [
"--doctest-tests"
],
"description": "Nose cli args (e.g. [\"--do-smth\"])"
},
"python.nose.env": {
"type": "object",
"default": {},
"description": "Nose specific ENV variables (will be merged with the ENV variables defined on the language level)"
},
"python.nose2.runner": {
"$ref": "sublime://settings/AnyTest#/definitions/Runner",
"description": "A runner to run Nose2 tests with"
},
"python.nose2.executable": {
"type": "array",
"default": [
"nose2"
],
"description": "Nose2 test framework executable (e.g. [\"my_nose2\"])"
},
"python.nose2.args": {
"type": "array",
"default": [],
"description": "Nose2 cli args (e.g. [\"--do-smth\"])"
},
"python.nose2.env": {
"type": "object",
"default": {},
"description": "Nose2 specific ENV variables (will be merged with the ENV variables defined on the language level)"
},
"python.pytest.runner": {
"$ref": "sublime://settings/AnyTest#/definitions/Runner",
"description": "A runner to run PyTest tests with"
},
"python.pytest.executable": {
"type": "array",
"description": "PyTest test framework executable (e.g. [\"my_pytest\"])"
},
"python.pytest.args": {
"type": "array",
"default": [],
"description": "PyTest cli args (e.g. [\"--do-smth\"])"
},
"python.pytest.env": {
"type": "object",
"default": {},
"description": "PyTest specific ENV variables (will be merged with the ENV variables defined on the language level)"
},
"python.pyunit.runner": {
"type": "string",
"default": "command",
"enum": [
"console",
"command",
"terminus",
"unittesting"
],
"description": "A runner to run PyUnit tests with"
},
"python.pyunit.executable": {
"type": "array",
"description": "PyUnit test framework executable (e.g. [\"my_pyunit\"])"
},
"python.pyunit.args": {
"type": "array",
"default": [],
"description": "PyUnit cli args (e.g. [\"--do-smth\"])"
},
"python.pyunit.env": {
"type": "object",
"default": {},
"description": "PyUnit specific ENV variables (will be merged with the ENV variables defined on the language level)"
},
"ruby.runner": {
"$ref": "sublime://settings/AnyTest#/definitions/Runner",
"description": "A runner to run Python tests with"
},
"ruby.use_bundle": {
"type": "boolean",
"default": true,
"description": "If the Gemfile exists prefix the executable with bundle exec"
},
"ruby.use_binstubs": {
"type": "boolean",
"default": true,
"description": "If the binstub exists use it as an executable"
},
"ruby.use_spring_binstub": {
"type": "boolean",
"default": false,
"description": "If the Spring binstub exists prefix the executable with it"
},
"ruby.env": {
"type": "object",
"default": {},
"description": "Ruby specific ENV variables (will be merged with the ENV variables defined on the test framework level)"
},
"ruby.cucumber.runner": {
"$ref": "sublime://settings/AnyTest#/definitions/Runner",
"description": "A runner to run Cucumber tests with"
},
"ruby.cucumber.executable": {
"type": "array",
"description": "Cucumber test framework executable (e.g. [\"bin/my_cucumber\"])"
},
"ruby.cucumber.use_bundle": {
"type": "boolean",
"default": true,
"description": "If the Gemfile exists prefix the Cucumber executable with bundle exec"
},
"ruby.cucumber.use_binstubs": {
"type": "boolean",
"default": true,
"description": "If the Cucumber binstub exists use it as an executable"
},
"ruby.cucumber.use_spring_binstub": {
"type": "boolean",
"default": false,
"description": "If the Spring binstub exists prefix the Cucumber executable with it"
},
"ruby.cucumber.args": {
"type": "array",
"default": [],
"description": "Cucumber cli args (e.g. [\"--do-smth\"])"
},
"ruby.cucumber.env": {
"type": "object",
"default": {},
"description": "Cucumber specific ENV variables (will be merged with the ENV variables defined on the language level)"
},
"ruby.m.runner": {
"$ref": "sublime://settings/AnyTest#/definitions/Runner",
"description": "A runner to run Cucumber tests with"
},
"ruby.m.executable": {
"type": "array",
"description": "M test framework executable (e.g. [\"bin/my_m\"])"
},
"ruby.m.use_bundle": {
"type": "boolean",
"default": true,
"description": "If the Gemfile exists prefix the M executable with bundle exec"
},
"ruby.m.use_binstubs": {
"type": "boolean",
"default": true,
"description": "If the M binstub exists use it as an executable"
},
"ruby.m.use_spring_binstub": {
"type": "boolean",
"default": false,
"description": "If the Spring binstub exists prefix the M executable with it"
},
"ruby.m.args": {
"type": "array",
"default": [],
"description": "M cli args (e.g. [\"--do-smth\"])"
},
"ruby.m.env": {
"type": "object",
"default": {},
"description": "M specific ENV variables (will be merged with the ENV variables defined on the language level)"
},
"ruby.minitest.runner": {
"$ref": "sublime://settings/AnyTest#/definitions/Runner",
"description": "A runner to run minitest tests with"
},
"ruby.minitest.executable": {
"type": "array",
"description": "minitest test framework executable (e.g. [\"bin/tests\"])"
},
"ruby.minitest.use_bundle": {
"type": "boolean",
"default": true,
"description": "If the Gemfile exists prefix the minitest executable with bundle exec"
},
"ruby.minitest.use_binstubs": {
"type": "boolean",
"default": true,
"description": "If the minitest binstub exists use it as an executable"
},
"ruby.minitest.use_spring_binstub": {
"type": "boolean",
"default": false,
"description": "If the Spring binstub exists prefix the minitest executable with it"
},
"ruby.minitest.use_m": {
"type": "boolean",
"default": false,
"description": "If the file pattern matches use the M test framework"
},
"ruby.minitest.test_folder": {
"type": "string",
"default": "test",
"description": "The folder when the tests are located"
},
"ruby.minitest.file_pattern": {
"type": "string",
"default": "*_test.rb",
"description": "The test files pattern"
},
"ruby.minitest.args": {
"type": "array",
"default": [],
"description": "minitest cli args (e.g. [\"--do-smth\"])"
},
"ruby.minitest.env": {
"type": "object",
"default": {},
"description": "minitest specific ENV variables (will be merged with the ENV variables defined on the language level)"
},
"ruby.rails.runner": {
"$ref": "sublime://settings/AnyTest#/definitions/Runner",
"description": "A runner to run Rails tests with"
},
"ruby.rails.executable": {
"type": "array",
"description": "Rails test framework executable (e.g. [\"bin/my_rails_test\"])"
},
"ruby.rails.use_bundle": {
"type": "boolean",
"default": true,
"description": "If the Gemfile exists prefix the Rails executable with bundle exec"
},
"ruby.rails.use_binstubs": {
"type": "boolean",
"default": true,
"description": "If the Rails binstub exists use it as an executable"
},
"ruby.rails.use_spring_binstub": {
"type": "boolean",
"default": false,
"description": "If the Spring binstub exists prefix the Rails test framework executable with it"
},
"ruby.rails.args": {
"type": "array",
"default": [],
"description": "Rails test framework cli args (e.g. [\"--do-smth\"])"
},
"ruby.rails.env": {
"type": "object",
"default": {},
"description": "Rails test framework specific ENV variables (will be merged with the ENV variables defined on the language level)"
},
"ruby.rspec.runner": {
"$ref": "sublime://settings/AnyTest#/definitions/Runner",
"description": "A runner to run RSpec tests with"
},
"ruby.rspec.executable": {
"type": "array",
"description": "RSpec test framework executable (e.g. [\"bin/my_rspec\"])"
},
"ruby.rspec.use_bundle": {
"type": "boolean",
"default": true,
"description": "If the Gemfile exists prefix the RSpec executable with bundle exec"
},
"ruby.rspec.use_binstubs": {
"type": "boolean",
"default": true,
"description": "If the RSpec binstub exists use it as an executable"
},
"ruby.rspec.use_spring_binstub": {
"type": "boolean",
"default": false,
"description": "If the Spring binstub exists prefix the RSpec executable with it"
},
"ruby.rspec.args": {
"type": "array",
"default": [],
"description": "RSpec cli args (e.g. [\"--do-smth\"])"
},
"ruby.rspec.env": {
"type": "object",
"default": {},
"description": "RSpec specific ENV variables (will be merged with the ENV variables defined on the language level)"
},
"ruby.test_bench.runner": {
"$ref": "sublime://settings/AnyTest#/definitions/Runner",
"description": "A runner to run Cucumber tests with"
},
"ruby.test_bench.executable": {
"type": "array",
"description": "M test framework executable (e.g. [\"bin/my_m\"])"
},
"ruby.test_bench.use_bundle": {
"type": "boolean",
"default": true,
"description": "If the Gemfile exists prefix the M executable with bundle exec"
},
"ruby.test_bench.args": {
"type": "array",
"default": [],
"description": "M cli args (e.g. [\"--do-smth\"])"
},
"ruby.test_bench.env": {
"type": "object",
"default": {},
"description": "M specific ENV variables (will be merged with the ENV variables defined on the language level)"
},
"rust.runner": {
"$ref": "sublime://settings/AnyTest#/definitions/Runner",
"description": "A runner to run Rust tests with"
},
"rust.env": {
"type": "object",
"default": {},
"description": "Rust specific ENV variables (will be merged with the ENV variables defined on the test framework level)"
},
"rust.cargotest.runner": {
"$ref": "sublime://settings/AnyTest#/definitions/Runner",
"description": "A runner to run cargo tests with"
},
"rust.cargotest.executable": {
"type": "array",
"default": [
"cargo",
"test"
],
"description": "Cargo test framework executable (e.g. [\"bin/tests\"])"
},
"rust.cargotest.args": {
"type": "array",
"default": [],
"description": "Cargo test cli args (e.g. [\"--do-smth\"])"
},
"rust.cargotest.env": {
"type": "object",
"default": {},
"description": "Cargo tests specific ENV variables (will be merged with the ENV variables defined on the language level)"
},
"swift.env": {
"type": "object",
"default": {},
"description": "Swift specific ENV variables (will be merged with the ENV variables defined on the test framework level)"
},
"swift.xctest.runner": {
"$ref": "sublime://settings/AnyTest#/definitions/Runner",
"description": "A runner to run XCTest tests with"
},
"swift.xctest.executable": {
"type": "array",
"default": [
"swift",
"test"
],
"description": "XCTest test framework executable (e.g. [\"bin/tests\"])"
},
"swift.xctest.args": {
"type": "array",
"default": [],
"description": "XCTest test cli args (e.g. [\"--do-smth\"])"
},
"swift.xctest.env": {
"type": "object",
"default": {},
"description": "XCTest tests specific ENV variables (will be merged with the ENV variables defined on the language level)"
},
"zig.runner": {
"$ref": "sublime://settings/AnyTest#/definitions/Runner",
"description": "A runner to run Zig tests with"
},
"zig.env": {
"type": "object",
"default": {},
"description": "Zig specific ENV variables (will be merged with the ENV variables defined on the test framework level)"
},
"zig.zigtest.runner": {
"$ref": "sublime://settings/AnyTest#/definitions/Runner",
"description": "A runner to run zig tests with"
},
"zig.zigtest.executable": {
"type": "array",
"default": [
"zig"
],
"description": "Zig test framework executable (e.g. [\"bin/tests\"])"
},
"zig.zigtest.args": {
"type": "array",
"default": [],
"description": "Zig test cli args (e.g. [\"--do-smth\"])"
},
"zig.zigtest.env": {
"type": "object",