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
package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/lint_errors.txt
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
src/components/pure/TestPageView.test/implementation.ts
|
|
2
|
+
20:3 The `{}` ("empty object") type allows any non-nullish value, including literals like `0` and `""`.
|
|
3
|
+
- If that's what you want, disable this lint rule with an inline comment or configure the 'allowObjectTypes' rule option.
|
|
4
|
+
- If you want a type meaning "any object", you probably want `object` instead.
|
|
5
|
+
- If you want a type meaning "any value", you probably want `unknown` instead. (@typescript-eslint/no-empty-object-type)
|
|
6
|
+
- undefined (fix)
|
|
7
|
+
- undefined (fix)
|
|
8
|
+
87:69 'tr' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
9
|
+
87:102 'utils' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
10
|
+
98:59 'tr' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
11
|
+
98:92 'utils' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
12
|
+
109:22 'name' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
13
|
+
109:46 'ssel' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
14
|
+
109:64 'utils' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
15
|
+
113:33 'ssel' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
16
|
+
113:51 'utils' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
17
|
+
118:49 'ssel' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
18
|
+
118:67 'utils' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
19
|
+
123:36 'ssel' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
20
|
+
123:54 'utils' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
21
|
+
129:36 'ssel' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
22
|
+
129:54 'utils' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
23
|
+
137:29 'ssel' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
24
|
+
137:47 'utils' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
25
|
+
143:35 'ssel' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
26
|
+
143:53 'utils' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
27
|
+
149:35 'ssel' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
28
|
+
149:53 'utils' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
29
|
+
155:44 'ssel' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
30
|
+
155:62 'utils' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
31
|
+
|
|
32
|
+
src/components/pure/TestPageView.test/specification.ts
|
|
33
|
+
6:13 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
|
|
34
|
+
- undefined (fix)
|
|
35
|
+
- undefined (fix)
|
|
36
|
+
7:15 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
|
|
37
|
+
- undefined (fix)
|
|
38
|
+
- undefined (fix)
|
|
39
|
+
10:12 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
|
|
40
|
+
- undefined (fix)
|
|
41
|
+
- undefined (fix)
|
|
42
|
+
11:11 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
|
|
43
|
+
- undefined (fix)
|
|
44
|
+
- undefined (fix)
|
|
45
|
+
12:11 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
|
|
46
|
+
- undefined (fix)
|
|
47
|
+
- undefined (fix)
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
|
|
2
|
+
/add src/components/pure/TestPageView.test/index.tsx
|
|
3
|
+
/add src/components/pure/TestPageView.test/implementation.ts
|
|
4
|
+
/add src/components/pure/TestPageView.test/specification.ts
|
|
5
|
+
/add src/components/pure/TestPageView.tsx
|
|
6
|
+
/add src/utils/logFiles.ts
|
|
7
|
+
|
|
8
|
+
/read node_modules/testeranto/docs/index.md
|
|
9
|
+
/read node_modules/testeranto/docs/style.md
|
|
10
|
+
/read node_modules/testeranto/docs/testing.ai.txt
|
|
11
|
+
/read node_modules/testeranto/src/CoreTypes.ts
|
|
12
|
+
|
|
13
|
+
/read testeranto/reports/core/src/components/pure/TestPageView.test/index/web/tests.json
|
|
14
|
+
/read testeranto/reports/core/src/components/pure/TestPageView.test/index/web/type_errors.txt
|
|
15
|
+
/read testeranto/reports/core/src/components/pure/TestPageView.test/index/web/lint_errors.txt
|
|
16
|
+
|
|
17
|
+
/read testeranto/reports/core/src/components/pure/TestPageView.test/index/web/tests.json testeranto/reports/core/src/components/pure/TestPageView.test/index/web/type_errors.txt testeranto/reports/core/src/components/pure/TestPageView.test/index/web/lint_errors.txt testeranto/reports/core/src/components/pure/TestPageView.test/index/web/exit.log testeranto/reports/core/src/components/pure/TestPageView.test/index/web/message.txt testeranto/reports/core/src/components/pure/TestPageView.test/index/web/prompt.txt testeranto/reports/core/src/components/pure/TestPageView.test/index/web/info.log testeranto/reports/core/src/components/pure/TestPageView.test/index/web/error.log testeranto/reports/core/src/components/pure/TestPageView.test/index/web/warn.log testeranto/reports/core/src/components/pure/TestPageView.test/index/web/debug.log
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "TestPageView basic rendering",
|
|
3
|
+
"givens": [
|
|
4
|
+
{
|
|
5
|
+
"key": "renders navigation bar",
|
|
6
|
+
"name": [],
|
|
7
|
+
"whens": [
|
|
8
|
+
{
|
|
9
|
+
"name": "RendersNavBar: ",
|
|
10
|
+
"error": "TypeError: Cannot read properties of undefined (reading 'querySelector')\n at file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/TestPageView.test/index.mjs?cacheBust=1756077043716:172:36\n at Object.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/TestPageView.test/index.mjs?cacheBust=1756077043716:57:14)\n at async BaseThen.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2829:22)\n at async BaseGiven.give (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2601:9)\n at async BaseSuite.run (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2322:20)\n at async file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2852:21\n at async Object.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2884:31)\n at async WebTesteranto.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2947:12)\n at async pptr:evaluate;file%3A%2F%2F%2FUsers%2Fadam%2FCode%2Ftesteranto%2Fsrc%2FPM%2Fmain.ts%3A17%3A996:4:12",
|
|
11
|
+
"artifacts": []
|
|
12
|
+
}
|
|
13
|
+
],
|
|
14
|
+
"thens": [],
|
|
15
|
+
"error": null,
|
|
16
|
+
"features": [],
|
|
17
|
+
"artifacts": []
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"key": "shows error counts",
|
|
21
|
+
"name": [],
|
|
22
|
+
"whens": [
|
|
23
|
+
{
|
|
24
|
+
"name": "ShowsErrorCounts: ",
|
|
25
|
+
"error": "TypeError: Cannot read properties of undefined (reading 'querySelectorAll')\n at file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/TestPageView.test/index.mjs?cacheBust=1756077043716:181:36\n at Object.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/TestPageView.test/index.mjs?cacheBust=1756077043716:57:14)\n at async BaseThen.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2829:22)\n at async BaseGiven.give (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2601:9)\n at async BaseSuite.run (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2322:20)\n at async file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2852:21\n at async Object.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2884:31)\n at async WebTesteranto.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-PV6EA47E.mjs:2947:12)\n at async pptr:evaluate;file%3A%2F%2F%2FUsers%2Fadam%2FCode%2Ftesteranto%2Fsrc%2FPM%2Fmain.ts%3A17%3A996:4:12",
|
|
26
|
+
"artifacts": []
|
|
27
|
+
}
|
|
28
|
+
],
|
|
29
|
+
"thens": [],
|
|
30
|
+
"error": null,
|
|
31
|
+
"features": [],
|
|
32
|
+
"artifacts": []
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"key": "shows test results when data exists",
|
|
36
|
+
"name": [],
|
|
37
|
+
"whens": [
|
|
38
|
+
{
|
|
39
|
+
"name": "takeScreenshot: shot.png",
|
|
40
|
+
"error": false,
|
|
41
|
+
"artifacts": []
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"name": "ShowsTestResults: ",
|
|
45
|
+
"error": false,
|
|
46
|
+
"artifacts": []
|
|
47
|
+
}
|
|
48
|
+
],
|
|
49
|
+
"thens": [],
|
|
50
|
+
"error": null,
|
|
51
|
+
"features": [],
|
|
52
|
+
"artifacts": []
|
|
53
|
+
}
|
|
54
|
+
],
|
|
55
|
+
"fails": 0,
|
|
56
|
+
"features": []
|
|
57
|
+
}
|
package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/type_errors.txt
ADDED
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/jsx/dynamic.ts (4,39): Module '"testeranto/src/lib"' declares 'IPM' locally, but it is not exported.
|
|
2
|
+
/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/jsx/dynamic.ts (29,5): Type '(subject: HTMLElement, initializer: (c?: any) => unknown, testResource: import("/Users/adam/Code/testeranto/src/lib/index").ITTestResourceConfiguration, initialValues: any, pm: import("/Users/adam/Code/testeranto/src/lib/types").IPM) => Promise<...>' is not assignable to type '(subject: HTMLElement, initializer: (c?: any) => unknown, testResource: import("/Users/adam/Code/testeranto/src/lib/index").ITTestResourceConfiguration, initialValues: any, pm: import("/Users/adam/Code/testeranto/src/lib/types").IPM) => Promise<...>'. Two different types with this name exist, but they are unrelated.
|
|
3
|
+
Type 'Promise<unknown>' is not assignable to type 'Promise<HTMLElement>'.
|
|
4
|
+
Type 'unknown' is not assignable to type 'HTMLElement'.
|
|
5
|
+
/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/jsx/dynamic.ts (42,17): Property 'container' does not exist on type 'HTMLElement'. Did you mean 'contains'?
|
|
6
|
+
/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/jsx/dynamic.ts (43,15): Property 'domRoot' does not exist on type 'HTMLElement'.
|
|
7
|
+
/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/jsx/dynamic.ts (44,15): Property 'container' does not exist on type 'HTMLElement'. Did you mean 'contains'?
|
|
8
|
+
/Users/adam/Code/testeranto/src/components/pure/NavBar.tsx (87,21): Type '{ children: (Element | ReactNode)[]; 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 & { ...; }'.
|
|
9
|
+
Property 'to' does not exist on type 'IntrinsicAttributes & Omit<(Omit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & { ...; }) | (LinkProps & RefAttributes<...>), BsPrefixProps<...> & NavLinkProps> & BsPrefixProps<...> & NavLinkProps & { ...; }'.
|
|
10
|
+
/Users/adam/Code/testeranto/src/components/pure/TestPageView.test/implementation.ts (7,39): Module '"../../../lib"' declares 'IPM' locally, but it is not exported.
|
|
11
|
+
/Users/adam/Code/testeranto/src/components/pure/TestPageView.test/implementation.ts (29,20): Type '(props: IInput) => { summary: any; nodeLogs: any; webLogs: any; pureLogs: any; config: any; loading: boolean; error: string | null; projectName: string; activeTab: string; setActiveTab: (tab: string) => void; container: HTMLDivElement; reactElement: React.DetailedReactHTMLElement<...>; domRoot: ReactDom.Root; }' is not assignable to type '(props: IProjectPageViewProps) => ISelection'.
|
|
12
|
+
Property 'htmlElement' is missing in type '{ summary: any; nodeLogs: any; webLogs: any; pureLogs: any; config: any; loading: boolean; error: string | null; projectName: string; activeTab: string; setActiveTab: (tab: string) => void; container: HTMLDivElement; reactElement: React.DetailedReactHTMLElement<...>; domRoot: ReactDom.Root; }' but required in type 'ISelection'.
|
|
13
|
+
/Users/adam/Code/testeranto/src/components/pure/TestPageView.test/implementation.ts (34,48): No overload matches this call.
|
|
14
|
+
The last overload gave the following error.
|
|
15
|
+
Argument of type 'IProjectPageViewProps' is not assignable to parameter of type 'string | FunctionComponent<{}> | ComponentClass<{}, any>'.
|
|
16
|
+
/Users/adam/Code/testeranto/src/components/pure/TestPageView.test/implementation.ts (45,23): Type '(props: IInput) => { errorCounts: { runTimeErrors: number; typeErrors: number; staticErrors: number; }; summary: any; nodeLogs: any; webLogs: any; pureLogs: any; config: any; loading: boolean; ... 6 more ...; domRoot: ReactDom.Root; }' is not assignable to type '(props: IProjectPageViewProps) => ISelection'.
|
|
17
|
+
Property 'htmlElement' is missing in type '{ errorCounts: { runTimeErrors: number; typeErrors: number; staticErrors: number; }; summary: any; nodeLogs: any; webLogs: any; pureLogs: any; config: any; loading: boolean; error: string | null; ... 5 more ...; domRoot: ReactDom.Root; }' but required in type 'ISelection'.
|
|
18
|
+
/Users/adam/Code/testeranto/src/components/pure/TestPageView.test/implementation.ts (49,48): No overload matches this call.
|
|
19
|
+
The last overload gave the following error.
|
|
20
|
+
Argument of type 'IProjectPageViewProps' is not assignable to parameter of type 'string | FunctionComponent<{}> | ComponentClass<{}, any>'.
|
|
21
|
+
/Users/adam/Code/testeranto/src/components/pure/TestPageView.test/implementation.ts (65,21): Type '(props: IInput) => { logs: { 'tests.json': string; 'stdout.log': string; }; summary: any; nodeLogs: any; webLogs: any; pureLogs: any; config: any; loading: boolean; error: string | null; projectName: string; ... 4 more ...; domRoot: ReactDom.Root; }' is not assignable to type '(props: IProjectPageViewProps) => ISelection'.
|
|
22
|
+
Property 'htmlElement' is missing in type '{ logs: { 'tests.json': string; 'stdout.log': string; }; summary: any; nodeLogs: any; webLogs: any; pureLogs: any; config: any; loading: boolean; error: string | null; projectName: string; activeTab: string; setActiveTab: (tab: string) => void; container: HTMLDivElement; reactElement: React.DetailedReactHTMLElement<...' but required in type 'ISelection'.
|
|
23
|
+
/Users/adam/Code/testeranto/src/components/pure/TestPageView.test/implementation.ts (69,48): No overload matches this call.
|
|
24
|
+
The last overload gave the following error.
|
|
25
|
+
Argument of type 'IProjectPageViewProps' is not assignable to parameter of type 'string | FunctionComponent<{}> | ComponentClass<{}, any>'.
|
|
26
|
+
/Users/adam/Code/testeranto/src/components/pure/TestPageView.test/implementation.ts (87,5): Type '(tabName: string) => (selection: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => { reactElement: React.ReactElement<any, string | React.JSXElementConstructor<any>>; activeTab: string; htmlElement: HTMLElement; domRoot: ReactDom.Root; }>' is not assignable to type '(Iw_0: string) => (zel: ISelection, tr: ITTestResourceConfiguration, utils: PM) => Promise<(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<...>>'.
|
|
27
|
+
Call signature return types '(selection: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => { reactElement: ReactElement<any, string | JSXElementConstructor<...>>; activeTab: string; htmlElement: HTMLElement; domRoot: Root; }>' and '(zel: ISelection, tr: ITTestResourceConfiguration, utils: PM) => Promise<(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<...>>' are incompatible.
|
|
28
|
+
Type 'Promise<(sel: ISelection) => { reactElement: ReactElement<any, string | JSXElementConstructor<any>>; activeTab: string; htmlElement: HTMLElement; domRoot: Root; }>' is not assignable to type 'Promise<(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>>'.
|
|
29
|
+
Type '(sel: ISelection) => { reactElement: React.ReactElement<any, string | React.JSXElementConstructor<any>>; activeTab: string; htmlElement: HTMLElement; domRoot: ReactDom.Root; }' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
30
|
+
Type '{ reactElement: ReactElement<any, string | JSXElementConstructor<any>>; activeTab: string; htmlElement: HTMLElement; domRoot: Root; }' is missing the following properties from type 'Promise<(sel: ISelection) => ISelection>': then, catch, finally, [Symbol.toStringTag]
|
|
31
|
+
/Users/adam/Code/testeranto/src/components/pure/TestPageView.test/implementation.ts (98,29): Type '(selection: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>' is not assignable to type '(zel: ISelection, tr: ITTestResourceConfiguration, utils: PM) => Promise<(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<...>>'.
|
|
32
|
+
Type 'Promise<(sel: ISelection) => ISelection>' is not assignable to type 'Promise<(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>>'.
|
|
33
|
+
Type '(sel: ISelection) => ISelection' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
34
|
+
Type 'ISelection' is missing the following properties from type 'Promise<(sel: ISelection) => ISelection>': then, catch, finally, [Symbol.toStringTag]
|
|
35
|
+
/Users/adam/Code/testeranto/src/components/pure/TestPageView.test/implementation.ts (100,32): Property 'container' does not exist on type 'ISelection'.
|
|
36
|
+
/Users/adam/Code/testeranto/src/components/pure/TestPageView.test/implementation.ts (109,5): Type '(name: string) => (ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(It_0: string) => (ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<...>'.
|
|
37
|
+
Call signature return types '(ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' and '(ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>' are incompatible.
|
|
38
|
+
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
39
|
+
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' provides no match for the signature '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM): Promise<(sel: ISelection) => ISelection>'.
|
|
40
|
+
/Users/adam/Code/testeranto/src/components/pure/TestPageView.test/implementation.ts (113,26): Type '(ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
41
|
+
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
42
|
+
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' provides no match for the signature '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM): Promise<(sel: ISelection) => ISelection>'.
|
|
43
|
+
/Users/adam/Code/testeranto/src/components/pure/TestPageView.test/implementation.ts (114,26): Property 'container' does not exist on type 'ISelection'.
|
|
44
|
+
/Users/adam/Code/testeranto/src/components/pure/TestPageView.test/implementation.ts (118,5): Type '(tabName: string) => (ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(It_0: string) => (ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<...>'.
|
|
45
|
+
Call signature return types '(ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' and '(ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>' are incompatible.
|
|
46
|
+
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
47
|
+
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' provides no match for the signature '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM): Promise<(sel: ISelection) => ISelection>'.
|
|
48
|
+
/Users/adam/Code/testeranto/src/components/pure/TestPageView.test/implementation.ts (120,24): Property 'activeTab' does not exist on type 'ISelection'.
|
|
49
|
+
/Users/adam/Code/testeranto/src/components/pure/TestPageView.test/implementation.ts (123,29): Type '(ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
50
|
+
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
51
|
+
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' provides no match for the signature '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM): Promise<(sel: ISelection) => ISelection>'.
|
|
52
|
+
/Users/adam/Code/testeranto/src/components/pure/TestPageView.test/implementation.ts (125,26): Property 'container' does not exist on type 'ISelection'.
|
|
53
|
+
/Users/adam/Code/testeranto/src/components/pure/TestPageView.test/implementation.ts (129,29): Type '(ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
54
|
+
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
55
|
+
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' provides no match for the signature '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM): Promise<(sel: ISelection) => ISelection>'.
|
|
56
|
+
/Users/adam/Code/testeranto/src/components/pure/TestPageView.test/implementation.ts (131,15): Property 'testsExist' does not exist on type 'ISelection'.
|
|
57
|
+
/Users/adam/Code/testeranto/src/components/pure/TestPageView.test/implementation.ts (132,33): Property 'container' does not exist on type 'ISelection'.
|
|
58
|
+
/Users/adam/Code/testeranto/src/components/pure/TestPageView.test/implementation.ts (137,22): Type '(ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
59
|
+
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
60
|
+
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' provides no match for the signature '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM): Promise<(sel: ISelection) => ISelection>'.
|
|
61
|
+
/Users/adam/Code/testeranto/src/components/pure/TestPageView.test/implementation.ts (139,24): Property 'container' does not exist on type 'ISelection'.
|
|
62
|
+
/Users/adam/Code/testeranto/src/components/pure/TestPageView.test/implementation.ts (143,28): Type '(ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
63
|
+
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
64
|
+
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' provides no match for the signature '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM): Promise<(sel: ISelection) => ISelection>'.
|
|
65
|
+
/Users/adam/Code/testeranto/src/components/pure/TestPageView.test/implementation.ts (145,30): Property 'container' does not exist on type 'ISelection'.
|
|
66
|
+
/Users/adam/Code/testeranto/src/components/pure/TestPageView.test/implementation.ts (149,28): Type '(ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
67
|
+
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
68
|
+
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' provides no match for the signature '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM): Promise<(sel: ISelection) => ISelection>'.
|
|
69
|
+
/Users/adam/Code/testeranto/src/components/pure/TestPageView.test/implementation.ts (151,30): Property 'container' does not exist on type 'ISelection'.
|
|
70
|
+
/Users/adam/Code/testeranto/src/components/pure/TestPageView.test/implementation.ts (155,37): Type '(ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
71
|
+
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
72
|
+
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' provides no match for the signature '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM): Promise<(sel: ISelection) => ISelection>'.
|
|
73
|
+
/Users/adam/Code/testeranto/src/components/pure/TestPageView.test/implementation.ts (157,31): Property 'container' does not exist on type 'ISelection'.
|
|
74
|
+
/Users/adam/Code/testeranto/src/components/pure/TestPageView.test/index.tsx (18,3): Argument of type 'ITestSpecification<{ iinput: any; isubject: any; istore: ISelection; iselection: ISelection; given: any; when: any; then: any; }, O>' is not assignable to parameter of type 'ITestSpecification<I, O>'.
|
|
75
|
+
Types of parameters 'Suite' and 'Suite' are incompatible.
|
|
76
|
+
Type 'SuiteSpecification<I, O>' is not assignable to type 'SuiteSpecification<{ iinput: any; isubject: any; istore: ISelection; iselection: ISelection; given: any; when: any; then: any; }, O>'.
|
|
77
|
+
Types of property 'Default' are incompatible.
|
|
78
|
+
Type '(name: string, givens: IGivens<I>) => BaseSuite<I, O>' is not assignable to type '(name: string, givens: IGivens<{ iinput: any; isubject: any; istore: ISelection; iselection: ISelection; given: any; when: any; then: any; }>) => BaseSuite<{ iinput: any; ... 5 more ...; then: any; }, O>'.
|
|
79
|
+
Types of parameters 'givens' and 'givens' are incompatible.
|
|
80
|
+
Type 'IGivens<{ iinput: any; isubject: any; istore: ISelection; iselection: ISelection; given: any; when: any; then: any; }>' is not assignable to type 'IGivens<I>'.
|
|
81
|
+
Type '{ iinput: any; isubject: any; istore: ISelection; iselection: ISelection; given: any; when: any; then: any; }' is not assignable to type 'I'.
|
|
82
|
+
Types of property 'istore' are incompatible.
|
|
83
|
+
Type 'ISelection' is missing the following properties from type 'HTMLElement': accessKey, accessKeyLabel, autocapitalize, autocorrect, and 314 more.
|
|
84
|
+
/Users/adam/Code/testeranto/src/components/pure/TestPageView.tsx (64,13): 'node' is of type 'unknown'.
|
|
85
|
+
/Users/adam/Code/testeranto/src/components/pure/TestPageView.tsx (72,45): 'node' is of type 'unknown'.
|
|
86
|
+
/Users/adam/Code/testeranto/src/components/pure/TestPageView.tsx (1011,11): Type '{ testName: string; testsExist: boolean; runTimeErrors: number; typeErrors: number; staticErrors: number; variant: "compact"; className: string; }' is not assignable to type 'IntrinsicAttributes & TestStatusBadgeProps'.
|
|
87
|
+
Property 'className' does not exist on type 'IntrinsicAttributes & TestStatusBadgeProps'.
|
|
88
|
+
/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.
|
|
89
|
+
/Users/adam/Code/testeranto/src/lib/index.ts (42,12): This expression is not callable.
|
|
90
|
+
Type 'unknown' has no call signatures.
|
|
91
|
+
/Users/adam/Code/testeranto/src/lib/index.ts (50,12): This expression is not callable.
|
|
92
|
+
Type 'unknown' has no call signatures.
|
|
93
|
+
/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>'.
|
|
94
|
+
/Users/adam/Code/testeranto/src/lib/Tiposkripto.ts (263,15): Expected 1 arguments, but got 3.
|
|
95
|
+
/Users/adam/Code/testeranto/src/PM/web.ts (59,12): Property 'mainFrame' does not exist on type 'string | Page'.
|
|
96
|
+
Property 'mainFrame' does not exist on type 'string'.
|
|
97
|
+
/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 & { ...; }'.
|
|
98
|
+
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
|
|
99
|
+
/Users/adam/Code/testeranto/src/Web.ts (92,12): Cannot find name 'Testeranto'. Did you mean 'WebTesteranto'?
|
|
@@ -3,9 +3,10 @@
|
|
|
3
3
|
"givens": [
|
|
4
4
|
{
|
|
5
5
|
"key": "initialization",
|
|
6
|
-
"name":
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
"name": [
|
|
7
|
+
"BaseSuite should initialize with correct name and index"
|
|
8
|
+
],
|
|
9
|
+
"whens": [
|
|
9
10
|
{
|
|
10
11
|
"name": "SuiteNameMatches: testSuite",
|
|
11
12
|
"error": false,
|
|
@@ -17,15 +18,12 @@
|
|
|
17
18
|
"artifacts": []
|
|
18
19
|
}
|
|
19
20
|
],
|
|
21
|
+
"thens": [],
|
|
20
22
|
"error": null,
|
|
21
|
-
"features": [
|
|
22
|
-
"BaseSuite should initialize with correct name and index"
|
|
23
|
-
],
|
|
23
|
+
"features": [],
|
|
24
24
|
"artifacts": []
|
|
25
25
|
}
|
|
26
26
|
],
|
|
27
27
|
"fails": 0,
|
|
28
|
-
"features": [
|
|
29
|
-
"BaseSuite should initialize with correct name and index"
|
|
30
|
-
]
|
|
28
|
+
"features": []
|
|
31
29
|
}
|
|
@@ -1,13 +1,10 @@
|
|
|
1
|
-
/Users/adam/Code/testeranto/src/lib/
|
|
2
|
-
/Users/adam/Code/testeranto/src/lib/basebuilder.ts (76,49): Function lacks ending return statement and return type does not include 'undefined'.
|
|
3
|
-
/Users/adam/Code/testeranto/src/lib/basebuilder.ts (123,15): Expected 1 arguments, but got 3.
|
|
4
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/mock.ts (46,5): Type '{ testSelection: boolean; error?: boolean | Error | undefined; name?: string; index?: number; testStore: boolean; }' is not assignable to type 'TestStore'.
|
|
1
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/mock.ts (49,5): Type '{ testSelection: boolean; error?: boolean | Error | undefined; name?: string; index?: number; testStore: boolean; }' is not assignable to type 'TestStore'.
|
|
5
2
|
Types of property 'error' are incompatible.
|
|
6
3
|
Type 'boolean | Error | undefined' is not assignable to type 'Error | undefined'.
|
|
7
4
|
Type 'boolean' is not assignable to type 'Error'.
|
|
8
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/mock.ts (
|
|
5
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/mock.ts (85,13): Type 'Promise<{ testSelection: boolean; }>' is not assignable to type '(store: TestStore) => Promise<TestSelection>'.
|
|
9
6
|
Type 'Promise<{ testSelection: boolean; }>' provides no match for the signature '(store: TestStore): Promise<TestSelection>'.
|
|
10
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/mock.ts (
|
|
7
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/mock.ts (90,29): Cannot create an instance of an abstract class.
|
|
11
8
|
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (143,30): Argument of type 'Promise<unknown>' is not assignable to parameter of type 'string'.
|
|
12
9
|
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (150,15): Property 'specs' does not exist on type 'MockSuite'.
|
|
13
10
|
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (150,38): Property 'specs' does not exist on type 'MockSuite'.
|
|
@@ -45,17 +42,15 @@
|
|
|
45
42
|
Property 'testStore' is missing in type 'TestSelection' but required in type 'TestStore'.
|
|
46
43
|
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (415,3): Type '(store: I["istore"]) => I["istore"]' is not assignable to type '(store: TestStore, key: string, pm: IPM) => Promise<unknown>'.
|
|
47
44
|
Type 'TestStore' is missing the following properties from type 'Promise<unknown>': then, catch, finally, [Symbol.toStringTag]
|
|
48
|
-
/Users/adam/Code/testeranto/src/lib/
|
|
49
|
-
|
|
50
|
-
Types of property 'suites' are incompatible.
|
|
51
|
-
Type 'Record<string, any>' is not assignable to type 'Record<string, never>'.
|
|
52
|
-
'string' index signatures are incompatible.
|
|
53
|
-
Type 'any' is not assignable to type 'never'.
|
|
54
|
-
/Users/adam/Code/testeranto/src/lib/index.ts (36,12): This expression is not callable.
|
|
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.
|
|
55
47
|
Type 'unknown' has no call signatures.
|
|
56
|
-
/Users/adam/Code/testeranto/src/lib/index.ts (
|
|
48
|
+
/Users/adam/Code/testeranto/src/lib/index.ts (50,12): This expression is not callable.
|
|
57
49
|
Type 'unknown' has no call signatures.
|
|
58
|
-
/Users/adam/Code/testeranto/src/
|
|
59
|
-
|
|
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/Node.ts (34,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 & { ...; }'.
|
|
53
|
+
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
|
|
54
|
+
/Users/adam/Code/testeranto/src/Node.ts (56,12): Cannot find name 'Testeranto'.
|
|
60
55
|
/Users/adam/Code/testeranto/src/PM/web.ts (59,12): Property 'mainFrame' does not exist on type 'string | Page'.
|
|
61
56
|
Property 'mainFrame' does not exist on type 'string'.
|
|
@@ -1,13 +1,10 @@
|
|
|
1
|
-
/Users/adam/Code/testeranto/src/lib/
|
|
2
|
-
/Users/adam/Code/testeranto/src/lib/basebuilder.ts (76,49): Function lacks ending return statement and return type does not include 'undefined'.
|
|
3
|
-
/Users/adam/Code/testeranto/src/lib/basebuilder.ts (123,15): Expected 1 arguments, but got 3.
|
|
4
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/mock.ts (46,5): Type '{ testSelection: boolean; error?: boolean | Error | undefined; name?: string; index?: number; testStore: boolean; }' is not assignable to type 'TestStore'.
|
|
1
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/mock.ts (49,5): Type '{ testSelection: boolean; error?: boolean | Error | undefined; name?: string; index?: number; testStore: boolean; }' is not assignable to type 'TestStore'.
|
|
5
2
|
Types of property 'error' are incompatible.
|
|
6
3
|
Type 'boolean | Error | undefined' is not assignable to type 'Error | undefined'.
|
|
7
4
|
Type 'boolean' is not assignable to type 'Error'.
|
|
8
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/mock.ts (
|
|
5
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/mock.ts (85,13): Type 'Promise<{ testSelection: boolean; }>' is not assignable to type '(store: TestStore) => Promise<TestSelection>'.
|
|
9
6
|
Type 'Promise<{ testSelection: boolean; }>' provides no match for the signature '(store: TestStore): Promise<TestSelection>'.
|
|
10
|
-
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/mock.ts (
|
|
7
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/mock.ts (90,29): Cannot create an instance of an abstract class.
|
|
11
8
|
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (143,30): Argument of type 'Promise<unknown>' is not assignable to parameter of type 'string'.
|
|
12
9
|
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (150,15): Property 'specs' does not exist on type 'MockSuite'.
|
|
13
10
|
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (150,38): Property 'specs' does not exist on type 'MockSuite'.
|
|
@@ -45,17 +42,15 @@
|
|
|
45
42
|
Property 'testStore' is missing in type 'TestSelection' but required in type 'TestStore'.
|
|
46
43
|
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (415,3): Type '(store: I["istore"]) => I["istore"]' is not assignable to type '(store: TestStore, key: string, pm: IPM) => Promise<unknown>'.
|
|
47
44
|
Type 'TestStore' is missing the following properties from type 'Promise<unknown>': then, catch, finally, [Symbol.toStringTag]
|
|
48
|
-
/Users/adam/Code/testeranto/src/lib/
|
|
49
|
-
|
|
50
|
-
Types of property 'suites' are incompatible.
|
|
51
|
-
Type 'Record<string, any>' is not assignable to type 'Record<string, never>'.
|
|
52
|
-
'string' index signatures are incompatible.
|
|
53
|
-
Type 'any' is not assignable to type 'never'.
|
|
54
|
-
/Users/adam/Code/testeranto/src/lib/index.ts (36,12): This expression is not callable.
|
|
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.
|
|
55
47
|
Type 'unknown' has no call signatures.
|
|
56
|
-
/Users/adam/Code/testeranto/src/lib/index.ts (
|
|
48
|
+
/Users/adam/Code/testeranto/src/lib/index.ts (50,12): This expression is not callable.
|
|
57
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.
|
|
58
52
|
/Users/adam/Code/testeranto/src/PM/web.ts (59,12): Property 'mainFrame' does not exist on type 'string | Page'.
|
|
59
53
|
Property 'mainFrame' does not exist on type 'string'.
|
|
60
|
-
/Users/adam/Code/testeranto/src/Pure.ts (
|
|
61
|
-
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,
|
|
54
|
+
/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 & { ...; }'.
|
|
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/Pure.ts (83,21): Cannot find name 'Testeranto'.
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
|
|
2
|
+
/add src/lib/BaseSuite.test/web.test.ts
|
|
3
|
+
/add src/lib/BaseSuite.test/test.ts
|
|
4
|
+
/add src/lib/BaseSuite.test/mock.ts
|
|
5
|
+
|
|
6
|
+
/read node_modules/testeranto/docs/index.md
|
|
7
|
+
/read node_modules/testeranto/docs/style.md
|
|
8
|
+
/read node_modules/testeranto/docs/testing.ai.txt
|
|
9
|
+
/read node_modules/testeranto/src/CoreTypes.ts
|
|
10
|
+
|
|
11
|
+
/read testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/tests.json
|
|
12
|
+
/read testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/type_errors.txt
|
|
13
|
+
/read testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/lint_errors.txt
|
|
14
|
+
|
|
15
|
+
/read testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/tests.json testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/type_errors.txt testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/lint_errors.txt testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/exit.log testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/message.txt testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/prompt.txt testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/info.log testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/error.log testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/warn.log testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/debug.log
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "BaseSuite Core Functionality Tests",
|
|
3
|
+
"givens": [
|
|
4
|
+
{
|
|
5
|
+
"key": "initialization",
|
|
6
|
+
"name": [
|
|
7
|
+
"BaseSuite should initialize with correct name and index"
|
|
8
|
+
],
|
|
9
|
+
"whens": [
|
|
10
|
+
{
|
|
11
|
+
"name": "SuiteNameMatches: testSuite",
|
|
12
|
+
"error": false,
|
|
13
|
+
"artifacts": []
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"name": "SuiteIndexMatches: 0",
|
|
17
|
+
"error": false,
|
|
18
|
+
"artifacts": []
|
|
19
|
+
}
|
|
20
|
+
],
|
|
21
|
+
"thens": [],
|
|
22
|
+
"error": null,
|
|
23
|
+
"features": [],
|
|
24
|
+
"artifacts": []
|
|
25
|
+
}
|
|
26
|
+
],
|
|
27
|
+
"fails": 0,
|
|
28
|
+
"features": []
|
|
29
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/mock.ts (49,5): Type '{ testSelection: boolean; error?: boolean | Error | undefined; name?: string; index?: number; testStore: boolean; }' is not assignable to type 'TestStore'.
|
|
2
|
+
Types of property 'error' are incompatible.
|
|
3
|
+
Type 'boolean | Error | undefined' is not assignable to type 'Error | undefined'.
|
|
4
|
+
Type 'boolean' is not assignable to type 'Error'.
|
|
5
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/mock.ts (85,13): Type 'Promise<{ testSelection: boolean; }>' is not assignable to type '(store: TestStore) => Promise<TestSelection>'.
|
|
6
|
+
Type 'Promise<{ testSelection: boolean; }>' provides no match for the signature '(store: TestStore): Promise<TestSelection>'.
|
|
7
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/mock.ts (90,29): Cannot create an instance of an abstract class.
|
|
8
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (143,30): Argument of type 'Promise<unknown>' is not assignable to parameter of type 'string'.
|
|
9
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (150,15): Property 'specs' does not exist on type 'MockSuite'.
|
|
10
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (150,38): Property 'specs' does not exist on type 'MockSuite'.
|
|
11
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (157,15): Property 'testJobs' does not exist on type 'MockSuite'.
|
|
12
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (157,41): Property 'testJobs' does not exist on type 'MockSuite'.
|
|
13
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (163,7): Type '(suite: MockSuite) => Promise<MockSuite>' is not assignable to type '(zel: TestSelection, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: TestStore) => Promise<TestStore>>'.
|
|
14
|
+
Types of parameters 'suite' and 'zel' are incompatible.
|
|
15
|
+
Type 'TestSelection' is missing the following properties from type 'MockSuite': name, givens, store, testResourceConfiguration, and 11 more.
|
|
16
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (182,11): Type '() => void' is not assignable to type '((tLog: ITLog, callback: (p: Promise<void>) => void) => (fPath: string, value: string | Buffer<ArrayBufferLike> | PassThrough) => void) | ((tLog: ITLog, callback: (promise: Promise<...>) => void) => (fPath: string, value: any) => void) | ((tLog: ITLog, callback: (Promise: any) => void) => (fPath: any, value: string ...'.
|
|
17
|
+
Type '() => void' is not assignable to type '(tLog: ITLog, callback: (p: Promise<void>) => void) => (fPath: string, value: string | Buffer<ArrayBufferLike> | PassThrough) => void'.
|
|
18
|
+
Type 'void' is not assignable to type '(fPath: string, value: string | Buffer | PassThrough) => void'.
|
|
19
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (183,11): Type '() => void' is not assignable to type '((selector: string) => boolean) | ((selector: string) => boolean) | ((selector: string, page: string) => Promise<unknown>)'.
|
|
20
|
+
Type '() => void' is not assignable to type '(selector: string) => boolean'.
|
|
21
|
+
Type 'void' is not assignable to type 'boolean'.
|
|
22
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (185,11): Type '() => void' is not assignable to type '((p: any) => string) | ((p: any) => string) | ((p: any) => Promise<unknown>)'.
|
|
23
|
+
Type '() => void' is not assignable to type '(p: any) => string'.
|
|
24
|
+
Type 'void' is not assignable to type 'string'.
|
|
25
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (190,11): Argument of type 'null' is not assignable to parameter of type 'typeof BaseSuite'.
|
|
26
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (204,13): Argument of type 'null' is not assignable to parameter of type 'typeof BaseSuite'.
|
|
27
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (271,58): Type '(suite: MockSuite) => MockSuite' is not assignable to type '(ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
|
|
28
|
+
Types of parameters 'suite' and 'ssel' are incompatible.
|
|
29
|
+
Type 'TestSelection' is missing the following properties from type 'MockSuite': name, givens, store, testResourceConfiguration, and 11 more.
|
|
30
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (323,19): Property 'specs' does not exist on type 'MockSuite'.
|
|
31
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (332,19): Property 'testJobs' does not exist on type 'MockSuite'.
|
|
32
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (373,22): Property 'index' does not exist on type '() => Promise<TestStore>'.
|
|
33
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (376,19): Property 'store' does not exist on type '() => Promise<TestStore>'.
|
|
34
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (393,26): This expression is not callable.
|
|
35
|
+
Type 'Promise<TestStore>' has no call signatures.
|
|
36
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (393,33): Argument of type 'TestSelection' is not assignable to parameter of type 'TestStore'.
|
|
37
|
+
Property 'testStore' is missing in type 'TestSelection' but required in type 'TestStore'.
|
|
38
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (398,3): Type '(store: TestStore, thenCB: (s: TestSelection) => Promise<BaseSuite<any, any>>, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<TestSelection>' is not assignable to type '(store: TestStore, thenCB: (store: TestStore) => Promise<TestSelection>, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<...>'.
|
|
39
|
+
Types of parameters 'thenCB' and 'thenCB' are incompatible.
|
|
40
|
+
Type '(store: TestStore) => Promise<TestSelection>' is not assignable to type '(s: TestSelection) => Promise<BaseSuite<any, any>>'.
|
|
41
|
+
Types of parameters 'store' and 's' are incompatible.
|
|
42
|
+
Property 'testStore' is missing in type 'TestSelection' but required in type 'TestStore'.
|
|
43
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.test/test.ts (415,3): Type '(store: I["istore"]) => I["istore"]' is not assignable to type '(store: TestStore, key: string, pm: IPM) => Promise<unknown>'.
|
|
44
|
+
Type 'TestStore' is missing the following properties from type 'Promise<unknown>': then, catch, finally, [Symbol.toStringTag]
|
|
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'?
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
255
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
|
|
2
|
+
There are 3 types of test reports.
|
|
3
|
+
1) bdd (highest priority)
|
|
4
|
+
2) type checker
|
|
5
|
+
3) static analysis (lowest priority)
|
|
6
|
+
|
|
7
|
+
"tests.json" is the detailed result of the bdd tests.
|
|
8
|
+
if these files do not exist, then something has gone badly wrong and needs to be addressed.
|
|
9
|
+
|
|
10
|
+
"type_errors.txt" is the result of the type checker.
|
|
11
|
+
if this file does not exist, then type check passed without errors;
|
|
12
|
+
|
|
13
|
+
"lint_errors.txt" is the result of the static analysis.
|
|
14
|
+
if this file does not exist, then static analysis passed without errors;
|
|
15
|
+
|
|
16
|
+
BDD failures are the highest priority. Focus on passing BDD tests before addressing other concerns.
|
|
17
|
+
Do not add error throwing/catching to the tests themselves.
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
|
|
2
|
+
/add src/lib/TipoSkripto.test/MockTiposkripto.ts
|
|
3
|
+
/add src/lib/TipoSkripto.test/Tiposkripto.adapter.ts
|
|
4
|
+
/add src/lib/TipoSkripto.test/Tiposkripto.implementation.ts
|
|
5
|
+
/add src/lib/TipoSkripto.test/Tiposkripto.specification.ts
|
|
6
|
+
/add src/lib/TipoSkripto.test/TipoSkripto.ts
|
|
7
|
+
|
|
8
|
+
/read node_modules/testeranto/docs/index.md
|
|
9
|
+
/read node_modules/testeranto/docs/style.md
|
|
10
|
+
/read node_modules/testeranto/docs/testing.ai.txt
|
|
11
|
+
/read node_modules/testeranto/src/CoreTypes.ts
|
|
12
|
+
|
|
13
|
+
/read testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/tests.json
|
|
14
|
+
/read testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/type_errors.txt
|
|
15
|
+
/read testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/lint_errors.txt
|
|
16
|
+
|
|
17
|
+
/read testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/tests.json testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/type_errors.txt testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/lint_errors.txt testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/exit.log testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/message.txt testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/prompt.txt testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/stdout.log testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/stderr.log
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
TypeError: Then.initializedProperly is not a function
|
|
2
|
+
at specification (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/src/lib/TipoSkripto.test/TipoSkripto.mjs:286:15)
|
|
3
|
+
at new Tiposkripto (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:930:18)
|
|
4
|
+
at new NodeTesteranto (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:1022:5)
|
|
5
|
+
at testeranto (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:1040:15)
|
|
6
|
+
at file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/src/lib/TipoSkripto.test/TipoSkripto.mjs:374:27
|
|
7
|
+
at ModuleJob.run (node:internal/modules/esm/module_job:263:25)
|
|
8
|
+
at async ModuleLoader.import (node:internal/modules/esm/loader:540:24)
|
|
9
|
+
at async asyncRunEntryPointWithESMLoader (node:internal/modules/run_main:117:5)
|
|
10
|
+
TypeError: Then.initializedProperly is not a function
|
|
11
|
+
at specification (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/src/lib/TipoSkripto.test/TipoSkripto.mjs:286:15)
|
|
12
|
+
at new Tiposkripto (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:930:18)
|
|
13
|
+
at new NodeTesteranto (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:1022:5)
|
|
14
|
+
at testeranto (file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/chunk-SQHAK5YB.mjs:1040:15)
|
|
15
|
+
at file:///Users/adam/Code/testeranto/testeranto/bundles/node/core/src/lib/TipoSkripto.test/TipoSkripto.mjs:374:27
|
|
16
|
+
at ModuleJob.run (node:internal/modules/esm/module_job:263:25)
|
|
17
|
+
at async ModuleLoader.import (node:internal/modules/esm/loader:540:24)
|
|
18
|
+
at async asyncRunEntryPointWithESMLoader (node:internal/modules/run_main:117:5)
|