testeranto 0.199.0 → 0.200.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (160) hide show
  1. package/bin/test_runner +0 -0
  2. package/bin/testeranto +0 -0
  3. package/bundle.js +5 -4
  4. package/cmd/test_runner/main.go +65 -0
  5. package/cmd/testeranto/main.go +37 -0
  6. package/dist/common/src/PM/main.js +126 -11
  7. package/dist/common/src/PM/pitonoRunner.js +54 -0
  8. package/dist/common/src/components/pure/TestPageView.js +180 -65
  9. package/dist/common/src/components/stateful/TestPage.js +50 -11
  10. package/dist/common/src/lib/abstractBase.test/index.js +1 -0
  11. package/dist/common/src/run.js +48 -82
  12. package/dist/common/src/{build.js → testeranto.js} +107 -55
  13. package/dist/common/src/utils/golingvuMetafile.js +116 -0
  14. package/dist/common/src/utils/logFiles.js +2 -1
  15. package/dist/common/src/utils/pitonoMetafile.js +67 -0
  16. package/dist/common/src/utils.js +40 -1
  17. package/dist/common/testeranto.config.js +23 -21
  18. package/dist/common/tsconfig.common.tsbuildinfo +1 -1
  19. package/dist/module/src/PM/main.js +126 -11
  20. package/dist/module/src/PM/pitonoRunner.js +47 -0
  21. package/dist/module/src/components/pure/TestPageView.js +180 -65
  22. package/dist/module/src/components/stateful/TestPage.js +50 -11
  23. package/dist/module/src/lib/abstractBase.test/index.js +1 -0
  24. package/dist/module/src/run.js +49 -45
  25. package/dist/module/src/{build.js → testeranto.js} +107 -55
  26. package/dist/module/src/utils/golingvuMetafile.js +109 -0
  27. package/dist/module/src/utils/logFiles.js +2 -1
  28. package/dist/module/src/utils/pitonoMetafile.js +60 -0
  29. package/dist/module/src/utils.js +40 -1
  30. package/dist/module/testeranto.config.js +23 -21
  31. package/dist/module/tsconfig.module.tsbuildinfo +1 -1
  32. package/dist/prebuild/App.js +81 -17
  33. package/dist/prebuild/testeranto.mjs +3249 -0
  34. package/dist/types/src/PM/main.d.ts +2 -0
  35. package/dist/types/src/PM/pitonoRunner.d.ts +7 -0
  36. package/dist/types/src/Types.d.ts +1 -1
  37. package/dist/types/src/run.d.ts +0 -1
  38. package/dist/types/src/utils/golingvuMetafile.d.ts +19 -0
  39. package/dist/types/src/utils/logFiles.d.ts +5 -1
  40. package/dist/types/src/utils/pitonoMetafile.d.ts +7 -0
  41. package/dist/types/src/utils.d.ts +5 -0
  42. package/dist/types/tsconfig.types.tsbuildinfo +1 -1
  43. package/docs/index.md +13 -13
  44. package/example/test_example.py +106 -0
  45. package/go.mod +3 -0
  46. package/package.json +2 -2
  47. package/pitono/__init__.py +54 -0
  48. package/pitono/base_given.py +131 -0
  49. package/pitono/base_suite.py +95 -0
  50. package/pitono/base_then.py +50 -0
  51. package/pitono/base_when.py +52 -0
  52. package/pitono/core_generator.py +110 -0
  53. package/pitono/pitono.egg-info/PKG-INFO +17 -0
  54. package/pitono/pitono.egg-info/SOURCES.txt +7 -0
  55. package/pitono/pitono.egg-info/dependency_links.txt +1 -0
  56. package/pitono/pitono.egg-info/entry_points.txt +2 -0
  57. package/pitono/pitono.egg-info/top_level.txt +1 -0
  58. package/pitono/pyproject.toml +26 -0
  59. package/pitono/setup.py +40 -0
  60. package/pitono/simple_adapter.py +24 -0
  61. package/pitono/types.py +78 -0
  62. package/sampleMetafile.json +56 -0
  63. package/src/PM/main.ts +146 -17
  64. package/src/PM/pitonoRunner.ts +49 -0
  65. package/src/Types.ts +1 -1
  66. package/src/components/pure/TestPageView.tsx +175 -8
  67. package/src/components/stateful/TestPage.tsx +57 -16
  68. package/src/core/types.go +36 -0
  69. package/src/golingvu/README.md +3 -0
  70. package/src/golingvu/base_given.go +76 -0
  71. package/src/golingvu/base_suite.go +39 -0
  72. package/src/golingvu/base_suite_test.go +197 -0
  73. package/src/golingvu/base_then.go +21 -0
  74. package/src/golingvu/base_when.go +21 -0
  75. package/src/golingvu/golingvu.go +179 -0
  76. package/src/golingvu/test_adapter.go +33 -0
  77. package/src/golingvu/types.go +86 -0
  78. package/src/lib/abstractBase.test/index.ts +1 -0
  79. package/src/pitono/README.md +3 -0
  80. package/src/run.ts +48 -48
  81. package/src/templates/frontpage.html +26 -17
  82. package/src/{build.ts → testeranto.ts} +128 -58
  83. package/src/utils/golingvuMetafile.ts +165 -0
  84. package/src/utils/logFiles.ts +2 -1
  85. package/src/utils/pitonoMetafile.ts +68 -0
  86. package/src/utils.ts +38 -1
  87. package/testeranto/App.js +81 -17
  88. package/testeranto/metafiles/golang/core.json +72 -0
  89. package/testeranto/metafiles/node/core.json +21 -459
  90. package/testeranto/metafiles/pure/core.json +18 -119
  91. package/testeranto/metafiles/web/core.json +37 -16797
  92. package/testeranto/reports/core/config.json +8 -40
  93. package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/lint_errors.txt +6 -0
  94. package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/prompt.txt +12 -1
  95. package/testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/lint_errors.txt +2 -0
  96. package/testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/prompt.txt +11 -1
  97. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/lint_errors.txt +2 -0
  98. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/prompt.txt +13 -3
  99. package/testeranto/reports/core/summary.json +9 -45
  100. package/testeranto.config.ts +25 -21
  101. package/tsc.log +46 -7
  102. package/dist/common/src/lib/mocks.test.js +0 -11
  103. package/dist/module/src/lib/mocks.test.js +0 -11
  104. package/dist/prebuild/ReportServer.mjs +0 -227
  105. package/dist/prebuild/build.mjs +0 -578
  106. package/dist/prebuild/mothership/index.mjs +0 -22
  107. package/dist/prebuild/run.mjs +0 -2290
  108. package/dist/tsconfig.tsbuildinfo +0 -1
  109. package/dist/types/src/lib/mocks.test.d.ts +0 -0
  110. package/src/lib/mocks.test.ts +0 -11
  111. package/testeranto/reports/core/src/Pure.test/pure/exit.log +0 -0
  112. package/testeranto/reports/core/src/Pure.test/pure/lint_errors.txt +0 -0
  113. package/testeranto/reports/core/src/Pure.test/pure/message.txt +0 -17
  114. package/testeranto/reports/core/src/Pure.test/pure/prompt.txt +0 -14
  115. package/testeranto/reports/core/src/Pure.test/pure/type_errors.txt +0 -66
  116. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/debug.log +0 -0
  117. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/error.log +0 -67
  118. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/exit.log +0 -1
  119. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/info.log +0 -2
  120. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/lint_errors.txt +0 -0
  121. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/message.txt +0 -17
  122. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/prompt.txt +0 -16
  123. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/tests.json +0 -68
  124. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/type_errors.txt +0 -56
  125. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/warn.log +0 -0
  126. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/debug.log +0 -0
  127. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/error.log +0 -22
  128. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/exit.log +0 -1
  129. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/info.log +0 -2
  130. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/lint_errors.txt +0 -13
  131. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/message.txt +0 -17
  132. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/prompt.txt +0 -16
  133. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/tests.json +0 -88
  134. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/type_errors.txt +0 -45
  135. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/warn.log +0 -0
  136. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/debug.log +0 -0
  137. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/error.log +0 -0
  138. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/exit.log +0 -1
  139. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/info.log +0 -2
  140. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/lint_errors.txt +0 -47
  141. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/message.txt +0 -17
  142. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/prompt.txt +0 -17
  143. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/tests.json +0 -57
  144. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/type_errors.txt +0 -99
  145. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/warn.log +0 -0
  146. package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/exit.log +0 -1
  147. package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/lint_errors.txt +0 -0
  148. package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/message.txt +0 -17
  149. package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/prompt.txt +0 -17
  150. package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/stderr.log +0 -18
  151. package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/stdout.log +0 -0
  152. package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/type_errors.txt +0 -32
  153. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/exit.log +0 -1
  154. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/lint_errors.txt +0 -15
  155. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/message.txt +0 -17
  156. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/prompt.txt +0 -17
  157. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/stderr.log +0 -66
  158. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/stdout.log +0 -10
  159. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/type_errors.txt +0 -47
  160. /package/dist/types/src/{build.d.ts → testeranto.d.ts} +0 -0
