testeranto 0.197.0 → 0.199.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 +14 -14
- 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
|
@@ -1,21 +1,5 @@
|
|
|
1
1
|
{
|
|
2
2
|
"tests": [
|
|
3
|
-
[
|
|
4
|
-
"src/components/pure/TestPageView.test/index.tsx",
|
|
5
|
-
"web",
|
|
6
|
-
{
|
|
7
|
-
"ports": 0
|
|
8
|
-
},
|
|
9
|
-
[]
|
|
10
|
-
],
|
|
11
|
-
[
|
|
12
|
-
"src/components/pure/ProjectPageView.test/index.tsx",
|
|
13
|
-
"web",
|
|
14
|
-
{
|
|
15
|
-
"ports": 0
|
|
16
|
-
},
|
|
17
|
-
[]
|
|
18
|
-
],
|
|
19
3
|
[
|
|
20
4
|
"src/lib/BaseSuite.test/node.test.ts",
|
|
21
5
|
"node",
|
|
@@ -41,31 +25,31 @@
|
|
|
41
25
|
[]
|
|
42
26
|
],
|
|
43
27
|
[
|
|
44
|
-
"src/
|
|
45
|
-
"
|
|
28
|
+
"src/components/pure/TestPageView.test/index.tsx",
|
|
29
|
+
"web",
|
|
46
30
|
{
|
|
47
31
|
"ports": 0
|
|
48
32
|
},
|
|
49
33
|
[]
|
|
50
34
|
],
|
|
51
35
|
[
|
|
52
|
-
"src/
|
|
53
|
-
"
|
|
36
|
+
"src/components/pure/ProjectPageView.test/index.tsx",
|
|
37
|
+
"web",
|
|
54
38
|
{
|
|
55
39
|
"ports": 0
|
|
56
40
|
},
|
|
57
41
|
[]
|
|
58
42
|
],
|
|
59
43
|
[
|
|
60
|
-
"src/
|
|
61
|
-
"
|
|
44
|
+
"src/Pure.test.ts",
|
|
45
|
+
"pure",
|
|
62
46
|
{
|
|
63
47
|
"ports": 0
|
|
64
48
|
},
|
|
65
49
|
[]
|
|
66
50
|
],
|
|
67
51
|
[
|
|
68
|
-
"src/lib/
|
|
52
|
+
"src/lib/pmProxy.test/index.ts",
|
|
69
53
|
"node",
|
|
70
54
|
{
|
|
71
55
|
"ports": 0
|
|
@@ -73,29 +57,13 @@
|
|
|
73
57
|
[]
|
|
74
58
|
],
|
|
75
59
|
[
|
|
76
|
-
"src/lib/
|
|
60
|
+
"src/lib/TipoSkripto.test/TipoSkripto.ts",
|
|
77
61
|
"node",
|
|
78
62
|
{
|
|
79
63
|
"ports": 0
|
|
80
64
|
},
|
|
81
65
|
[]
|
|
82
66
|
],
|
|
83
|
-
[
|
|
84
|
-
"src/lib/baseBuilder.test/baseBuilder.test.pure.ts",
|
|
85
|
-
"pure",
|
|
86
|
-
{
|
|
87
|
-
"ports": 0
|
|
88
|
-
},
|
|
89
|
-
[]
|
|
90
|
-
],
|
|
91
|
-
[
|
|
92
|
-
"src/lib/baseBuilder.test/baseBuilder.test.web.ts",
|
|
93
|
-
"web",
|
|
94
|
-
{
|
|
95
|
-
"ports": 0
|
|
96
|
-
},
|
|
97
|
-
[]
|
|
98
|
-
],
|
|
99
67
|
[
|
|
100
68
|
"src/components/pure/FeaturesReporterView.test/index.tsx",
|
|
101
69
|
"web",
|
|
@@ -1,16 +1,10 @@
|
|
|
1
|
-
/Users/adam/Code/testeranto/src/lib/
|
|
2
|
-
/Users/adam/Code/testeranto/src/lib/
|
|
3
|
-
/Users/adam/Code/testeranto/src/lib/basebuilder.ts (123,15): Expected 1 arguments, but got 3.
|
|
4
|
-
/Users/adam/Code/testeranto/src/lib/core.ts (48,7): Argument of type 'Omit<{ suites: import("/Users/adam/Code/testeranto/src/Types").TestSuiteImplementation<O>; givens: import("/Users/adam/Code/testeranto/src/Types").TestGivenImplementation<I, O>; whens: import("/Users/adam/Code/testeranto/src/Types").TestWhenImplementation<...>; thens: import("/Users/adam/Code/testeranto/src/Types")....' is not assignable to parameter of type 'Omit<{ suites: import("/Users/adam/Code/testeranto/src/Types").TestSuiteImplementation<O>; givens: import("/Users/adam/Code/testeranto/src/Types").TestGivenImplementation<I, O>; whens: import("/Users/adam/Code/testeranto/src/Types").TestWhenImplementation<...>; thens: import("/Users/adam/Code/testeranto/src/Types")....'.
|
|
5
|
-
Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M> & M & { ...; }' is not assignable to type '{ suites: Record<string, never>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }'.
|
|
6
|
-
Types of property 'suites' are incompatible.
|
|
7
|
-
Type 'Record<string, any>' is not assignable to type 'Record<string, never>'.
|
|
8
|
-
'string' index signatures are incompatible.
|
|
9
|
-
Type 'any' is not assignable to type 'never'.
|
|
10
|
-
/Users/adam/Code/testeranto/src/lib/index.ts (36,12): This expression is not callable.
|
|
1
|
+
/Users/adam/Code/testeranto/src/lib/BaseThen.ts (76,41): A spread argument must either have a tuple type or be passed to a rest parameter.
|
|
2
|
+
/Users/adam/Code/testeranto/src/lib/index.ts (42,12): This expression is not callable.
|
|
11
3
|
Type 'unknown' has no call signatures.
|
|
12
|
-
/Users/adam/Code/testeranto/src/lib/index.ts (
|
|
4
|
+
/Users/adam/Code/testeranto/src/lib/index.ts (50,12): This expression is not callable.
|
|
13
5
|
Type 'unknown' has no call signatures.
|
|
6
|
+
/Users/adam/Code/testeranto/src/lib/Tiposkripto.ts (205,7): Argument of type 'Record<string, any>' is not assignable to parameter of type 'SuiteSpecification<I, O>'.
|
|
7
|
+
/Users/adam/Code/testeranto/src/lib/Tiposkripto.ts (263,15): Expected 1 arguments, but got 3.
|
|
14
8
|
/Users/adam/Code/testeranto/src/PM/web.ts (59,12): Property 'mainFrame' does not exist on type 'string | Page'.
|
|
15
9
|
Property 'mainFrame' does not exist on type 'string'.
|
|
16
10
|
/Users/adam/Code/testeranto/src/Pure.test.ts (58,5): Type '() => { pm: IPM; config: {}; proxies: { butThenProxy: (pm: IPM, path: string) => { writeFileSync: (p: string, c: string) => any; testResourceConfiguration: ITTestResourceConfiguration; client: Socket; server: any; } | { ...; } | { ...; }; andWhenProxy: (pm: IPM, path: string) => { ...; } | ... 1 more ... | { ...; };...' is not assignable to type '() => () => { pm: IPM; config: {}; proxies: any; }'.
|
|
@@ -67,5 +61,6 @@
|
|
|
67
61
|
/Users/adam/Code/testeranto/src/Pure.test.ts (177,29): Type '(store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
|
|
68
62
|
Target signature provides too few arguments. Expected 3 or more, but got 2.
|
|
69
63
|
/Users/adam/Code/testeranto/src/Pure.test.ts (315,28): Cannot find name 'ITestAdapter'.
|
|
70
|
-
/Users/adam/Code/testeranto/src/Pure.ts (
|
|
71
|
-
Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M>' is missing the following properties from type '{ suites: Record<string,
|
|
64
|
+
/Users/adam/Code/testeranto/src/Pure.ts (33,7): Argument of type 'ITestImplementation<I, O, M>' is not assignable to parameter of type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M> & M & { ...; }'.
|
|
65
|
+
Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M>' is missing the following properties from type '{ suites: Record<string, never>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }': suites, givens, whens, thens
|
|
66
|
+
/Users/adam/Code/testeranto/src/Pure.ts (83,21): Cannot find name 'Testeranto'.
|
package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/error.log
CHANGED
|
@@ -1,3 +1,67 @@
|
|
|
1
1
|
Failed to load resource: net::ERR_FILE_NOT_FOUND
|
|
2
|
-
|
|
3
|
-
|
|
2
|
+
AssertionError: Should show project names: expected +0 to be at least 1
|
|
3
|
+
at BaseThen.thenCB (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/FeaturesReporterView.test/index.mjs?cacheBust=1756077043717:75:14)
|
|
4
|
+
at file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2737:39
|
|
5
|
+
at Object.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-L6N2I5MB.mjs:92:14)
|
|
6
|
+
at BaseThen.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2829:40)
|
|
7
|
+
at BaseThen.test (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2718:17)
|
|
8
|
+
at BaseGiven.give (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2601:24)
|
|
9
|
+
at async BaseSuite.run (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2322:20)
|
|
10
|
+
at async file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2852:21
|
|
11
|
+
at async Object.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2884:31)
|
|
12
|
+
at async WebTesteranto.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2947:12)
|
|
13
|
+
AssertionError: Should show file paths: expected +0 to be at least 1
|
|
14
|
+
at BaseThen.thenCB (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/FeaturesReporterView.test/index.mjs?cacheBust=1756077043717:80:14)
|
|
15
|
+
at file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2737:39
|
|
16
|
+
at Object.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-L6N2I5MB.mjs:92:14)
|
|
17
|
+
at BaseThen.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2829:40)
|
|
18
|
+
at BaseThen.test (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2718:17)
|
|
19
|
+
at BaseGiven.give (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2601:24)
|
|
20
|
+
at async BaseSuite.run (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2322:20)
|
|
21
|
+
at async file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2852:21
|
|
22
|
+
at async Object.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2884:31)
|
|
23
|
+
at async WebTesteranto.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2947:12)
|
|
24
|
+
AssertionError: Should show test names: expected +0 to be at least 1
|
|
25
|
+
at BaseThen.thenCB (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/FeaturesReporterView.test/index.mjs?cacheBust=1756077043717:85:14)
|
|
26
|
+
at file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2737:39
|
|
27
|
+
at Object.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-L6N2I5MB.mjs:92:14)
|
|
28
|
+
at BaseThen.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2829:40)
|
|
29
|
+
at BaseThen.test (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2718:17)
|
|
30
|
+
at BaseGiven.give (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2601:24)
|
|
31
|
+
at async BaseSuite.run (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2322:20)
|
|
32
|
+
at async file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2852:21
|
|
33
|
+
at async Object.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2884:31)
|
|
34
|
+
at async WebTesteranto.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2947:12)
|
|
35
|
+
AssertionError: Should show status badges: expected +0 to be at least 1
|
|
36
|
+
at BaseThen.thenCB (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/FeaturesReporterView.test/index.mjs?cacheBust=1756077043717:90:14)
|
|
37
|
+
at file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2737:39
|
|
38
|
+
at Object.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-L6N2I5MB.mjs:92:14)
|
|
39
|
+
at BaseThen.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2829:40)
|
|
40
|
+
at BaseThen.test (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2718:17)
|
|
41
|
+
at BaseGiven.give (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2601:24)
|
|
42
|
+
at async BaseSuite.run (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2322:20)
|
|
43
|
+
at async file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2852:21
|
|
44
|
+
at async Object.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2884:31)
|
|
45
|
+
at async WebTesteranto.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2947:12)
|
|
46
|
+
TypeError: Cannot read properties of undefined (reading 'path')
|
|
47
|
+
at PM_Web.customScreenShot (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2444:62)
|
|
48
|
+
at Proxy.<anonymous> (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:1976:32)
|
|
49
|
+
at BaseThen.thenCB (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/FeaturesReporterView.test/index.mjs?cacheBust=1756077043717:100:16)
|
|
50
|
+
at async file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2737:28
|
|
51
|
+
at async BaseThen.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2829:22)
|
|
52
|
+
at async BaseGiven.give (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2601:9)
|
|
53
|
+
at async BaseSuite.run (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2322:20)
|
|
54
|
+
at async file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2852:21
|
|
55
|
+
at async Object.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2884:31)
|
|
56
|
+
at async WebTesteranto.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2947:12)
|
|
57
|
+
AssertionError: Should show empty message: expected null to exist
|
|
58
|
+
at BaseThen.thenCB (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/FeaturesReporterView.test/index.mjs?cacheBust=1756077043717:95:14)
|
|
59
|
+
at file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2737:39
|
|
60
|
+
at Object.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-L6N2I5MB.mjs:92:14)
|
|
61
|
+
at BaseThen.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2829:40)
|
|
62
|
+
at BaseThen.test (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2718:17)
|
|
63
|
+
at BaseGiven.give (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2601:24)
|
|
64
|
+
at async BaseSuite.run (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2322:20)
|
|
65
|
+
at async file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2852:21
|
|
66
|
+
at async Object.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2884:31)
|
|
67
|
+
at async WebTesteranto.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2947:12)
|
package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/prompt.txt
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
|
|
2
|
+
/add src/components/pure/FeaturesReporterView.test/index.tsx
|
|
3
|
+
/add src/components/pure/FeaturesReporterView.test/implementation.tsx
|
|
4
|
+
/add src/components/pure/FeaturesReporterView.test/specification.ts
|
|
5
|
+
/add src/components/pure/FeaturesReporterView.tsx
|
|
6
|
+
|
|
7
|
+
/read node_modules/testeranto/docs/index.md
|
|
8
|
+
/read node_modules/testeranto/docs/style.md
|
|
9
|
+
/read node_modules/testeranto/docs/testing.ai.txt
|
|
10
|
+
/read node_modules/testeranto/src/CoreTypes.ts
|
|
11
|
+
|
|
12
|
+
/read testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/tests.json
|
|
13
|
+
/read testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/type_errors.txt
|
|
14
|
+
/read testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/lint_errors.txt
|
|
15
|
+
|
|
16
|
+
/read testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/tests.json testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/type_errors.txt testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/lint_errors.txt testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/exit.log testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/message.txt testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/prompt.txt testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/info.log testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/error.log testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/warn.log testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/debug.log
|
package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/tests.json
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "FeaturesReporterView Component Tests",
|
|
3
|
+
"givens": [
|
|
4
|
+
{
|
|
5
|
+
"key": "basicRender",
|
|
6
|
+
"name": [
|
|
7
|
+
"FeaturesReporterView should render",
|
|
8
|
+
"It should show project names",
|
|
9
|
+
"It should show file paths",
|
|
10
|
+
"It should show test names",
|
|
11
|
+
"It should show test statuses"
|
|
12
|
+
],
|
|
13
|
+
"whens": [
|
|
14
|
+
{
|
|
15
|
+
"name": "hasProjectNames: ",
|
|
16
|
+
"error": false,
|
|
17
|
+
"artifacts": []
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"name": "hasFilePaths: ",
|
|
21
|
+
"error": false,
|
|
22
|
+
"artifacts": []
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"name": "hasTestNames: ",
|
|
26
|
+
"error": false,
|
|
27
|
+
"artifacts": []
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"name": "hasStatusBadges: ",
|
|
31
|
+
"error": false,
|
|
32
|
+
"artifacts": []
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"name": "takeScreenshot: features-reporter.png",
|
|
36
|
+
"error": false,
|
|
37
|
+
"artifacts": [
|
|
38
|
+
"suite-0/given-basicRender/when/4/butThen/features-reporter.png"
|
|
39
|
+
]
|
|
40
|
+
}
|
|
41
|
+
],
|
|
42
|
+
"thens": [],
|
|
43
|
+
"error": null,
|
|
44
|
+
"features": [],
|
|
45
|
+
"artifacts": []
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"key": "emptyState",
|
|
49
|
+
"name": [
|
|
50
|
+
"FeaturesReporterView should handle empty state",
|
|
51
|
+
"It should show empty message when no projects exist"
|
|
52
|
+
],
|
|
53
|
+
"whens": [
|
|
54
|
+
{
|
|
55
|
+
"name": "showsEmptyMessage: ",
|
|
56
|
+
"error": false,
|
|
57
|
+
"artifacts": []
|
|
58
|
+
}
|
|
59
|
+
],
|
|
60
|
+
"thens": [],
|
|
61
|
+
"error": null,
|
|
62
|
+
"features": [],
|
|
63
|
+
"artifacts": []
|
|
64
|
+
}
|
|
65
|
+
],
|
|
66
|
+
"fails": 0,
|
|
67
|
+
"features": []
|
|
68
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic.ts (33,14): Type '(testInput: typeof Component) => { beforeAll: (subject: typeof Component, artificer: ITTestResourceConfiguration) => Promise<{ htmlElement: HTMLElement; }>; ... 5 more ...; assertThis: (x: (s: ISelection) => ISelection) => (s: ISelection) => ISelection; }' is not assignable to type '(testInput: typeof Component) => ITestAdapter<I>'.
|
|
2
|
+
Call signature return types '{ beforeAll: (subject: typeof Component, artificer: ITTestResourceConfiguration) => Promise<{ htmlElement: HTMLElement; }>; ... 5 more ...; assertThis: (x: (s: ISelection) => ISelection) => (s: ISelection) => ISelection; }' and 'ITestAdapter<I>' are incompatible.
|
|
3
|
+
The types returned by 'beforeAll(...)' are incompatible between these types.
|
|
4
|
+
Type 'Promise<{ htmlElement: HTMLElement; }>' is not assignable to type 'Promise<ISubject>'.
|
|
5
|
+
Property 'domRoot' is missing in type '{ htmlElement: HTMLElement; }' but required in type 'ISubject'.
|
|
6
|
+
/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic.ts (47,45): Property 'subject' does not exist on type 'Readonly<{}>'.
|
|
7
|
+
/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic.ts (114,9): Expected 1 arguments, but got 3.
|
|
8
|
+
/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react/component/index.ts (21,3): Type '{ beforeEach: () => Promise<CElement<any, any>>; andWhen: (s: CElement<any, any>, whenCB: () => (s: CElement<any, any>) => any) => any; }' is missing the following properties from type 'ITestAdapter<I>': assertThis, butThen, afterAll, afterEach, beforeAll
|
|
9
|
+
/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/implementation.tsx (18,13): Type '"test"' is not assignable to type '"project" | "file"'.
|
|
10
|
+
/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/implementation.tsx (23,17): Type '"given"' is not assignable to type '"project" | "file"'.
|
|
11
|
+
/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/implementation.tsx (28,21): Type '"then"' is not assignable to type '"project" | "file"'.
|
|
12
|
+
/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/implementation.tsx (60,9): Type '({ htmlElement }: IInput & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IInput & { container?: HTMLElement | undefined; }) => IInput & { container?: HTMLElement | undefined; }'.
|
|
13
|
+
Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IInput & { container?: HTMLElement | undefined; }'.
|
|
14
|
+
Property 'treeData' is missing in type 'Promise<{ htmlElement: any; }>' but required in type 'IInput'.
|
|
15
|
+
/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/implementation.tsx (60,18): Property 'htmlElement' does not exist on type 'IInput & { container?: HTMLElement | undefined; }'.
|
|
16
|
+
/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/implementation.tsx (68,9): Type '({ htmlElement }: IInput & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IInput & { container?: HTMLElement | undefined; }) => IInput & { container?: HTMLElement | undefined; }'.
|
|
17
|
+
Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IInput & { container?: HTMLElement | undefined; }'.
|
|
18
|
+
Property 'treeData' is missing in type 'Promise<{ htmlElement: any; }>' but required in type 'IInput'.
|
|
19
|
+
/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/implementation.tsx (68,18): Property 'htmlElement' does not exist on type 'IInput & { container?: HTMLElement | undefined; }'.
|
|
20
|
+
/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/implementation.tsx (76,9): Type '({ htmlElement }: IInput & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IInput & { container?: HTMLElement | undefined; }) => IInput & { container?: HTMLElement | undefined; }'.
|
|
21
|
+
Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IInput & { container?: HTMLElement | undefined; }'.
|
|
22
|
+
Property 'treeData' is missing in type 'Promise<{ htmlElement: any; }>' but required in type 'IInput'.
|
|
23
|
+
/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/implementation.tsx (76,18): Property 'htmlElement' does not exist on type 'IInput & { container?: HTMLElement | undefined; }'.
|
|
24
|
+
/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/implementation.tsx (84,9): Type '({ htmlElement }: IInput & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IInput & { container?: HTMLElement | undefined; }) => IInput & { container?: HTMLElement | undefined; }'.
|
|
25
|
+
Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IInput & { container?: HTMLElement | undefined; }'.
|
|
26
|
+
Property 'treeData' is missing in type 'Promise<{ htmlElement: any; }>' but required in type 'IInput'.
|
|
27
|
+
/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/implementation.tsx (84,18): Property 'htmlElement' does not exist on type 'IInput & { container?: HTMLElement | undefined; }'.
|
|
28
|
+
/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/implementation.tsx (92,9): Type '({ htmlElement }: IInput & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IInput & { container?: HTMLElement | undefined; }) => IInput & { container?: HTMLElement | undefined; }'.
|
|
29
|
+
Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IInput & { container?: HTMLElement | undefined; }'.
|
|
30
|
+
Property 'treeData' is missing in type 'Promise<{ htmlElement: any; }>' but required in type 'IInput'.
|
|
31
|
+
/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/implementation.tsx (92,18): Property 'htmlElement' does not exist on type 'IInput & { container?: HTMLElement | undefined; }'.
|
|
32
|
+
/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/implementation.tsx (98,5): Type '(name: string) => ({ htmlElement }: { htmlElement: any; }, pm: any) => Promise<{ htmlElement: any; }>' is not assignable to type '(...args: any[]) => (state: IInput & { container?: HTMLElement | undefined; }) => IInput & { container?: HTMLElement | undefined; }'.
|
|
33
|
+
Type '({ htmlElement }: { htmlElement: any; }, pm: any) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IInput & { container?: HTMLElement | undefined; }) => IInput & { container?: HTMLElement | undefined; }'.
|
|
34
|
+
Target signature provides too few arguments. Expected 2 or more, but got 1.
|
|
35
|
+
/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/index.tsx (16,3): Argument of type 'import("/Users/adam/Code/testeranto/src/CoreTypes").ITestSpecification<import("/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types").I, import("/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types").O>' is not assignable to parameter of type 'import("/Users/adam/Code/testeranto/src/CoreTypes").ITestSpecification<import("/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic").I, import("/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types").O>'.
|
|
36
|
+
Types of parameters 'Suite' and 'Suite' are incompatible.
|
|
37
|
+
Type 'import("/Users/adam/Code/testeranto/src/Types").SuiteSpecification<import("/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic").I, import("/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types").O>' is not assignable to type 'import("/Users/adam/Code/testeranto/src/Types").SuiteSpecification<import("/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types").I, import("/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types").O>'.
|
|
38
|
+
Types of property 'Default' are incompatible.
|
|
39
|
+
Type '(name: string, givens: import("/Users/adam/Code/testeranto/src/lib/BaseGiven").IGivens<import("/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic").I>) => import("/Users/adam/Code/testeranto/src/lib/BaseSuite").BaseSuite<...>' is not assignable to type '(name: string, givens: import("/Users/adam/Code/testeranto/src/lib/BaseGiven").IGivens<import("/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types").I>) => import("/Users/adam/Code/testeranto/src/lib/BaseSuite").BaseSuite<...>'.
|
|
40
|
+
Types of parameters 'givens' and 'givens' are incompatible.
|
|
41
|
+
Type 'import("/Users/adam/Code/testeranto/src/lib/BaseGiven").IGivens<import("/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types").I>' is not assignable to type 'import("/Users/adam/Code/testeranto/src/lib/BaseGiven").IGivens<import("/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic").I>'.
|
|
42
|
+
Type 'import("/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types").I' is not assignable to type 'import("/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic").I'.
|
|
43
|
+
Types of property 'iinput' are incompatible.
|
|
44
|
+
Property 'prototype' is missing in type 'IInput' but required in type 'typeof Component'.
|
|
45
|
+
/Users/adam/Code/testeranto/src/lib/BaseThen.ts (76,41): A spread argument must either have a tuple type or be passed to a rest parameter.
|
|
46
|
+
/Users/adam/Code/testeranto/src/lib/index.ts (42,12): This expression is not callable.
|
|
47
|
+
Type 'unknown' has no call signatures.
|
|
48
|
+
/Users/adam/Code/testeranto/src/lib/index.ts (50,12): This expression is not callable.
|
|
49
|
+
Type 'unknown' has no call signatures.
|
|
50
|
+
/Users/adam/Code/testeranto/src/lib/Tiposkripto.ts (205,7): Argument of type 'Record<string, any>' is not assignable to parameter of type 'SuiteSpecification<I, O>'.
|
|
51
|
+
/Users/adam/Code/testeranto/src/lib/Tiposkripto.ts (263,15): Expected 1 arguments, but got 3.
|
|
52
|
+
/Users/adam/Code/testeranto/src/PM/web.ts (59,12): Property 'mainFrame' does not exist on type 'string | Page'.
|
|
53
|
+
Property 'mainFrame' does not exist on type 'string'.
|
|
54
|
+
/Users/adam/Code/testeranto/src/Web.ts (43,7): Argument of type 'ITestImplementation<I, O, M>' is not assignable to parameter of type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M> & M & { ...; }'.
|
|
55
|
+
Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M>' is missing the following properties from type '{ suites: Record<string, never>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }': suites, givens, whens, thens
|
|
56
|
+
/Users/adam/Code/testeranto/src/Web.ts (92,12): Cannot find name 'Testeranto'. Did you mean 'WebTesteranto'?
|
package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/error.log
CHANGED
|
@@ -1,3 +1,22 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
TypeError: Cannot read properties of undefined (reading 'path')
|
|
2
|
+
at PM_Web.customScreenShot (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2444:62)
|
|
3
|
+
at Proxy.<anonymous> (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:1976:32)
|
|
4
|
+
at BaseThen.thenCB (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1756077043716:216:16)
|
|
5
|
+
at async file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2737:28
|
|
6
|
+
at async BaseThen.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2829:22)
|
|
7
|
+
at async BaseGiven.give (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2601:9)
|
|
8
|
+
at async BaseSuite.run (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2322:20)
|
|
9
|
+
at async file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2852:21
|
|
10
|
+
at async Object.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2884:31)
|
|
11
|
+
at async WebTesteranto.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2947:12)
|
|
12
|
+
TypeError: Cannot read properties of undefined (reading 'path')
|
|
13
|
+
at PM_Web.customScreenShot (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2444:62)
|
|
14
|
+
at Proxy.<anonymous> (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:1976:32)
|
|
15
|
+
at BaseThen.thenCB (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1756077043716:216:16)
|
|
16
|
+
at async file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2737:28
|
|
17
|
+
at async BaseThen.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2829:22)
|
|
18
|
+
at async BaseGiven.give (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2601:9)
|
|
19
|
+
at async BaseSuite.run (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2322:20)
|
|
20
|
+
at async file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2852:21
|
|
21
|
+
at async Object.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2884:31)
|
|
22
|
+
at async WebTesteranto.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2947:12)
|
package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/lint_errors.txt
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
src/components/pure/ProjectPageView.test/implementation.tsx
|
|
2
|
+
101:31 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
|
|
3
|
+
- undefined (fix)
|
|
4
|
+
- undefined (fix)
|
|
5
|
+
102:26 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
|
|
6
|
+
- undefined (fix)
|
|
7
|
+
- undefined (fix)
|
|
8
|
+
125:31 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
|
|
9
|
+
- undefined (fix)
|
|
10
|
+
- undefined (fix)
|
|
11
|
+
126:26 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
|
|
12
|
+
- undefined (fix)
|
|
13
|
+
- undefined (fix)
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
|
|
2
|
+
/add src/components/pure/ProjectPageView.test/index.tsx
|
|
3
|
+
/add src/components/pure/ProjectPageView.test/implementation.tsx
|
|
4
|
+
/add src/components/pure/ProjectPageView.test/specification.ts
|
|
5
|
+
/add src/components/pure/ProjectPageView.tsx
|
|
6
|
+
|
|
7
|
+
/read node_modules/testeranto/docs/index.md
|
|
8
|
+
/read node_modules/testeranto/docs/style.md
|
|
9
|
+
/read node_modules/testeranto/docs/testing.ai.txt
|
|
10
|
+
/read node_modules/testeranto/src/CoreTypes.ts
|
|
11
|
+
|
|
12
|
+
/read testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/tests.json
|
|
13
|
+
/read testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/type_errors.txt
|
|
14
|
+
/read testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/lint_errors.txt
|
|
15
|
+
|
|
16
|
+
/read testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/tests.json testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/type_errors.txt testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/lint_errors.txt testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/exit.log testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/message.txt testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/prompt.txt testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/info.log testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/error.log testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/warn.log testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/debug.log
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "ProjectPageView Component Tests",
|
|
3
|
+
"givens": [
|
|
4
|
+
{
|
|
5
|
+
"key": "basicRender",
|
|
6
|
+
"name": [
|
|
7
|
+
"ProjectPageView should render",
|
|
8
|
+
"It should contain a container-fluid div",
|
|
9
|
+
"It should render the NavBar component",
|
|
10
|
+
"NavBar should display project title",
|
|
11
|
+
"It should render test results table",
|
|
12
|
+
"It should display test-suite-1 results",
|
|
13
|
+
"It should display test-suite-2 results"
|
|
14
|
+
],
|
|
15
|
+
"whens": [
|
|
16
|
+
{
|
|
17
|
+
"name": "hasContainerFluid: ",
|
|
18
|
+
"error": false,
|
|
19
|
+
"artifacts": []
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"name": "hasNavBar: ",
|
|
23
|
+
"error": false,
|
|
24
|
+
"artifacts": []
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"name": "hasNavBarTitle: ",
|
|
28
|
+
"error": false,
|
|
29
|
+
"artifacts": []
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"name": "hasTestTable: ",
|
|
33
|
+
"error": false,
|
|
34
|
+
"artifacts": []
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"name": "rendersTestSuite1: ",
|
|
38
|
+
"error": false,
|
|
39
|
+
"artifacts": []
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"name": "rendersTestSuite2: ",
|
|
43
|
+
"error": false,
|
|
44
|
+
"artifacts": []
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"name": "takeScreenshot: happy-state.png",
|
|
48
|
+
"error": false,
|
|
49
|
+
"artifacts": [
|
|
50
|
+
"suite-0/given-basicRender/when/6/butThen/happy-state.png"
|
|
51
|
+
]
|
|
52
|
+
}
|
|
53
|
+
],
|
|
54
|
+
"thens": [],
|
|
55
|
+
"error": null,
|
|
56
|
+
"features": [],
|
|
57
|
+
"artifacts": []
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"key": "errorHandling",
|
|
61
|
+
"name": [
|
|
62
|
+
"ProjectPageView should handle errors",
|
|
63
|
+
"It should display error messages when present",
|
|
64
|
+
"It should capture screenshots of error state"
|
|
65
|
+
],
|
|
66
|
+
"whens": [
|
|
67
|
+
{
|
|
68
|
+
"name": "unhappyPath: ",
|
|
69
|
+
"error": false,
|
|
70
|
+
"artifacts": []
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"name": "takeScreenshot: error-state.png",
|
|
74
|
+
"error": false,
|
|
75
|
+
"artifacts": [
|
|
76
|
+
"suite-0/given-errorHandling/when/1/butThen/error-state.png"
|
|
77
|
+
]
|
|
78
|
+
}
|
|
79
|
+
],
|
|
80
|
+
"thens": [],
|
|
81
|
+
"error": null,
|
|
82
|
+
"features": [],
|
|
83
|
+
"artifacts": []
|
|
84
|
+
}
|
|
85
|
+
],
|
|
86
|
+
"fails": 0,
|
|
87
|
+
"features": []
|
|
88
|
+
}
|
package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/type_errors.txt
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic.ts (33,14): Type '(testInput: typeof Component) => { beforeAll: (subject: typeof Component, artificer: ITTestResourceConfiguration) => Promise<{ htmlElement: HTMLElement; }>; ... 5 more ...; assertThis: (x: (s: ISelection) => ISelection) => (s: ISelection) => ISelection; }' is not assignable to type '(testInput: typeof Component) => ITestAdapter<I>'.
|
|
2
|
+
Call signature return types '{ beforeAll: (subject: typeof Component, artificer: ITTestResourceConfiguration) => Promise<{ htmlElement: HTMLElement; }>; ... 5 more ...; assertThis: (x: (s: ISelection) => ISelection) => (s: ISelection) => ISelection; }' and 'ITestAdapter<I>' are incompatible.
|
|
3
|
+
The types returned by 'beforeAll(...)' are incompatible between these types.
|
|
4
|
+
Type 'Promise<{ htmlElement: HTMLElement; }>' is not assignable to type 'Promise<ISubject>'.
|
|
5
|
+
Property 'domRoot' is missing in type '{ htmlElement: HTMLElement; }' but required in type 'ISubject'.
|
|
6
|
+
/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic.ts (47,45): Property 'subject' does not exist on type 'Readonly<{}>'.
|
|
7
|
+
/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic.ts (114,9): Expected 1 arguments, but got 3.
|
|
8
|
+
/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react/component/index.ts (21,3): Type '{ beforeEach: () => Promise<CElement<any, any>>; andWhen: (s: CElement<any, any>, whenCB: () => (s: CElement<any, any>) => any) => any; }' is missing the following properties from type 'ITestAdapter<I>': assertThis, butThen, afterAll, afterEach, beforeAll
|
|
9
|
+
/Users/adam/Code/testeranto/src/components/pure/NavBar.tsx (87,21): Type '{ children: (ReactNode | Element)[]; key: number; as: "div" | ForwardRefExoticComponent<LinkProps & RefAttributes<HTMLAnchorElement>>; to: string | undefined; active: boolean | undefined; className: string; title: string | undefined; }' is not assignable to type 'IntrinsicAttributes & Omit<(Omit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & { ...; }) | (LinkProps & RefAttributes<...>), BsPrefixProps<...> & NavLinkProps> & BsPrefixProps<...> & NavLinkProps & { ...; }'.
|
|
10
|
+
Property 'to' does not exist on type 'IntrinsicAttributes & Omit<(Omit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & { ...; }) | (LinkProps & RefAttributes<...>), BsPrefixProps<...> & NavLinkProps> & BsPrefixProps<...> & NavLinkProps & { ...; }'.
|
|
11
|
+
/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/implementation.tsx (10,3): Property 'Navigation' is missing in type '{ Default: () => { summary: { "test-suite-1": { testsExist: boolean; runTimeErrors: number; typeErrors: number; staticErrors: number; }; "test-suite-2": { testsExist: boolean; runTimeErrors: number; typeErrors: number; staticErrors: number; }; }; ... 14 more ...; domRoot: any; }; WithError: () => { ...; }; }' but required in type '{ Default: (...args: any[]) => IProjectPageViewProps; WithError: (...args: any[]) => IProjectPageViewProps; Navigation: (...args: any[]) => IProjectPageViewProps; }'.
|
|
12
|
+
/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/implementation.tsx (138,37): Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
13
|
+
/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/implementation.tsx (147,37): Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
14
|
+
/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/implementation.tsx (156,37): Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
15
|
+
/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/implementation.tsx (165,37): Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
16
|
+
/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/implementation.tsx (174,37): Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
17
|
+
/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/implementation.tsx (177,24): 'el' is of type 'unknown'.
|
|
18
|
+
/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/implementation.tsx (185,37): Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
19
|
+
/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/implementation.tsx (188,24): 'el' is of type 'unknown'.
|
|
20
|
+
/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/implementation.tsx (195,37): Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
21
|
+
/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/implementation.tsx (205,5): Type '(name: string) => (state: any, pm: any) => Promise<any>' is not assignable to type '(...args: any[]) => (state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { ...; }'.
|
|
22
|
+
Type '(state: any, pm: any) => Promise<any>' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
23
|
+
Target signature provides too few arguments. Expected 2 or more, but got 1.
|
|
24
|
+
/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/index.tsx (16,3): Argument of type 'import("/Users/adam/Code/testeranto/src/CoreTypes").ITestSpecification<import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types").I, import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types").O>' is not assignable to parameter of type 'import("/Users/adam/Code/testeranto/src/CoreTypes").ITestSpecification<import("/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic").I, import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types").O>'.
|
|
25
|
+
Types of parameters 'Suite' and 'Suite' are incompatible.
|
|
26
|
+
Type 'import("/Users/adam/Code/testeranto/src/Types").SuiteSpecification<import("/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic").I, import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types").O>' is not assignable to type 'import("/Users/adam/Code/testeranto/src/Types").SuiteSpecification<import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types").I, import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types").O>'.
|
|
27
|
+
Types of property 'Default' are incompatible.
|
|
28
|
+
Type '(name: string, givens: import("/Users/adam/Code/testeranto/src/lib/BaseGiven").IGivens<import("/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic").I>) => import("/Users/adam/Code/testeranto/src/lib/BaseSuite").BaseSuite<...>' is not assignable to type '(name: string, givens: import("/Users/adam/Code/testeranto/src/lib/BaseGiven").IGivens<import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types").I>) => import("/Users/adam/Code/testeranto/src/lib/BaseSuite").BaseSuite<...>'.
|
|
29
|
+
Types of parameters 'givens' and 'givens' are incompatible.
|
|
30
|
+
Type 'import("/Users/adam/Code/testeranto/src/lib/BaseGiven").IGivens<import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types").I>' is not assignable to type 'import("/Users/adam/Code/testeranto/src/lib/BaseGiven").IGivens<import("/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic").I>'.
|
|
31
|
+
Type 'import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types").I' is not assignable to type 'import("/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic").I'.
|
|
32
|
+
Types of property 'iinput' are incompatible.
|
|
33
|
+
Property 'prototype' is missing in type 'IProjectPageViewProps' but required in type 'typeof Component'.
|
|
34
|
+
/Users/adam/Code/testeranto/src/lib/BaseThen.ts (76,41): A spread argument must either have a tuple type or be passed to a rest parameter.
|
|
35
|
+
/Users/adam/Code/testeranto/src/lib/index.ts (42,12): This expression is not callable.
|
|
36
|
+
Type 'unknown' has no call signatures.
|
|
37
|
+
/Users/adam/Code/testeranto/src/lib/index.ts (50,12): This expression is not callable.
|
|
38
|
+
Type 'unknown' has no call signatures.
|
|
39
|
+
/Users/adam/Code/testeranto/src/lib/Tiposkripto.ts (205,7): Argument of type 'Record<string, any>' is not assignable to parameter of type 'SuiteSpecification<I, O>'.
|
|
40
|
+
/Users/adam/Code/testeranto/src/lib/Tiposkripto.ts (263,15): Expected 1 arguments, but got 3.
|
|
41
|
+
/Users/adam/Code/testeranto/src/PM/web.ts (59,12): Property 'mainFrame' does not exist on type 'string | Page'.
|
|
42
|
+
Property 'mainFrame' does not exist on type 'string'.
|
|
43
|
+
/Users/adam/Code/testeranto/src/Web.ts (43,7): Argument of type 'ITestImplementation<I, O, M>' is not assignable to parameter of type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M> & M & { ...; }'.
|
|
44
|
+
Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M>' is missing the following properties from type '{ suites: Record<string, never>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }': suites, givens, whens, thens
|
|
45
|
+
/Users/adam/Code/testeranto/src/Web.ts (92,12): Cannot find name 'Testeranto'. Did you mean 'WebTesteranto'?
|