testeranto 0.197.0 → 0.198.0
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.
- package/.vscode/settings.json +7 -2
- package/design-editor/DesignEditor.tsx +9 -5
- package/dist/common/design-editor/DesignEditor.js +8 -5
- package/dist/common/src/App.js +29 -5
- package/dist/common/src/Node.js +3 -2
- package/dist/common/src/PM/main.js +1 -1
- package/dist/common/src/Pure.js +2 -2
- package/dist/common/src/Web.js +2 -2
- package/dist/common/src/components/DesignEditorPage.js +55 -19
- package/dist/common/src/lib/BaseGiven.js +99 -0
- package/dist/common/src/lib/BaseSuite.test/mock.js +9 -5
- package/dist/common/src/lib/BaseThen.js +64 -0
- package/dist/common/src/lib/BaseWhen.js +45 -0
- package/dist/common/src/lib/Tiposkripto.js +149 -0
- package/dist/common/src/lib/{core.test/MockCore.js → Tiposkripto.test/MockTiposkripto.js} +5 -8
- package/dist/common/src/lib/{core.test/core.test.adapter.js → Tiposkripto.test/Tiposkripto.adapter.js} +10 -8
- package/dist/common/src/lib/{classBuilder.test/classBuilder.test.implementation.js → Tiposkripto.test/Tiposkripto.implementation.js} +44 -61
- package/dist/common/src/lib/Tiposkripto.test/Tiposkripto.js +11 -0
- package/dist/common/src/lib/{classBuilder.test/classBuilder.test.specification.js → Tiposkripto.test/Tiposkripto.specification.js} +13 -9
- package/dist/common/src/lib/abstractBase.test/MockGiven.js +10 -3
- package/dist/common/src/lib/abstractBase.test/MockThen.js +6 -3
- package/dist/common/src/lib/abstractBase.test/MockWhen.js +10 -3
- package/dist/common/src/lib/abstractBase.test/adapter.js +18 -6
- package/dist/common/src/lib/abstractBase.test/implementation.js +3 -3
- package/dist/common/src/lib/mocks.test.js +10 -8
- package/dist/common/src/run.js +15 -4
- package/dist/common/testeranto.config.js +12 -36
- package/dist/common/tsconfig.common.tsbuildinfo +1 -1
- package/dist/module/design-editor/DesignEditor.js +8 -5
- package/dist/module/src/App.js +29 -5
- package/dist/module/src/Node.js +3 -2
- package/dist/module/src/PM/main.js +1 -1
- package/dist/module/src/Pure.js +2 -2
- package/dist/module/src/Web.js +2 -2
- package/dist/module/src/components/DesignEditorPage.js +55 -19
- package/dist/module/src/lib/BaseGiven.js +95 -0
- package/dist/module/src/lib/BaseSuite.test/mock.js +6 -2
- package/dist/module/src/lib/BaseThen.js +60 -0
- package/dist/module/src/lib/BaseWhen.js +41 -0
- package/dist/module/src/lib/Tiposkripto.js +146 -0
- package/dist/module/src/lib/{core.test/MockCore.js → Tiposkripto.test/MockTiposkripto.js} +3 -6
- package/dist/module/src/lib/{core.test/core.test.adapter.js → Tiposkripto.test/Tiposkripto.adapter.js} +10 -8
- package/dist/module/src/lib/{classBuilder.test/classBuilder.test.implementation.js → Tiposkripto.test/Tiposkripto.implementation.js} +44 -58
- package/dist/module/src/lib/Tiposkripto.test/Tiposkripto.js +6 -0
- package/dist/module/src/lib/{classBuilder.test/classBuilder.test.specification.js → Tiposkripto.test/Tiposkripto.specification.js} +12 -8
- package/dist/module/src/lib/abstractBase.test/MockGiven.js +9 -2
- package/dist/module/src/lib/abstractBase.test/MockThen.js +5 -2
- package/dist/module/src/lib/abstractBase.test/MockWhen.js +9 -2
- package/dist/module/src/lib/abstractBase.test/adapter.js +18 -6
- package/dist/module/src/lib/abstractBase.test/implementation.js +3 -3
- package/dist/module/src/lib/mocks.test.js +11 -5
- package/dist/module/src/run.js +15 -4
- package/dist/module/testeranto.config.js +12 -36
- package/dist/module/tsconfig.module.tsbuildinfo +1 -1
- package/dist/prebuild/App.js +1461 -8949
- package/dist/prebuild/run.mjs +25 -14
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/dist/types/src/Node.d.ts +2 -2
- package/dist/types/src/PM/__tests__/nodeSidecar.testeranto.d.ts +1 -15
- package/dist/types/src/PM/__tests__/pureSidecar.testeranto.d.ts +1 -15
- package/dist/types/src/PM/__tests__/webSidecar.testeranto.d.ts +1 -15
- package/dist/types/src/Pure.d.ts +2 -2
- package/dist/types/src/Pure.test.d.ts +1 -58
- package/dist/types/src/ReportServer.test.ts/index.d.ts +1 -28
- package/dist/types/src/Types.d.ts +3 -1
- package/dist/types/src/Web.d.ts +2 -2
- package/dist/types/src/components/pure/AppFrame.test/index.d.ts +1 -3
- package/dist/types/src/components/pure/FeaturesReporterView.test/index.d.ts +1 -1
- package/dist/types/src/components/pure/ModalContent.test/index.d.ts +1 -2
- package/dist/types/src/components/pure/ProjectPageView.test/index.d.ts +1 -1
- package/dist/types/src/components/pure/TestPageView.test/index.d.ts +1 -1
- package/dist/types/src/lib/BaseGiven.d.ts +44 -0
- package/dist/types/src/lib/BaseSuite.d.ts +12 -7
- package/dist/types/src/lib/BaseSuite.test/mock.d.ts +3 -1
- package/dist/types/src/lib/BaseSuite.test/node.test.d.ts +1 -2
- package/dist/types/src/lib/BaseSuite.test/pure.test.d.ts +1 -2
- package/dist/types/src/lib/BaseSuite.test/web.test.d.ts +1 -2
- package/dist/types/src/lib/BaseThen.d.ts +27 -0
- package/dist/types/src/lib/BaseWhen.d.ts +27 -0
- package/dist/types/src/lib/Tiposkripto.d.ts +35 -0
- package/dist/types/src/lib/{core.test/MockCore.d.ts → Tiposkripto.test/MockTiposkripto.d.ts} +3 -3
- package/dist/types/src/lib/{core.test/core.test.adapter.d.ts → Tiposkripto.test/Tiposkripto.adapter.d.ts} +1 -1
- package/dist/types/src/lib/Tiposkripto.test/Tiposkripto.d.ts +2 -0
- package/dist/types/src/lib/{core.test/core.test.implementation.d.ts → Tiposkripto.test/Tiposkripto.implementation.d.ts} +1 -1
- package/dist/types/src/lib/{core.test/core.test.specification.d.ts → Tiposkripto.test/Tiposkripto.specification.d.ts} +1 -1
- package/dist/types/src/lib/{classBuilder.test/classBuilder.test.types.d.ts → Tiposkripto.test/Tiposkripto.types.d.ts} +11 -9
- package/dist/types/src/lib/abstractBase.test/MockGiven.d.ts +3 -1
- package/dist/types/src/lib/abstractBase.test/MockThen.d.ts +1 -1
- package/dist/types/src/lib/abstractBase.test/MockWhen.d.ts +1 -1
- package/dist/types/src/lib/abstractBase.test/index.d.ts +1 -2
- package/dist/types/src/lib/abstractBase.test/types.d.ts +3 -3
- package/dist/types/src/lib/index.d.ts +1 -1
- package/dist/types/src/lib/mocks.test.d.ts +0 -2
- package/dist/types/src/lib/pmProxy.test/index.d.ts +1 -2
- package/dist/types/src/lib/types.d.ts +3 -1
- package/dist/types/src/mothership/test.d.ts +1 -18
- package/dist/types/tsconfig.types.tsbuildinfo +1 -1
- package/package.json +4 -4
- package/src/App.tsx +27 -5
- package/src/Node.ts +3 -2
- package/src/PM/main.ts +1 -1
- package/src/Pure.ts +3 -2
- package/src/Types.ts +5 -3
- package/src/Web.ts +2 -2
- package/src/components/DesignEditorPage.tsx +54 -21
- package/src/lib/BaseGiven.ts +193 -0
- package/src/lib/BaseSuite.test/mock.ts +9 -2
- package/src/lib/BaseSuite.ts +14 -1
- package/src/lib/BaseThen.ts +108 -0
- package/src/lib/BaseWhen.ts +91 -0
- package/src/lib/{core.test/MockCore.ts → Tiposkripto.test/MockTiposkripto.ts} +4 -7
- package/src/lib/{core.test/core.test.adapter.ts → Tiposkripto.test/Tiposkripto.adapter.ts} +12 -11
- package/src/lib/{classBuilder.test/classBuilder.test.implementation.ts → Tiposkripto.test/Tiposkripto.implementation.ts} +75 -78
- package/src/lib/Tiposkripto.test/Tiposkripto.specification.ts +109 -0
- package/src/lib/Tiposkripto.test/Tiposkripto.ts +15 -0
- package/src/lib/{classBuilder.test/classBuilder.test.types.ts → Tiposkripto.test/Tiposkripto.types.ts} +12 -9
- package/src/lib/Tiposkripto.ts +325 -0
- package/src/lib/abstractBase.test/MockGiven.ts +12 -2
- package/src/lib/abstractBase.test/MockThen.ts +7 -2
- package/src/lib/abstractBase.test/MockWhen.ts +10 -2
- package/src/lib/abstractBase.test/adapter.ts +20 -6
- package/src/lib/abstractBase.test/implementation.ts +6 -6
- package/src/lib/abstractBase.test/types.ts +3 -3
- package/src/lib/index.ts +9 -3
- package/src/lib/mocks.test.ts +10 -9
- package/src/lib/types.ts +3 -1
- package/src/run.ts +19 -4
- package/testeranto/App.js +1461 -8949
- package/testeranto/bundles/node/core/src/lib/BaseSuite.test/node.test.mjs +1121 -9
- package/testeranto/bundles/pure/core/src/lib/BaseSuite.test/pure.test.mjs +979 -8
- package/testeranto/bundles/{pure/core/chunk-62UVCSQC.mjs → web/core/src/lib/BaseSuite.test/web.test.mjs} +721 -431
- package/testeranto/metafiles/node/core.json +264 -2180
- package/testeranto/metafiles/pure/core.json +147 -288
- package/testeranto/metafiles/web/core.json +16949 -18
- package/testeranto/reports/core/config.json +8 -40
- package/testeranto/reports/core/src/Pure.test/pure/type_errors.txt +8 -13
- package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/error.log +66 -2
- package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/info.log +2 -0
- package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/prompt.txt +16 -0
- package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/tests.json +68 -0
- package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/type_errors.txt +56 -0
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/error.log +22 -3
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/info.log +2 -0
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/lint_errors.txt +13 -0
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/prompt.txt +16 -0
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/tests.json +88 -0
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/type_errors.txt +45 -0
- package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/error.log +0 -3
- package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/info.log +2 -0
- package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/lint_errors.txt +47 -0
- package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/prompt.txt +17 -0
- package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/tests.json +57 -0
- package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/type_errors.txt +99 -0
- package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/prompt.txt +1 -0
- package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/tests.json +7 -9
- package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/type_errors.txt +11 -16
- package/testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/type_errors.txt +11 -16
- package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/error.log +0 -2
- package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/prompt.txt +15 -0
- package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/tests.json +29 -0
- package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/type_errors.txt +56 -0
- package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/exit.log +1 -0
- package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/message.txt +17 -0
- package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/prompt.txt +17 -0
- package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/stderr.log +18 -0
- package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/type_errors.txt +32 -0
- package/testeranto/reports/core/src/lib/pmProxy.test/index/node/exit.log +1 -1
- package/testeranto/reports/core/src/lib/pmProxy.test/index/node/stderr.log +60 -82
- package/testeranto/reports/core/src/lib/pmProxy.test/index/node/type_errors.txt +8 -13
- package/testeranto/reports/core/summary.json +23 -36
- package/testeranto.config.ts +14 -41
- package/tsc.log +274 -455
- package/dist/common/src/lib/abstractBase.js +0 -196
- package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.adapter.js +0 -25
- package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.implementation.js +0 -113
- package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.mock.js +0 -46
- package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.node.js +0 -12
- package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.pure.js +0 -12
- package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.specification.js +0 -18
- package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.web.js +0 -12
- package/dist/common/src/lib/basebuilder.js +0 -88
- package/dist/common/src/lib/classBuilder.js +0 -36
- package/dist/common/src/lib/classBuilder.test/classBuilder.test.adapter.js +0 -23
- package/dist/common/src/lib/classBuilder.test/classBuilder.test.js +0 -12
- package/dist/common/src/lib/classBuilder.test/classBuilder.test.types.js +0 -2
- package/dist/common/src/lib/classBuilder.test/mock.js +0 -17
- package/dist/common/src/lib/core.js +0 -45
- package/dist/common/src/lib/core.test/core.test.implementation.js +0 -121
- package/dist/common/src/lib/core.test/core.test.js +0 -63
- package/dist/common/src/lib/core.test/core.test.specification.js +0 -53
- package/dist/common/src/lib/core.test/core.test.types.js +0 -2
- package/dist/module/src/lib/abstractBase.js +0 -190
- package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.adapter.js +0 -22
- package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.implementation.js +0 -110
- package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.mock.js +0 -42
- package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.node.js +0 -7
- package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.pure.js +0 -7
- package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.specification.js +0 -14
- package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.web.js +0 -7
- package/dist/module/src/lib/basebuilder.js +0 -84
- package/dist/module/src/lib/classBuilder.js +0 -32
- package/dist/module/src/lib/classBuilder.test/classBuilder.test.adapter.js +0 -20
- package/dist/module/src/lib/classBuilder.test/classBuilder.test.js +0 -7
- package/dist/module/src/lib/classBuilder.test/classBuilder.test.types.js +0 -1
- package/dist/module/src/lib/classBuilder.test/mock.js +0 -14
- package/dist/module/src/lib/core.js +0 -42
- package/dist/module/src/lib/core.test/core.test.implementation.js +0 -118
- package/dist/module/src/lib/core.test/core.test.js +0 -58
- package/dist/module/src/lib/core.test/core.test.specification.js +0 -49
- package/dist/module/src/lib/core.test/core.test.types.js +0 -1
- package/dist/types/src/lib/abstractBase.d.ts +0 -70
- package/dist/types/src/lib/baseBuilder.test/baseBuilder.test.adapter.d.ts +0 -3
- package/dist/types/src/lib/baseBuilder.test/baseBuilder.test.implementation.d.ts +0 -3
- package/dist/types/src/lib/baseBuilder.test/baseBuilder.test.mock.d.ts +0 -15
- package/dist/types/src/lib/baseBuilder.test/baseBuilder.test.node.d.ts +0 -3
- package/dist/types/src/lib/baseBuilder.test/baseBuilder.test.pure.d.ts +0 -3
- package/dist/types/src/lib/baseBuilder.test/baseBuilder.test.specification.d.ts +0 -3
- package/dist/types/src/lib/baseBuilder.test/baseBuilder.test.types.d.ts +0 -22
- package/dist/types/src/lib/baseBuilder.test/baseBuilder.test.web.d.ts +0 -3
- package/dist/types/src/lib/basebuilder.d.ts +0 -23
- package/dist/types/src/lib/classBuilder.d.ts +0 -15
- package/dist/types/src/lib/classBuilder.test/classBuilder.test.adapter.d.ts +0 -3
- package/dist/types/src/lib/classBuilder.test/classBuilder.test.d.ts +0 -3
- package/dist/types/src/lib/classBuilder.test/classBuilder.test.implementation.d.ts +0 -3
- package/dist/types/src/lib/classBuilder.test/classBuilder.test.specification.d.ts +0 -3
- package/dist/types/src/lib/classBuilder.test/mock.d.ts +0 -14
- package/dist/types/src/lib/core.d.ts +0 -12
- package/dist/types/src/lib/core.test/core.test.d.ts +0 -3
- package/dist/types/src/lib/core.test/core.test.types.d.ts +0 -46
- package/src/lib/abstractBase.ts +0 -351
- package/src/lib/baseBuilder.test/baseBuilder.test.adapter.ts +0 -29
- package/src/lib/baseBuilder.test/baseBuilder.test.implementation.ts +0 -139
- package/src/lib/baseBuilder.test/baseBuilder.test.mock.ts +0 -90
- package/src/lib/baseBuilder.test/baseBuilder.test.node.ts +0 -16
- package/src/lib/baseBuilder.test/baseBuilder.test.pure.ts +0 -16
- package/src/lib/baseBuilder.test/baseBuilder.test.specification.ts +0 -35
- package/src/lib/baseBuilder.test/baseBuilder.test.types.ts +0 -36
- package/src/lib/baseBuilder.test/baseBuilder.test.web.ts +0 -16
- package/src/lib/basebuilder.ts +0 -187
- package/src/lib/classBuilder.test/classBuilder.test.adapter.ts +0 -25
- package/src/lib/classBuilder.test/classBuilder.test.specification.ts +0 -104
- package/src/lib/classBuilder.test/classBuilder.test.ts +0 -14
- package/src/lib/classBuilder.test/mock.ts +0 -83
- package/src/lib/classBuilder.ts +0 -120
- package/src/lib/core.test/core.test.implementation.ts +0 -155
- package/src/lib/core.test/core.test.specification.ts +0 -113
- package/src/lib/core.test/core.test.ts +0 -72
- package/src/lib/core.test/core.test.types.ts +0 -68
- package/src/lib/core.ts +0 -125
- package/testeranto/bundles/node/core/chunk-4CSH4UJE.mjs +0 -872
- package/testeranto/bundles/node/core/chunk-4JTDLQVA.mjs +0 -253
- package/testeranto/bundles/node/core/chunk-C3APFDUV.mjs +0 -70
- package/testeranto/bundles/node/core/src/lib/baseBuilder.test/baseBuilder.test.node.mjs +0 -243
- package/testeranto/bundles/node/core/src/lib/classBuilder.test/classBuilder.test.mjs +0 -411
- package/testeranto/bundles/node/core/src/lib/core.test/core.test.mjs +0 -494
- package/testeranto/bundles/node/core/src/lib/pmProxy.test/index.mjs +0 -4755
- package/testeranto/bundles/pure/core/src/Pure.test.mjs +0 -410
- package/testeranto/bundles/pure/core/src/lib/baseBuilder.test/baseBuilder.test.pure.mjs +0 -241
- package/testeranto/bundles/web/core/src/components/pure/FeaturesReporterView.test/index.html +0 -15
- package/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.html +0 -15
- package/testeranto/bundles/web/core/src/components/pure/TestPageView.test/index.html +0 -15
- package/testeranto/bundles/web/core/src/lib/baseBuilder.test/baseBuilder.test.web.html +0 -15
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/exit.log +0 -1
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/lint_errors.txt +0 -10
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/prompt.txt +0 -17
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/stdout.log +0 -6
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/suite-0/given-testInitialization/then-0/butThen/hello.txt +0 -1
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/suite-0/given-testInitialization/then-1/butThen/artifact_test.txt +0 -1
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/tests.json +0 -71
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/type_errors.txt +0 -42
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/lint_errors.txt +0 -10
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/prompt.txt +0 -17
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/type_errors.txt +0 -42
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/debug.log +0 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/error.log +0 -3
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/exit.log +0 -1
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/info.log +0 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/warn.log +0 -0
- package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/exit.log +0 -1
- package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/prompt.txt +0 -17
- package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/stderr.log +0 -0
- package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/stdout.log +0 -619
- package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/tests.json +0 -165
- package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/type_errors.txt +0 -88
- package/testeranto/reports/core/src/lib/core.test/core.test/node/exit.log +0 -1
- package/testeranto/reports/core/src/lib/core.test/core.test/node/lint_errors.txt +0 -21
- package/testeranto/reports/core/src/lib/core.test/core.test/node/prompt.txt +0 -19
- package/testeranto/reports/core/src/lib/core.test/core.test/node/stderr.log +0 -0
- package/testeranto/reports/core/src/lib/core.test/core.test/node/type_errors.txt +0 -45
- package/testeranto/reports/core/src/lib/pmProxy.test/index/node/tests.json +0 -152
- package/testeranto/reportsweb_build_errors +0 -546
- /package/dist/common/src/lib/{baseBuilder.test/baseBuilder.test.types.js → Tiposkripto.test/Tiposkripto.types.js} +0 -0
- /package/dist/module/src/lib/{baseBuilder.test/baseBuilder.test.types.js → Tiposkripto.test/Tiposkripto.types.js} +0 -0
- /package/testeranto/reports/core/src/{lib/classBuilder.test/classBuilder.test/node → components/pure/FeaturesReporterView.test/index/web}/lint_errors.txt +0 -0
- /package/testeranto/reports/core/src/{lib/baseBuilder.test/baseBuilder.test.node/node → components/pure/FeaturesReporterView.test/index/web}/message.txt +0 -0
- /package/testeranto/reports/core/src/{lib/baseBuilder.test/baseBuilder.test.pure/pure → components/pure/ProjectPageView.test/index/web}/message.txt +0 -0
- /package/testeranto/reports/core/src/{lib/classBuilder.test/classBuilder.test/node → components/pure/TestPageView.test/index/web}/message.txt +0 -0
- /package/testeranto/reports/core/src/lib/{baseBuilder.test/baseBuilder.test.node/node/stderr.log → BaseSuite.test/web.test/web/lint_errors.txt} +0 -0
- /package/testeranto/reports/core/src/lib/{core.test/core.test/node → BaseSuite.test/web.test/web}/message.txt +0 -0
- /package/testeranto/reports/core/src/lib/{baseBuilder.test/baseBuilder.test.pure/pure/exit.log → TipoSkripto.test/TipoSkripto/node/lint_errors.txt} +0 -0
- /package/testeranto/reports/core/src/lib/{core.test/core.test → TipoSkripto.test/TipoSkripto}/node/stdout.log +0 -0
|
@@ -19,11 +19,11 @@
|
|
|
19
19
|
{
|
|
20
20
|
"id": "",
|
|
21
21
|
"location": {
|
|
22
|
-
"column":
|
|
23
|
-
"file": "src/
|
|
24
|
-
"length":
|
|
25
|
-
"line":
|
|
26
|
-
"lineText": "import
|
|
22
|
+
"column": 24,
|
|
23
|
+
"file": "src/Pure.ts",
|
|
24
|
+
"length": 22,
|
|
25
|
+
"line": 14,
|
|
26
|
+
"lineText": "import Tiposkripto from \"./lib/Tiposkripto.js\";",
|
|
27
27
|
"namespace": "",
|
|
28
28
|
"suggestion": ""
|
|
29
29
|
},
|
|
@@ -35,25 +35,25 @@
|
|
|
35
35
|
"id": "",
|
|
36
36
|
"location": {
|
|
37
37
|
"column": 26,
|
|
38
|
-
"file": "src/lib/BaseSuite.test/
|
|
38
|
+
"file": "src/lib/BaseSuite.test/mock.ts",
|
|
39
39
|
"length": 14,
|
|
40
40
|
"line": 4,
|
|
41
|
-
"lineText": "import {
|
|
41
|
+
"lineText": "import { BaseGiven } from \"../BaseGiven\";",
|
|
42
42
|
"namespace": "",
|
|
43
43
|
"suggestion": ""
|
|
44
44
|
},
|
|
45
45
|
"notes": [],
|
|
46
46
|
"pluginName": "console-detector",
|
|
47
|
-
"text": "call of \"console.
|
|
47
|
+
"text": "call of \"console.error\" was detected, which is not supported in the pure runtime."
|
|
48
48
|
},
|
|
49
49
|
{
|
|
50
50
|
"id": "",
|
|
51
51
|
"location": {
|
|
52
|
-
"column":
|
|
53
|
-
"file": "src/lib/BaseSuite.test/
|
|
54
|
-
"length":
|
|
52
|
+
"column": 25,
|
|
53
|
+
"file": "src/lib/BaseSuite.test/mock.ts",
|
|
54
|
+
"length": 13,
|
|
55
55
|
"line": 6,
|
|
56
|
-
"lineText": "import {
|
|
56
|
+
"lineText": "import { BaseThen } from \"../BaseThen\";",
|
|
57
57
|
"namespace": "",
|
|
58
58
|
"suggestion": ""
|
|
59
59
|
},
|
|
@@ -64,26 +64,26 @@
|
|
|
64
64
|
{
|
|
65
65
|
"id": "",
|
|
66
66
|
"location": {
|
|
67
|
-
"column":
|
|
68
|
-
"file": "src/lib/BaseSuite.test/
|
|
69
|
-
"length":
|
|
70
|
-
"line":
|
|
71
|
-
"lineText": "import {
|
|
67
|
+
"column": 25,
|
|
68
|
+
"file": "src/lib/BaseSuite.test/mock.ts",
|
|
69
|
+
"length": 13,
|
|
70
|
+
"line": 6,
|
|
71
|
+
"lineText": "import { BaseThen } from \"../BaseThen\";",
|
|
72
72
|
"namespace": "",
|
|
73
73
|
"suggestion": ""
|
|
74
74
|
},
|
|
75
75
|
"notes": [],
|
|
76
76
|
"pluginName": "console-detector",
|
|
77
|
-
"text": "call of \"console.
|
|
77
|
+
"text": "call of \"console.log\" was detected, which is not supported in the pure runtime."
|
|
78
78
|
},
|
|
79
79
|
{
|
|
80
80
|
"id": "",
|
|
81
81
|
"location": {
|
|
82
|
-
"column":
|
|
83
|
-
"file": "src/lib/BaseSuite.ts",
|
|
84
|
-
"length":
|
|
85
|
-
"line":
|
|
86
|
-
"lineText": "import {
|
|
82
|
+
"column": 25,
|
|
83
|
+
"file": "src/lib/BaseSuite.test/mock.ts",
|
|
84
|
+
"length": 13,
|
|
85
|
+
"line": 7,
|
|
86
|
+
"lineText": "import { BaseWhen } from \"../BaseWhen\";",
|
|
87
87
|
"namespace": "",
|
|
88
88
|
"suggestion": ""
|
|
89
89
|
},
|
|
@@ -94,11 +94,11 @@
|
|
|
94
94
|
{
|
|
95
95
|
"id": "",
|
|
96
96
|
"location": {
|
|
97
|
-
"column":
|
|
98
|
-
"file": "src/lib/BaseSuite.ts",
|
|
99
|
-
"length":
|
|
100
|
-
"line":
|
|
101
|
-
"lineText": "import {
|
|
97
|
+
"column": 25,
|
|
98
|
+
"file": "src/lib/BaseSuite.test/mock.ts",
|
|
99
|
+
"length": 13,
|
|
100
|
+
"line": 7,
|
|
101
|
+
"lineText": "import { BaseWhen } from \"../BaseWhen\";",
|
|
102
102
|
"namespace": "",
|
|
103
103
|
"suggestion": ""
|
|
104
104
|
},
|
|
@@ -109,11 +109,11 @@
|
|
|
109
109
|
{
|
|
110
110
|
"id": "",
|
|
111
111
|
"location": {
|
|
112
|
-
"column":
|
|
113
|
-
"file": "src/lib/
|
|
114
|
-
"length":
|
|
115
|
-
"line":
|
|
116
|
-
"lineText": "import
|
|
112
|
+
"column": 23,
|
|
113
|
+
"file": "src/lib/BaseSuite.test/pure.test.ts",
|
|
114
|
+
"length": 12,
|
|
115
|
+
"line": 2,
|
|
116
|
+
"lineText": "import Testeranto from \"../../Pure\";",
|
|
117
117
|
"namespace": "",
|
|
118
118
|
"suggestion": ""
|
|
119
119
|
},
|
|
@@ -124,11 +124,11 @@
|
|
|
124
124
|
{
|
|
125
125
|
"id": "",
|
|
126
126
|
"location": {
|
|
127
|
-
"column":
|
|
128
|
-
"file": "src/lib/
|
|
129
|
-
"length":
|
|
130
|
-
"line":
|
|
131
|
-
"lineText": "import
|
|
127
|
+
"column": 26,
|
|
128
|
+
"file": "src/lib/BaseSuite.test/pure.test.ts",
|
|
129
|
+
"length": 14,
|
|
130
|
+
"line": 4,
|
|
131
|
+
"lineText": "import { BaseSuite } from \"../BaseSuite\";",
|
|
132
132
|
"namespace": "",
|
|
133
133
|
"suggestion": ""
|
|
134
134
|
},
|
|
@@ -139,11 +139,26 @@
|
|
|
139
139
|
{
|
|
140
140
|
"id": "",
|
|
141
141
|
"location": {
|
|
142
|
-
"column":
|
|
143
|
-
"file": "src/lib/
|
|
144
|
-
"length":
|
|
145
|
-
"line":
|
|
146
|
-
"lineText": "import {
|
|
142
|
+
"column": 26,
|
|
143
|
+
"file": "src/lib/BaseSuite.test/pure.test.ts",
|
|
144
|
+
"length": 14,
|
|
145
|
+
"line": 4,
|
|
146
|
+
"lineText": "import { BaseSuite } from \"../BaseSuite\";",
|
|
147
|
+
"namespace": "",
|
|
148
|
+
"suggestion": ""
|
|
149
|
+
},
|
|
150
|
+
"notes": [],
|
|
151
|
+
"pluginName": "console-detector",
|
|
152
|
+
"text": "call of \"console.log\" was detected, which is not supported in the pure runtime."
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
"id": "",
|
|
156
|
+
"location": {
|
|
157
|
+
"column": 65,
|
|
158
|
+
"file": "src/lib/BaseSuite.test/pure.test.ts",
|
|
159
|
+
"length": 8,
|
|
160
|
+
"line": 6,
|
|
161
|
+
"lineText": "import { I, implementation, O, specification, testAdapter } from \"./test\";",
|
|
147
162
|
"namespace": "",
|
|
148
163
|
"suggestion": ""
|
|
149
164
|
},
|
|
@@ -154,11 +169,11 @@
|
|
|
154
169
|
{
|
|
155
170
|
"id": "",
|
|
156
171
|
"location": {
|
|
157
|
-
"column":
|
|
158
|
-
"file": "src/lib/
|
|
159
|
-
"length":
|
|
160
|
-
"line":
|
|
161
|
-
"lineText": "import {
|
|
172
|
+
"column": 26,
|
|
173
|
+
"file": "src/lib/BaseSuite.test/test.ts",
|
|
174
|
+
"length": 8,
|
|
175
|
+
"line": 14,
|
|
176
|
+
"lineText": "import { MockSuite } from \"./mock\";",
|
|
162
177
|
"namespace": "",
|
|
163
178
|
"suggestion": ""
|
|
164
179
|
},
|
|
@@ -170,10 +185,10 @@
|
|
|
170
185
|
"id": "",
|
|
171
186
|
"location": {
|
|
172
187
|
"column": 46,
|
|
173
|
-
"file": "src/lib/
|
|
174
|
-
"length":
|
|
175
|
-
"line":
|
|
176
|
-
"lineText": "import {
|
|
188
|
+
"file": "src/lib/BaseSuite.ts",
|
|
189
|
+
"length": 11,
|
|
190
|
+
"line": 8,
|
|
191
|
+
"lineText": "import { beforeAllProxy, afterAllProxy } from \"./pmProxy\";",
|
|
177
192
|
"namespace": "",
|
|
178
193
|
"suggestion": ""
|
|
179
194
|
},
|
|
@@ -185,10 +200,10 @@
|
|
|
185
200
|
"id": "",
|
|
186
201
|
"location": {
|
|
187
202
|
"column": 46,
|
|
188
|
-
"file": "src/lib/
|
|
189
|
-
"length":
|
|
190
|
-
"line":
|
|
191
|
-
"lineText": "import {
|
|
203
|
+
"file": "src/lib/BaseSuite.ts",
|
|
204
|
+
"length": 11,
|
|
205
|
+
"line": 8,
|
|
206
|
+
"lineText": "import { beforeAllProxy, afterAllProxy } from \"./pmProxy\";",
|
|
192
207
|
"namespace": "",
|
|
193
208
|
"suggestion": ""
|
|
194
209
|
},
|
|
@@ -200,7 +215,7 @@
|
|
|
200
215
|
"metafile": {
|
|
201
216
|
"inputs": {
|
|
202
217
|
"src/lib/index.ts": {
|
|
203
|
-
"bytes":
|
|
218
|
+
"bytes": 3757,
|
|
204
219
|
"imports": [
|
|
205
220
|
{
|
|
206
221
|
"path": "../CoreTypes",
|
|
@@ -228,7 +243,7 @@
|
|
|
228
243
|
"external": true
|
|
229
244
|
},
|
|
230
245
|
{
|
|
231
|
-
"path": "./
|
|
246
|
+
"path": "./BaseGiven",
|
|
232
247
|
"kind": "import-statement",
|
|
233
248
|
"external": true
|
|
234
249
|
},
|
|
@@ -256,8 +271,8 @@
|
|
|
256
271
|
],
|
|
257
272
|
"format": "esm"
|
|
258
273
|
},
|
|
259
|
-
"src/lib/
|
|
260
|
-
"bytes":
|
|
274
|
+
"src/lib/BaseGiven.ts": {
|
|
275
|
+
"bytes": 5117,
|
|
261
276
|
"imports": [
|
|
262
277
|
{
|
|
263
278
|
"path": ".",
|
|
@@ -273,18 +288,18 @@
|
|
|
273
288
|
"path": "src/lib/pmProxy.ts",
|
|
274
289
|
"kind": "import-statement",
|
|
275
290
|
"original": "./pmProxy.js"
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
"path": "./BaseSuite",
|
|
294
|
+
"kind": "import-statement",
|
|
295
|
+
"external": true
|
|
276
296
|
}
|
|
277
297
|
],
|
|
278
298
|
"format": "esm"
|
|
279
299
|
},
|
|
280
|
-
"src/lib/
|
|
281
|
-
"bytes":
|
|
300
|
+
"src/lib/BaseWhen.ts": {
|
|
301
|
+
"bytes": 2535,
|
|
282
302
|
"imports": [
|
|
283
|
-
{
|
|
284
|
-
"path": "stream",
|
|
285
|
-
"kind": "import-statement",
|
|
286
|
-
"external": true
|
|
287
|
-
},
|
|
288
303
|
{
|
|
289
304
|
"path": ".",
|
|
290
305
|
"kind": "import-statement",
|
|
@@ -296,46 +311,36 @@
|
|
|
296
311
|
"external": true
|
|
297
312
|
},
|
|
298
313
|
{
|
|
299
|
-
"path": "
|
|
300
|
-
"kind": "import-statement",
|
|
301
|
-
"external": true
|
|
302
|
-
},
|
|
303
|
-
{
|
|
304
|
-
"path": "./BaseSuite",
|
|
314
|
+
"path": "src/lib/pmProxy.ts",
|
|
305
315
|
"kind": "import-statement",
|
|
306
|
-
"
|
|
316
|
+
"original": "./pmProxy.js"
|
|
307
317
|
}
|
|
308
318
|
],
|
|
309
319
|
"format": "esm"
|
|
310
320
|
},
|
|
311
|
-
"src/lib/
|
|
312
|
-
"bytes":
|
|
321
|
+
"src/lib/BaseThen.ts": {
|
|
322
|
+
"bytes": 3339,
|
|
313
323
|
"imports": [
|
|
314
324
|
{
|
|
315
|
-
"path": "
|
|
325
|
+
"path": ".",
|
|
316
326
|
"kind": "import-statement",
|
|
317
327
|
"external": true
|
|
318
328
|
},
|
|
319
|
-
{
|
|
320
|
-
"path": "src/lib/basebuilder.ts",
|
|
321
|
-
"kind": "import-statement",
|
|
322
|
-
"original": "./basebuilder.js"
|
|
323
|
-
},
|
|
324
329
|
{
|
|
325
330
|
"path": "./types.js",
|
|
326
331
|
"kind": "import-statement",
|
|
327
332
|
"external": true
|
|
328
333
|
},
|
|
329
334
|
{
|
|
330
|
-
"path": "
|
|
335
|
+
"path": "src/lib/pmProxy.ts",
|
|
331
336
|
"kind": "import-statement",
|
|
332
|
-
"
|
|
337
|
+
"original": "./pmProxy.js"
|
|
333
338
|
}
|
|
334
339
|
],
|
|
335
340
|
"format": "esm"
|
|
336
341
|
},
|
|
337
342
|
"src/lib/BaseSuite.ts": {
|
|
338
|
-
"bytes":
|
|
343
|
+
"bytes": 4530,
|
|
339
344
|
"imports": [
|
|
340
345
|
{
|
|
341
346
|
"path": ".",
|
|
@@ -348,7 +353,7 @@
|
|
|
348
353
|
"external": true
|
|
349
354
|
},
|
|
350
355
|
{
|
|
351
|
-
"path": "./
|
|
356
|
+
"path": "./BaseGiven",
|
|
352
357
|
"kind": "import-statement",
|
|
353
358
|
"external": true
|
|
354
359
|
},
|
|
@@ -365,33 +370,48 @@
|
|
|
365
370
|
],
|
|
366
371
|
"format": "esm"
|
|
367
372
|
},
|
|
368
|
-
"src/lib/
|
|
369
|
-
"bytes":
|
|
373
|
+
"src/lib/Tiposkripto.ts": {
|
|
374
|
+
"bytes": 8977,
|
|
370
375
|
"imports": [
|
|
376
|
+
{
|
|
377
|
+
"path": "stream",
|
|
378
|
+
"kind": "import-statement",
|
|
379
|
+
"external": true
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
"path": "type-fest",
|
|
383
|
+
"kind": "import-statement",
|
|
384
|
+
"external": true
|
|
385
|
+
},
|
|
371
386
|
{
|
|
372
387
|
"path": "src/lib/index.ts",
|
|
373
388
|
"kind": "import-statement",
|
|
374
389
|
"original": "./index.js"
|
|
375
390
|
},
|
|
376
391
|
{
|
|
377
|
-
"path": "src/lib/
|
|
392
|
+
"path": "src/lib/BaseGiven.ts",
|
|
378
393
|
"kind": "import-statement",
|
|
379
|
-
"original": "./
|
|
394
|
+
"original": "./BaseGiven"
|
|
380
395
|
},
|
|
381
396
|
{
|
|
382
|
-
"path": "src/lib/
|
|
397
|
+
"path": "src/lib/BaseWhen.ts",
|
|
383
398
|
"kind": "import-statement",
|
|
384
|
-
"original": "./
|
|
399
|
+
"original": "./BaseWhen.js"
|
|
385
400
|
},
|
|
386
401
|
{
|
|
387
|
-
"path": "
|
|
402
|
+
"path": "src/lib/BaseThen.ts",
|
|
403
|
+
"kind": "import-statement",
|
|
404
|
+
"original": "./BaseThen.js"
|
|
405
|
+
},
|
|
406
|
+
{
|
|
407
|
+
"path": "./types.js",
|
|
388
408
|
"kind": "import-statement",
|
|
389
409
|
"external": true
|
|
390
410
|
},
|
|
391
411
|
{
|
|
392
412
|
"path": "src/lib/BaseSuite.ts",
|
|
393
413
|
"kind": "import-statement",
|
|
394
|
-
"original": "./BaseSuite
|
|
414
|
+
"original": "./BaseSuite"
|
|
395
415
|
}
|
|
396
416
|
],
|
|
397
417
|
"format": "esm"
|
|
@@ -444,7 +464,7 @@
|
|
|
444
464
|
"format": "esm"
|
|
445
465
|
},
|
|
446
466
|
"src/Pure.ts": {
|
|
447
|
-
"bytes":
|
|
467
|
+
"bytes": 2335,
|
|
448
468
|
"imports": [
|
|
449
469
|
{
|
|
450
470
|
"path": "./CoreTypes.js",
|
|
@@ -452,14 +472,14 @@
|
|
|
452
472
|
"external": true
|
|
453
473
|
},
|
|
454
474
|
{
|
|
455
|
-
"path": "src/lib/
|
|
475
|
+
"path": "src/lib/index.ts",
|
|
456
476
|
"kind": "import-statement",
|
|
457
|
-
"original": "./lib/
|
|
477
|
+
"original": "./lib/index.js"
|
|
458
478
|
},
|
|
459
479
|
{
|
|
460
|
-
"path": "src/lib/
|
|
480
|
+
"path": "src/lib/Tiposkripto.ts",
|
|
461
481
|
"kind": "import-statement",
|
|
462
|
-
"original": "./lib/
|
|
482
|
+
"original": "./lib/Tiposkripto.js"
|
|
463
483
|
},
|
|
464
484
|
{
|
|
465
485
|
"path": "src/PM/pure.ts",
|
|
@@ -470,18 +490,28 @@
|
|
|
470
490
|
"format": "esm"
|
|
471
491
|
},
|
|
472
492
|
"src/lib/BaseSuite.test/mock.ts": {
|
|
473
|
-
"bytes":
|
|
493
|
+
"bytes": 2409,
|
|
474
494
|
"imports": [
|
|
475
495
|
{
|
|
476
|
-
"path": "src/lib/
|
|
496
|
+
"path": "src/lib/BaseGiven.ts",
|
|
477
497
|
"kind": "import-statement",
|
|
478
|
-
"original": "../
|
|
498
|
+
"original": "../BaseGiven"
|
|
479
499
|
},
|
|
480
500
|
{
|
|
481
501
|
"path": "src/lib/BaseSuite.ts",
|
|
482
502
|
"kind": "import-statement",
|
|
483
503
|
"original": "../BaseSuite"
|
|
484
504
|
},
|
|
505
|
+
{
|
|
506
|
+
"path": "src/lib/BaseThen.ts",
|
|
507
|
+
"kind": "import-statement",
|
|
508
|
+
"original": "../BaseThen"
|
|
509
|
+
},
|
|
510
|
+
{
|
|
511
|
+
"path": "src/lib/BaseWhen.ts",
|
|
512
|
+
"kind": "import-statement",
|
|
513
|
+
"original": "../BaseWhen"
|
|
514
|
+
},
|
|
485
515
|
{
|
|
486
516
|
"path": "../types",
|
|
487
517
|
"kind": "import-statement",
|
|
@@ -593,153 +623,13 @@
|
|
|
593
623
|
}
|
|
594
624
|
],
|
|
595
625
|
"format": "esm"
|
|
596
|
-
},
|
|
597
|
-
"src/lib/baseBuilder.test/baseBuilder.test.specification.ts": {
|
|
598
|
-
"bytes": 985,
|
|
599
|
-
"imports": [
|
|
600
|
-
{
|
|
601
|
-
"path": "../../CoreTypes",
|
|
602
|
-
"kind": "import-statement",
|
|
603
|
-
"external": true
|
|
604
|
-
},
|
|
605
|
-
{
|
|
606
|
-
"path": "./baseBuilder.test.types",
|
|
607
|
-
"kind": "import-statement",
|
|
608
|
-
"external": true
|
|
609
|
-
}
|
|
610
|
-
],
|
|
611
|
-
"format": "esm"
|
|
612
|
-
},
|
|
613
|
-
"src/lib/baseBuilder.test/baseBuilder.test.mock.ts": {
|
|
614
|
-
"bytes": 2215,
|
|
615
|
-
"imports": [
|
|
616
|
-
{
|
|
617
|
-
"path": "../../CoreTypes",
|
|
618
|
-
"kind": "import-statement",
|
|
619
|
-
"external": true
|
|
620
|
-
},
|
|
621
|
-
{
|
|
622
|
-
"path": "src/lib/basebuilder.ts",
|
|
623
|
-
"kind": "import-statement",
|
|
624
|
-
"original": "../basebuilder"
|
|
625
|
-
},
|
|
626
|
-
{
|
|
627
|
-
"path": "../types",
|
|
628
|
-
"kind": "import-statement",
|
|
629
|
-
"external": true
|
|
630
|
-
},
|
|
631
|
-
{
|
|
632
|
-
"path": "..",
|
|
633
|
-
"kind": "import-statement",
|
|
634
|
-
"external": true
|
|
635
|
-
}
|
|
636
|
-
],
|
|
637
|
-
"format": "esm"
|
|
638
|
-
},
|
|
639
|
-
"src/lib/baseBuilder.test/baseBuilder.test.implementation.ts": {
|
|
640
|
-
"bytes": 4281,
|
|
641
|
-
"imports": [
|
|
642
|
-
{
|
|
643
|
-
"path": "../../CoreTypes",
|
|
644
|
-
"kind": "import-statement",
|
|
645
|
-
"external": true
|
|
646
|
-
},
|
|
647
|
-
{
|
|
648
|
-
"path": "src/lib/baseBuilder.test/baseBuilder.test.mock.ts",
|
|
649
|
-
"kind": "import-statement",
|
|
650
|
-
"original": "./baseBuilder.test.mock"
|
|
651
|
-
},
|
|
652
|
-
{
|
|
653
|
-
"path": "./baseBuilder.test.types",
|
|
654
|
-
"kind": "import-statement",
|
|
655
|
-
"external": true
|
|
656
|
-
},
|
|
657
|
-
{
|
|
658
|
-
"path": "..",
|
|
659
|
-
"kind": "import-statement",
|
|
660
|
-
"external": true
|
|
661
|
-
},
|
|
662
|
-
{
|
|
663
|
-
"path": "src/lib/basebuilder.ts",
|
|
664
|
-
"kind": "import-statement",
|
|
665
|
-
"original": "../basebuilder"
|
|
666
|
-
},
|
|
667
|
-
{
|
|
668
|
-
"path": "../types",
|
|
669
|
-
"kind": "import-statement",
|
|
670
|
-
"external": true
|
|
671
|
-
}
|
|
672
|
-
],
|
|
673
|
-
"format": "esm"
|
|
674
|
-
},
|
|
675
|
-
"src/lib/baseBuilder.test/baseBuilder.test.adapter.ts": {
|
|
676
|
-
"bytes": 917,
|
|
677
|
-
"imports": [
|
|
678
|
-
{
|
|
679
|
-
"path": "../../CoreTypes",
|
|
680
|
-
"kind": "import-statement",
|
|
681
|
-
"external": true
|
|
682
|
-
},
|
|
683
|
-
{
|
|
684
|
-
"path": "./baseBuilder.test.types",
|
|
685
|
-
"kind": "import-statement",
|
|
686
|
-
"external": true
|
|
687
|
-
},
|
|
688
|
-
{
|
|
689
|
-
"path": "..",
|
|
690
|
-
"kind": "import-statement",
|
|
691
|
-
"external": true
|
|
692
|
-
},
|
|
693
|
-
{
|
|
694
|
-
"path": "../types",
|
|
695
|
-
"kind": "import-statement",
|
|
696
|
-
"external": true
|
|
697
|
-
}
|
|
698
|
-
],
|
|
699
|
-
"format": "esm"
|
|
700
|
-
},
|
|
701
|
-
"src/lib/baseBuilder.test/baseBuilder.test.pure.ts": {
|
|
702
|
-
"bytes": 519,
|
|
703
|
-
"imports": [
|
|
704
|
-
{
|
|
705
|
-
"path": "src/Pure.ts",
|
|
706
|
-
"kind": "import-statement",
|
|
707
|
-
"original": "../../Pure"
|
|
708
|
-
},
|
|
709
|
-
{
|
|
710
|
-
"path": "src/lib/baseBuilder.test/baseBuilder.test.specification.ts",
|
|
711
|
-
"kind": "import-statement",
|
|
712
|
-
"original": "./baseBuilder.test.specification"
|
|
713
|
-
},
|
|
714
|
-
{
|
|
715
|
-
"path": "src/lib/baseBuilder.test/baseBuilder.test.implementation.ts",
|
|
716
|
-
"kind": "import-statement",
|
|
717
|
-
"original": "./baseBuilder.test.implementation"
|
|
718
|
-
},
|
|
719
|
-
{
|
|
720
|
-
"path": "src/lib/baseBuilder.test/baseBuilder.test.adapter.ts",
|
|
721
|
-
"kind": "import-statement",
|
|
722
|
-
"original": "./baseBuilder.test.adapter"
|
|
723
|
-
},
|
|
724
|
-
{
|
|
725
|
-
"path": "./baseBuilder.test.types",
|
|
726
|
-
"kind": "import-statement",
|
|
727
|
-
"external": true
|
|
728
|
-
},
|
|
729
|
-
{
|
|
730
|
-
"path": "src/lib/baseBuilder.test/baseBuilder.test.mock.ts",
|
|
731
|
-
"kind": "import-statement",
|
|
732
|
-
"original": "./baseBuilder.test.mock"
|
|
733
|
-
}
|
|
734
|
-
],
|
|
735
|
-
"format": "esm"
|
|
736
626
|
}
|
|
737
627
|
},
|
|
738
628
|
"outputs": {
|
|
739
629
|
"testeranto/bundles/pure/core/src/lib/BaseSuite.test/pure.test.mjs": {
|
|
740
630
|
"imports": [
|
|
741
631
|
{
|
|
742
|
-
"path": "testeranto/bundles/pure/core/chunk-
|
|
632
|
+
"path": "testeranto/bundles/pure/core/chunk-6OAL6SL4.mjs",
|
|
743
633
|
"kind": "import-statement"
|
|
744
634
|
}
|
|
745
635
|
],
|
|
@@ -749,7 +639,7 @@
|
|
|
749
639
|
"entryPoint": "src/lib/BaseSuite.test/pure.test.ts",
|
|
750
640
|
"inputs": {
|
|
751
641
|
"src/lib/BaseSuite.test/mock.ts": {
|
|
752
|
-
"bytesInOutput":
|
|
642
|
+
"bytesInOutput": 1480
|
|
753
643
|
},
|
|
754
644
|
"src/lib/BaseSuite.test/test.ts": {
|
|
755
645
|
"bytesInOutput": 7643
|
|
@@ -758,12 +648,12 @@
|
|
|
758
648
|
"bytesInOutput": 103
|
|
759
649
|
}
|
|
760
650
|
},
|
|
761
|
-
"bytes":
|
|
651
|
+
"bytes": 9578
|
|
762
652
|
},
|
|
763
653
|
"testeranto/bundles/pure/core/src/Pure.test.mjs": {
|
|
764
654
|
"imports": [
|
|
765
655
|
{
|
|
766
|
-
"path": "testeranto/bundles/pure/core/chunk-
|
|
656
|
+
"path": "testeranto/bundles/pure/core/chunk-6OAL6SL4.mjs",
|
|
767
657
|
"kind": "import-statement"
|
|
768
658
|
}
|
|
769
659
|
],
|
|
@@ -781,40 +671,9 @@
|
|
|
781
671
|
},
|
|
782
672
|
"bytes": 11473
|
|
783
673
|
},
|
|
784
|
-
"testeranto/bundles/pure/core/
|
|
785
|
-
"imports": [
|
|
786
|
-
{
|
|
787
|
-
"path": "testeranto/bundles/pure/core/chunk-62UVCSQC.mjs",
|
|
788
|
-
"kind": "import-statement"
|
|
789
|
-
}
|
|
790
|
-
],
|
|
791
|
-
"exports": [
|
|
792
|
-
"default"
|
|
793
|
-
],
|
|
794
|
-
"entryPoint": "src/lib/baseBuilder.test/baseBuilder.test.pure.ts",
|
|
795
|
-
"inputs": {
|
|
796
|
-
"src/lib/baseBuilder.test/baseBuilder.test.specification.ts": {
|
|
797
|
-
"bytesInOutput": 832
|
|
798
|
-
},
|
|
799
|
-
"src/lib/baseBuilder.test/baseBuilder.test.mock.ts": {
|
|
800
|
-
"bytesInOutput": 1133
|
|
801
|
-
},
|
|
802
|
-
"src/lib/baseBuilder.test/baseBuilder.test.implementation.ts": {
|
|
803
|
-
"bytesInOutput": 3427
|
|
804
|
-
},
|
|
805
|
-
"src/lib/baseBuilder.test/baseBuilder.test.adapter.ts": {
|
|
806
|
-
"bytesInOutput": 600
|
|
807
|
-
},
|
|
808
|
-
"src/lib/baseBuilder.test/baseBuilder.test.pure.ts": {
|
|
809
|
-
"bytesInOutput": 131
|
|
810
|
-
}
|
|
811
|
-
},
|
|
812
|
-
"bytes": 6634
|
|
813
|
-
},
|
|
814
|
-
"testeranto/bundles/pure/core/chunk-62UVCSQC.mjs": {
|
|
674
|
+
"testeranto/bundles/pure/core/chunk-6OAL6SL4.mjs": {
|
|
815
675
|
"imports": [],
|
|
816
676
|
"exports": [
|
|
817
|
-
"BaseBuilder",
|
|
818
677
|
"BaseGiven",
|
|
819
678
|
"BaseSuite",
|
|
820
679
|
"BaseThen",
|
|
@@ -831,17 +690,17 @@
|
|
|
831
690
|
"src/lib/index.ts": {
|
|
832
691
|
"bytesInOutput": 672
|
|
833
692
|
},
|
|
834
|
-
"src/lib/
|
|
835
|
-
"bytesInOutput":
|
|
693
|
+
"src/lib/BaseGiven.ts": {
|
|
694
|
+
"bytesInOutput": 2909
|
|
836
695
|
},
|
|
837
|
-
"src/lib/
|
|
838
|
-
"bytesInOutput":
|
|
696
|
+
"src/lib/BaseWhen.ts": {
|
|
697
|
+
"bytesInOutput": 1125
|
|
839
698
|
},
|
|
840
|
-
"src/lib/
|
|
841
|
-
"bytesInOutput":
|
|
699
|
+
"src/lib/BaseThen.ts": {
|
|
700
|
+
"bytesInOutput": 1579
|
|
842
701
|
},
|
|
843
|
-
"src/lib/
|
|
844
|
-
"bytesInOutput":
|
|
702
|
+
"src/lib/Tiposkripto.ts": {
|
|
703
|
+
"bytesInOutput": 5297
|
|
845
704
|
},
|
|
846
705
|
"src/PM/index.ts": {
|
|
847
706
|
"bytesInOutput": 20
|
|
@@ -850,10 +709,10 @@
|
|
|
850
709
|
"bytesInOutput": 2976
|
|
851
710
|
},
|
|
852
711
|
"src/Pure.ts": {
|
|
853
|
-
"bytesInOutput":
|
|
712
|
+
"bytesInOutput": 1064
|
|
854
713
|
}
|
|
855
714
|
},
|
|
856
|
-
"bytes":
|
|
715
|
+
"bytes": 24943
|
|
857
716
|
}
|
|
858
717
|
}
|
|
859
718
|
}
|