@@ -1,14 +1,6 @@
1
1
  {
2
2
  "errors": [],
3
- "warnings": [
4
- {
5
- "id": "different-path-case",
6
- "location": null,
7
- "notes": [],
8
- "pluginName": "",
9
- "text": "Use \"src/lib/TipoSkripto.test/Tiposkripto.ts\" instead of \"src/lib/TipoSkripto.test/TipoSkripto.ts\" to avoid issues with case-sensitive file systems"
10
- }
11
- ],
3
+ "warnings": [],
12
4
  "metafile": {
13
5
  "inputs": {
14
6
  "dist/cjs-shim.js": {
@@ -474,443 +466,10 @@
474
466
  }
475
467
  ],
476
468
  "format": "esm"
477
- },
478
- "src/lib/pmProxy.test/mockPMBase.ts": {
479
- "bytes": 4372,
480
- "imports": [
481
- {
482
- "path": "puppeteer-core",
483
- "kind": "import-statement",
484
- "external": true
485
- },
486
- {
487
- "path": "../index",
488
- "kind": "import-statement",
489
- "external": true
490
- },
491
- {
492
- "path": "../../PM/base",
493
- "kind": "import-statement",
494
- "external": true
495
- },
496
- {
497
- "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
498
- "kind": "import-statement",
499
- "external": true
500
- }
501
- ],
502
- "format": "esm"
503
- },
504
- "src/lib/pmProxy.test/implementation.ts": {
505
- "bytes": 6180,
506
- "imports": [
507
- {
508
- "path": "../../CoreTypes",
509
- "kind": "import-statement",
510
- "external": true
511
- },
512
- {
513
- "path": "../types",
514
- "kind": "import-statement",
515
- "external": true
516
- },
517
- {
518
- "path": "../pmProxy",
519
- "kind": "import-statement",
520
- "external": true
521
- },
522
- {
523
- "path": "./types",
524
- "kind": "import-statement",
525
- "external": true
526
- },
527
- {
528
- "path": "src/lib/pmProxy.test/mockPMBase.ts",
529
- "kind": "import-statement",
530
- "original": "./mockPMBase"
531
- },
532
- {
533
- "path": "src/lib/pmProxy.ts",
534
- "kind": "import-statement",
535
- "original": "../pmProxy"
536
- },
537
- {
538
- "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
539
- "kind": "import-statement",
540
- "external": true
541
- }
542
- ],
543
- "format": "esm"
544
- },
545
- "src/lib/pmProxy.test/specification.ts": {
546
- "bytes": 4899,
547
- "imports": [
548
- {
549
- "path": "../../CoreTypes",
550
- "kind": "import-statement",
551
- "external": true
552
- },
553
- {
554
- "path": "./types",
555
- "kind": "import-statement",
556
- "external": true
557
- },
558
- {
559
- "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
560
- "kind": "import-statement",
561
- "external": true
562
- }
563
- ],
564
- "format": "esm"
565
- },
566
- "node_modules/chai/index.js": {
567
- "bytes": 142562,
568
- "imports": [
569
- {
570
- "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
571
- "kind": "import-statement",
572
- "external": true
573
- }
574
- ],
575
- "format": "esm"
576
- },
577
- "src/lib/pmProxy.test/adapter.ts": {
578
- "bytes": 2069,
579
- "imports": [
580
- {
581
- "path": "node_modules/chai/index.js",
582
- "kind": "import-statement",
583
- "original": "chai"
584
- },
585
- {
586
- "path": "./types",
587
- "kind": "import-statement",
588
- "external": true
589
- },
590
- {
591
- "path": "../../CoreTypes",
592
- "kind": "import-statement",
593
- "external": true
594
- },
595
- {
596
- "path": "src/lib/pmProxy.ts",
597
- "kind": "import-statement",
598
- "original": "../pmProxy"
599
- },
600
- {
601
- "path": "../types",
602
- "kind": "import-statement",
603
- "external": true
604
- },
605
- {
606
- "path": "src/lib/pmProxy.test/mockPMBase.ts",
607
- "kind": "import-statement",
608
- "original": "./mockPMBase"
609
- },
610
- {
611
- "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
612
- "kind": "import-statement",
613
- "external": true
614
- }
615
- ],
616
- "format": "esm"
617
- },
618
- "src/lib/pmProxy.test/index.ts": {
619
- "bytes": 515,
620
- "imports": [
621
- {
622
- "path": "src/Node.ts",
623
- "kind": "import-statement",
624
- "original": "../../Node"
625
- },
626
- {
627
- "path": "src/lib/pmProxy.test/implementation.ts",
628
- "kind": "import-statement",
629
- "original": "./implementation"
630
- },
631
- {
632
- "path": "src/lib/pmProxy.test/specification.ts",
633
- "kind": "import-statement",
634
- "original": "./specification"
635
- },
636
- {
637
- "path": "src/lib/pmProxy.test/adapter.ts",
638
- "kind": "import-statement",
639
- "original": "./adapter"
640
- },
641
- {
642
- "path": "./types",
643
- "kind": "import-statement",
644
- "external": true
645
- },
646
- {
647
- "path": "src/lib/pmProxy.ts",
648
- "kind": "import-statement",
649
- "original": "../pmProxy"
650
- },
651
- {
652
- "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
653
- "kind": "import-statement",
654
- "external": true
655
- }
656
- ],
657
- "format": "esm"
658
- },
659
- "src/lib/TipoSkripto.test/MockTiposkripto.ts": {
660
- "bytes": 1703,
661
- "imports": [
662
- {
663
- "path": "src/lib/Tiposkripto.ts",
664
- "kind": "import-statement",
665
- "original": "../Tiposkripto"
666
- },
667
- {
668
- "path": "../../CoreTypes",
669
- "kind": "import-statement",
670
- "external": true
671
- },
672
- {
673
- "path": "..",
674
- "kind": "import-statement",
675
- "external": true
676
- },
677
- {
678
- "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
679
- "kind": "import-statement",
680
- "external": true
681
- }
682
- ],
683
- "format": "esm"
684
- },
685
- "src/lib/TipoSkripto.test/Tiposkripto.adapter.ts": {
686
- "bytes": 1161,
687
- "imports": [
688
- {
689
- "path": "../../CoreTypes",
690
- "kind": "import-statement",
691
- "external": true
692
- },
693
- {
694
- "path": "./Tiposkripto.types",
695
- "kind": "import-statement",
696
- "external": true
697
- },
698
- {
699
- "path": "src/lib/TipoSkripto.test/MockTiposkripto.ts",
700
- "kind": "import-statement",
701
- "original": "./MockTiposkripto"
702
- },
703
- {
704
- "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
705
- "kind": "import-statement",
706
- "external": true
707
- }
708
- ],
709
- "format": "esm"
710
- },
711
- "src/lib/TipoSkripto.test/Tiposkripto.implementation.ts": {
712
- "bytes": 6549,
713
- "imports": [
714
- {
715
- "path": "stream",
716
- "kind": "import-statement",
717
- "external": true
718
- },
719
- {
720
- "path": "../../CoreTypes",
721
- "kind": "import-statement",
722
- "external": true
723
- },
724
- {
725
- "path": "src/lib/TipoSkripto.test/MockTiposkripto.ts",
726
- "kind": "import-statement",
727
- "original": "./MockTiposkripto"
728
- },
729
- {
730
- "path": "./Tiposkripto.types",
731
- "kind": "import-statement",
732
- "external": true
733
- },
734
- {
735
- "path": "..",
736
- "kind": "import-statement",
737
- "external": true
738
- },
739
- {
740
- "path": "src/lib/TipoSkripto.test/Tiposkripto.specification.ts",
741
- "kind": "import-statement",
742
- "original": "./Tiposkripto.specification"
743
- },
744
- {
745
- "path": "src/lib/TipoSkripto.test/Tiposkripto.adapter.ts",
746
- "kind": "import-statement",
747
- "original": "./Tiposkripto.adapter"
748
- },
749
- {
750
- "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
751
- "kind": "import-statement",
752
- "external": true
753
- }
754
- ],
755
- "format": "esm"
756
- },
757
- "src/lib/TipoSkripto.test/Tiposkripto.specification.ts": {
758
- "bytes": 3042,
759
- "imports": [
760
- {
761
- "path": "../../CoreTypes",
762
- "kind": "import-statement",
763
- "external": true
764
- },
765
- {
766
- "path": "./Tiposkripto.types",
767
- "kind": "import-statement",
768
- "external": true
769
- },
770
- {
771
- "path": "src/lib/TipoSkripto.test/Tiposkripto.implementation.ts",
772
- "kind": "import-statement",
773
- "original": "./Tiposkripto.implementation"
774
- },
775
- {
776
- "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
777
- "kind": "import-statement",
778
- "external": true
779
- }
780
- ],
781
- "format": "esm"
782
- },
783
- "src/lib/TipoSkripto.test/TipoSkripto.ts": {
784
- "bytes": 449,
785
- "imports": [
786
- {
787
- "path": "src/Node.ts",
788
- "kind": "import-statement",
789
- "original": "../../Node"
790
- },
791
- {
792
- "path": "src/lib/TipoSkripto.test/Tiposkripto.adapter.ts",
793
- "kind": "import-statement",
794
- "original": "./Tiposkripto.adapter"
795
- },
796
- {
797
- "path": "./Tiposkripto.types",
798
- "kind": "import-statement",
799
- "external": true
800
- },
801
- {
802
- "path": "src/lib/TipoSkripto.test/MockTiposkripto.ts",
803
- "kind": "import-statement",
804
- "original": "./MockTiposkripto"
805
- },
806
- {
807
- "path": "src/lib/TipoSkripto.test/Tiposkripto.specification.ts",
808
- "kind": "import-statement",
809
- "original": "./Tiposkripto.specification"
810
- },
811
- {
812
- "path": "src/lib/TipoSkripto.test/Tiposkripto.implementation.ts",
813
- "kind": "import-statement",
814
- "original": "./Tiposkripto.implementation"
815
- },
816
- {
817
- "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
818
- "kind": "import-statement",
819
- "external": true
820
- }
821
- ],
822
- "format": "esm"
823
469
  }
824
470
  },
825
471
  "outputs": {
826
472
  "testeranto/bundles/node/core/src/lib/BaseSuite.test/node.test.mjs": {
827
- "imports": [
828
- {
829
- "path": "testeranto/bundles/node/core/chunk-SQHAK5YB.mjs",
830
- "kind": "import-statement"
831
- }
832
- ],
833
- "exports": [
834
- "default"
835
- ],
836
- "entryPoint": "src/lib/BaseSuite.test/node.test.ts",
837
- "inputs": {
838
- "src/lib/BaseSuite.test/mock.ts": {
839
- "bytesInOutput": 1480
840
- },
841
- "src/lib/BaseSuite.test/test.ts": {
842
- "bytesInOutput": 7643
843
- },
844
- "src/lib/BaseSuite.test/node.test.ts": {
845
- "bytesInOutput": 103
846
- }
847
- },
848
- "bytes": 9578
849
- },
850
- "testeranto/bundles/node/core/src/lib/pmProxy.test/index.mjs": {
851
- "imports": [
852
- {
853
- "path": "testeranto/bundles/node/core/chunk-SQHAK5YB.mjs",
854
- "kind": "import-statement"
855
- }
856
- ],
857
- "exports": [
858
- "default"
859
- ],
860
- "entryPoint": "src/lib/pmProxy.test/index.ts",
861
- "inputs": {
862
- "src/lib/pmProxy.test/mockPMBase.ts": {
863
- "bytesInOutput": 3221
864
- },
865
- "src/lib/pmProxy.test/implementation.ts": {
866
- "bytesInOutput": 3549
867
- },
868
- "src/lib/pmProxy.test/specification.ts": {
869
- "bytesInOutput": 4740
870
- },
871
- "node_modules/chai/index.js": {
872
- "bytesInOutput": 133810
873
- },
874
- "src/lib/pmProxy.test/adapter.ts": {
875
- "bytesInOutput": 1315
876
- },
877
- "src/lib/pmProxy.test/index.ts": {
878
- "bytesInOutput": 196
879
- }
880
- },
881
- "bytes": 154723
882
- },
883
- "testeranto/bundles/node/core/src/lib/TipoSkripto.test/TipoSkripto.mjs": {
884
- "imports": [
885
- {
886
- "path": "testeranto/bundles/node/core/chunk-SQHAK5YB.mjs",
887
- "kind": "import-statement"
888
- }
889
- ],
890
- "exports": [
891
- "default"
892
- ],
893
- "entryPoint": "src/lib/TipoSkripto.test/TipoSkripto.ts",
894
- "inputs": {
895
- "src/lib/TipoSkripto.test/MockTiposkripto.ts": {
896
- "bytesInOutput": 826
897
- },
898
- "src/lib/TipoSkripto.test/Tiposkripto.adapter.ts": {
899
- "bytesInOutput": 869
900
- },
901
- "src/lib/TipoSkripto.test/Tiposkripto.implementation.ts": {
902
- "bytesInOutput": 5648
903
- },
904
- "src/lib/TipoSkripto.test/Tiposkripto.specification.ts": {
905
- "bytesInOutput": 2810
906
- },
907
- "src/lib/TipoSkripto.test/TipoSkripto.ts": {
908
- "bytesInOutput": 137
909
- }
910
- },
911
- "bytes": 10760
912
- },
913
- "testeranto/bundles/node/core/chunk-SQHAK5YB.mjs": {
914
473
  "imports": [
915
474
  {
916
475
  "path": "node:path",
@@ -939,25 +498,13 @@
939
498
  }
940
499
  ],
941
500
  "exports": [
942
- "BaseGiven",
943
- "BaseSuite",
944
- "BaseThen",
945
- "BaseWhen",
946
- "Node_default",
947
- "Tiposkripto",
948
- "andWhenProxy",
949
- "butThenProxy"
501
+ "default"
950
502
  ],
503
+ "entryPoint": "src/lib/BaseSuite.test/node.test.ts",
951
504
  "inputs": {
952
505
  "dist/cjs-shim.js": {
953
506
  "bytesInOutput": 167
954
507
  },
955
- "src/lib/pmProxy.ts": {
956
- "bytesInOutput": 6590
957
- },
958
- "src/lib/BaseSuite.ts": {
959
- "bytesInOutput": 2451
960
- },
961
508
  "src/lib/index.ts": {
962
509
  "bytesInOutput": 672
963
510
  },
@@ -967,6 +514,9 @@
967
514
  "src/PM/index.ts": {
968
515
  "bytesInOutput": 20
969
516
  },
517
+ "src/lib/pmProxy.ts": {
518
+ "bytesInOutput": 6590
519
+ },
970
520
  "src/lib/BaseGiven.ts": {
971
521
  "bytesInOutput": 2911
972
522
  },
@@ -976,14 +526,26 @@
976
526
  "src/lib/BaseThen.ts": {
977
527
  "bytesInOutput": 1581
978
528
  },
529
+ "src/lib/BaseSuite.ts": {
530
+ "bytesInOutput": 2451
531
+ },
979
532
  "src/lib/Tiposkripto.ts": {
980
- "bytesInOutput": 5297
533
+ "bytesInOutput": 5299
981
534
  },
982
535
  "src/Node.ts": {
983
- "bytesInOutput": 1199
536
+ "bytesInOutput": 1203
537
+ },
538
+ "src/lib/BaseSuite.test/mock.ts": {
539
+ "bytesInOutput": 1481
540
+ },
541
+ "src/lib/BaseSuite.test/test.ts": {
542
+ "bytesInOutput": 7643
543
+ },
544
+ "src/lib/BaseSuite.test/node.test.ts": {
545
+ "bytesInOutput": 103
984
546
  }
985
547
  },
986
- "bytes": 27806
548
+ "bytes": 37067
987
549
  }
988
550
  }
989
551
  }
@@ -1,21 +1,6 @@
1
1
  {
2
2
  "errors": [],
3
3
  "warnings": [
4
- {
5
- "id": "",
6
- "location": {
7
- "column": 27,
8
- "file": "src/Pure.test.ts",
9
- "length": 31,
10
- "line": 11,
11
- "lineText": "import { MockPMBase } from \"./lib/pmProxy.test/mockPMBase\";",
12
- "namespace": "",
13
- "suggestion": ""
14
- },
15
- "notes": [],
16
- "pluginName": "console-detector",
17
- "text": "call of \"console.debug\" was detected, which is not supported in the pure runtime."
18
- },
19
4
  {
20
5
  "id": "",
21
6
  "location": {
@@ -576,120 +561,22 @@
576
561
  }
577
562
  ],
578
563
  "format": "esm"
579
- },
580
- "src/lib/pmProxy.test/mockPMBase.ts": {
581
- "bytes": 4372,
582
- "imports": [
583
- {
584
- "path": "puppeteer-core",
585
- "kind": "import-statement",
586
- "external": true
587
- },
588
- {
589
- "path": "../index",
590
- "kind": "import-statement",
591
- "external": true
592
- },
593
- {
594
- "path": "../../PM/base",
595
- "kind": "import-statement",
596
- "external": true
597
- }
598
- ],
599
- "format": "esm"
600
- },
601
- "src/Pure.test.ts": {
602
- "bytes": 10227,
603
- "imports": [
604
- {
605
- "path": "./CoreTypes",
606
- "kind": "import-statement",
607
- "external": true
608
- },
609
- {
610
- "path": "src/Pure.ts",
611
- "kind": "import-statement",
612
- "original": "./Pure"
613
- },
614
- {
615
- "path": "src/lib/pmProxy.test/mockPMBase.ts",
616
- "kind": "import-statement",
617
- "original": "./lib/pmProxy.test/mockPMBase"
618
- },
619
- {
620
- "path": "./lib/types",
621
- "kind": "import-statement",
622
- "external": true
623
- }
624
- ],
625
- "format": "esm"
626
564
  }
627
565
  },
628
566
  "outputs": {
629
567
  "testeranto/bundles/pure/core/src/lib/BaseSuite.test/pure.test.mjs": {
630
- "imports": [
631
- {
632
- "path": "testeranto/bundles/pure/core/chunk-6OAL6SL4.mjs",
633
- "kind": "import-statement"
634
- }
635
- ],
568
+ "imports": [],
636
569
  "exports": [
637
570
  "default"
638
571
  ],
639
572
  "entryPoint": "src/lib/BaseSuite.test/pure.test.ts",
640
573
  "inputs": {
641
- "src/lib/BaseSuite.test/mock.ts": {
642
- "bytesInOutput": 1480
643
- },
644
- "src/lib/BaseSuite.test/test.ts": {
645
- "bytesInOutput": 7643
646
- },
647
- "src/lib/BaseSuite.test/pure.test.ts": {
648
- "bytesInOutput": 103
649
- }
650
- },
651
- "bytes": 9578
652
- },
653
- "testeranto/bundles/pure/core/src/Pure.test.mjs": {
654
- "imports": [
655
- {
656
- "path": "testeranto/bundles/pure/core/chunk-6OAL6SL4.mjs",
657
- "kind": "import-statement"
658
- }
659
- ],
660
- "exports": [
661
- "default"
662
- ],
663
- "entryPoint": "src/Pure.test.ts",
664
- "inputs": {
665
- "src/lib/pmProxy.test/mockPMBase.ts": {
666
- "bytesInOutput": 3221
574
+ "src/lib/index.ts": {
575
+ "bytesInOutput": 672
667
576
  },
668
- "src/Pure.test.ts": {
669
- "bytesInOutput": 8006
670
- }
671
- },
672
- "bytes": 11473
673
- },
674
- "testeranto/bundles/pure/core/chunk-6OAL6SL4.mjs": {
675
- "imports": [],
676
- "exports": [
677
- "BaseGiven",
678
- "BaseSuite",
679
- "BaseThen",
680
- "BaseWhen",
681
- "Pure_default"
682
- ],
683
- "inputs": {
684
577
  "src/lib/pmProxy.ts": {
685
578
  "bytesInOutput": 6463
686
579
  },
687
- "src/lib/BaseSuite.ts": {
688
- "bytesInOutput": 2449
689
- },
690
- "src/lib/index.ts": {
691
- "bytesInOutput": 672
692
- },
693
580
  "src/lib/BaseGiven.ts": {
694
581
  "bytesInOutput": 2909
695
582
  },
@@ -699,8 +586,11 @@
699
586
  "src/lib/BaseThen.ts": {
700
587
  "bytesInOutput": 1579
701
588
  },
589
+ "src/lib/BaseSuite.ts": {
590
+ "bytesInOutput": 2449
591
+ },
702
592
  "src/lib/Tiposkripto.ts": {
703
- "bytesInOutput": 5297
593
+ "bytesInOutput": 5299
704
594
  },
705
595
  "src/PM/index.ts": {
706
596
  "bytesInOutput": 20
@@ -709,10 +599,19 @@
709
599
  "bytesInOutput": 2976
710
600
  },
711
601
  "src/Pure.ts": {
712
- "bytesInOutput": 1064
602
+ "bytesInOutput": 1068
603
+ },
604
+ "src/lib/BaseSuite.test/mock.ts": {
605
+ "bytesInOutput": 1480
606
+ },
607
+ "src/lib/BaseSuite.test/test.ts": {
608
+ "bytesInOutput": 7643
609
+ },
610
+ "src/lib/BaseSuite.test/pure.test.ts": {
611
+ "bytesInOutput": 103
713
612
  }
714
613
  },
715
- "bytes": 24943
614
+ "bytes": 34250
716
615
  }
717
616
  }
718
617
  }