testeranto 0.202.0 → 0.203.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/README.md +23 -0
- package/UX/chache/index.md +11 -0
- package/dist/prebuild/App.css +78 -0
- package/dist/prebuild/App.js +4828 -2814
- package/dist/prebuild/testeranto.mjs +2650 -1037
- package/example/Calculator.go +63 -0
- package/example/Calculator.golingvu.adapter.go +81 -0
- package/example/Calculator.golingvu.go +67 -0
- package/example/Calculator.golingvu.implementation.go +95 -0
- package/example/Calculator.golingvu.specification.go +68 -0
- package/example/Calculator.pitono.adapter.py +68 -0
- package/example/Calculator.pitono.implementation.py +30 -0
- package/example/Calculator.pitono.specification.py +154 -0
- package/example/Calculator.pitono.test.py +47 -0
- package/example/Calculator.py +93 -0
- package/example/Calculator.test.adapter.ts +86 -0
- package/example/Calculator.test.implementation.ts +82 -0
- package/example/Calculator.test.specification.ts +213 -0
- package/example/Calculator.test.ts +13 -0
- package/example/Calculator.test.types.ts +50 -0
- package/example/Calculator.ts +130 -0
- package/example/README.md +1 -0
- package/example/base_suite_test.go +51 -0
- package/example/cmd/main.go +16 -0
- package/example/go.mod +9 -0
- package/example/main +0 -0
- package/example/test_example.py +143 -74
- package/{testeranto → example/testeranto}/bundles/golang/core/Calculator.golingvu.go +1 -1
- package/example/testeranto/metafiles/golang/core.json +198 -0
- package/go.mod +3 -1
- package/golingvu.tmp.txt +68 -0
- package/log.txt +85 -0
- package/package.json +50 -41
- package/scripts/build-example.ts +245 -0
- package/src/App.tsx +94 -44
- package/src/Helpo.tsx +89 -0
- package/src/PM/PM_WithBuild.ts +32 -20
- package/src/PM/PM_WithGit.ts +60 -13
- package/src/PM/PM_WithHelpo.ts +341 -0
- package/src/PM/PM_WithProcesses.ts +484 -223
- package/src/PM/PM_WithWebSocket.ts +210 -2
- package/src/PM/golingvuBuild.ts +56 -0
- package/src/PM/main.ts +570 -438
- package/src/PM/pitonoBuild.ts +56 -0
- package/src/PM/utils.ts +7 -1
- package/src/app.scss +102 -0
- package/src/components/pure/AppFrame.tsx +259 -149
- package/src/components/pure/GitIntegrationView.tsx +527 -238
- package/src/components/pure/HelpoChatDrawer.tsx +222 -0
- package/src/components/pure/MagicRobotModal.tsx +136 -0
- package/src/components/pure/ProcessDetails.tsx +99 -0
- package/src/components/pure/ProcessInput.tsx +67 -0
- package/src/components/pure/ProcessList.tsx +89 -0
- package/src/components/pure/ProcessLogs.tsx +54 -0
- package/src/components/pure/ProcessManager.tsx +37 -46
- package/src/components/pure/ProcessManagerView.tsx +42 -367
- package/src/components/pure/ProcessManagerViewTypes.ts +10 -0
- package/src/components/pure/ProcessSidebar.tsx +88 -0
- package/src/components/pure/ProcessTerminal.tsx +51 -0
- package/src/components/pure/SingleProcessView.tsx +140 -231
- package/src/components/pure/TerminalInput.tsx +73 -0
- package/src/components/pure/TerminalLogs.tsx +80 -0
- package/src/components/pure/TestPageView.tsx +21 -116
- package/src/components/pure/TestPageView_utils.tsx +2 -0
- package/src/components/stateful/DratoPage.tsx +457 -0
- package/src/components/stateful/GenericXMLEditor/AttributeEditor.tsx +87 -0
- package/src/components/stateful/GenericXMLEditor/Drawer.tsx +174 -0
- package/src/components/stateful/GenericXMLEditor/GenericPreview.tsx +160 -0
- package/src/components/stateful/GenericXMLEditor/GenericTextEditor.tsx +104 -0
- package/src/components/stateful/GenericXMLEditor/GenericTree.tsx +104 -0
- package/src/components/stateful/GenericXMLEditorPage.tsx +346 -0
- package/src/components/stateful/GitIntegrationPage.tsx +258 -3
- package/src/components/stateful/GrafeoPage.tsx +563 -0
- package/src/components/stateful/SVGEditor/SVGAttributesEditor.tsx +26 -8
- package/src/components/stateful/SVGEditor/SVGPreview.tsx +4 -2
- package/src/components/stateful/SVGEditorPage.tsx +195 -181
- package/src/components/stateful/SingleProcessPage.tsx +133 -131
- package/src/components/stateful/SkriboPage.tsx +765 -0
- package/src/components/stateful/TestPage.tsx +3 -2
- package/src/esbuildConfigs/node.ts +1 -1
- package/src/example/go.mod +9 -0
- package/src/example/main.go +61 -0
- package/src/golingvu/PM/golang_test.go +103 -0
- package/src/golingvu/README.md +186 -2
- package/src/golingvu/base_given.go +89 -2
- package/src/golingvu/base_suite.go +48 -2
- package/src/golingvu/go.mod +6 -0
- package/src/golingvu/golingvu.go +703 -29
- package/src/golingvu/types.go +0 -14
- package/src/helpo/directives.md +5 -0
- package/src/helpo/prompt.txt +38 -0
- package/src/hooks/useTerminalWebSocket.ts +49 -0
- package/src/lib/BaseGiven.ts +126 -28
- package/src/lib/BaseSuite.test/test.ts +97 -180
- package/src/lib/BaseSuite.ts +52 -10
- package/src/lib/BaseThen.ts +34 -38
- package/src/lib/BaseWhen.ts +9 -2
- package/src/lib/Tiposkripto.test/Tiposkripto.specification.ts +9 -8
- package/src/lib/Tiposkripto.ts +41 -11
- package/src/lib/pmProxy.ts +55 -18
- package/src/pitono/PM/python.py +165 -0
- package/src/pitono/Pitono.py +298 -0
- package/src/pitono/PitonoTest.py +25 -0
- package/src/pitono/README.md +21 -0
- package/src/pitono/__init__.py +6 -0
- package/{pitono → src/pitono}/base_given.py +42 -20
- package/{pitono → src/pitono}/base_suite.py +55 -2
- package/{pitono → src/pitono}/base_then.py +15 -1
- package/{pitono → src/pitono}/base_when.py +15 -1
- package/{pitono → src/pitono}/pitono.egg-info/PKG-INFO +25 -0
- package/{pitono → src/pitono}/pitono.egg-info/SOURCES.txt +1 -0
- package/src/pitono/types.py +87 -0
- package/src/services/FileService.ts +146 -11
- package/src/testeranto.ts +115 -149
- package/src/utils/golingvuMetafile.ts +822 -118
- package/src/utils/golingvuWatcher.ts +285 -0
- package/src/utils/logFiles.ts +10 -2
- package/src/utils/makePrompt.ts +12 -1
- package/src/utils/pitonoMetafile.ts +326 -54
- package/src/utils/pitonoWatcher.ts +157 -0
- package/testeranto/App.css +78 -0
- package/testeranto/App.js +4828 -2814
- package/testeranto/bundles/node/core/{chunk-RIM6RECA.mjs → chunk-MJTSYIAQ.mjs} +179 -250
- package/testeranto/bundles/node/core/src/lib/BaseSuite.test/node.test.mjs +110 -62
- package/testeranto/bundles/node/core/src/lib/TipoSkripto.test/TipoSkripto.mjs +135 -137
- package/testeranto/bundles/node/core/src/lib/pmProxy.test/index.mjs +4317 -4
- package/testeranto/bundles/pure/core/{chunk-XYOCRDEQ.mjs → chunk-6HR24P27.mjs} +96 -173
- package/testeranto/bundles/pure/core/src/Pure.test.mjs +1 -1
- package/testeranto/bundles/pure/core/src/lib/BaseSuite.test/pure.test.mjs +110 -62
- package/testeranto/bundles/web/core/{chunk-JMDLMADH.mjs → chunk-AZZHJNSU.mjs} +2473 -191
- package/testeranto/bundles/web/core/{chunk-LQMU5NCG.mjs → chunk-ME6I6FJZ.mjs} +96 -173
- package/testeranto/bundles/web/core/src/components/pure/FeaturesReporterView.test/index.html +15 -0
- package/testeranto/bundles/web/core/src/components/pure/FeaturesReporterView.test/index.mjs +3 -5
- package/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.css +0 -78
- package/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.html +15 -0
- package/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs +6476 -69
- package/testeranto/bundles/web/core/src/lib/BaseSuite.test/web.test.html +15 -0
- package/testeranto/bundles/web/core/src/lib/BaseSuite.test/web.test.mjs +110 -62
- package/testeranto/helpo_chat_history.json +1 -0
- package/testeranto/metafiles/golang/core.json +42 -47
- package/testeranto/metafiles/node/core.json +263 -247
- package/testeranto/metafiles/pure/core.json +23 -38
- package/testeranto/metafiles/python/core.json +85 -9
- package/testeranto/metafiles/web/core.json +966 -460
- package/testeranto/reports/core/config.json +30 -6
- package/testeranto/reports/core/example/Calculator.golingvu/golang/exit.log +1 -0
- package/testeranto/reports/core/example/Calculator.golingvu/golang/stderr.log +2 -0
- package/testeranto/reports/core/example/Calculator.golingvu/golang/stdout.log +1 -0
- package/testeranto/reports/core/example/Calculator.pitono.test/python/exit.log +1 -0
- package/testeranto/reports/core/example/Calculator.pitono.test/python/stderr.log +11 -0
- package/testeranto/reports/core/example/Calculator.pitono.test/python/stdout.log +1 -0
- package/testeranto/reports/core/example/Calculator.test/node/exit.log +1 -0
- package/testeranto/reports/core/example/Calculator.test/node/lint_errors.txt +2 -0
- package/testeranto/reports/core/example/Calculator.test/node/message.txt +16 -0
- package/testeranto/reports/core/example/Calculator.test/node/prompt.txt +13 -0
- package/testeranto/reports/core/example/Calculator.test/node/stderr.log +33 -0
- package/testeranto/reports/core/example/Calculator.test/node/stdout.log +1076 -0
- package/testeranto/reports/core/example/Calculator.test/node/tests.json +1109 -0
- package/testeranto/reports/core/example/Calculator.test/node/type_errors.txt +34 -0
- package/testeranto/reports/core/example/test_example/python/exit.log +1 -0
- package/testeranto/reports/core/example/test_example/python/stderr.log +24 -0
- package/testeranto/reports/core/src/Pure.test/pure/message.txt +1 -2
- package/testeranto/reports/core/src/Pure.test/pure/prompt.txt +4 -5
- package/testeranto/reports/core/src/Pure.test/pure/type_errors.txt +16 -3
- package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/error.log +0 -91
- package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/exit.log +0 -1
- package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/info.log +0 -2
- package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/message.txt +17 -0
- package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/prompt.txt +26 -0
- package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/type_errors.txt +69 -0
- package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/lint_errors.txt +16 -0
- package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/message.txt +17 -0
- package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/prompt.txt +27 -0
- package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/type_errors.txt +42 -0
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/error.log +0 -30
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/exit.log +0 -1
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/info.log +0 -2
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/lint_errors.txt +30 -0
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/message.txt +17 -0
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/prompt.txt +30 -0
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/type_errors.txt +58 -0
- package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/exit.log +1 -1
- package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/prompt.txt +9 -1
- package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/stderr.log +1 -0
- package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/stdout.log +4 -1
- package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/tests.json +98 -7
- package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/type_errors.txt +44 -28
- package/testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/message.txt +1 -2
- package/testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/prompt.txt +4 -6
- package/testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/type_errors.txt +44 -28
- package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/error.log +0 -1
- package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/exit.log +0 -1
- package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/message.txt +17 -0
- package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/prompt.txt +25 -0
- package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/type_errors.txt +69 -0
- package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/exit.log +1 -1
- package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/message.txt +1 -2
- package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/prompt.txt +4 -8
- package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/stderr.log +68 -35
- package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/stdout.log +336 -6
- package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/tests.json +166 -0
- package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/type_errors.txt +20 -13
- package/testeranto/reports/core/src/lib/pmProxy.test/index/node/exit.log +1 -1
- package/testeranto/reports/core/src/lib/pmProxy.test/index/node/prompt.txt +9 -1
- package/testeranto/reports/core/src/lib/pmProxy.test/index/node/stderr.log +0 -20
- package/testeranto/reports/core/src/lib/pmProxy.test/index/node/stdout.log +1 -3
- package/testeranto/reports/core/src/lib/pmProxy.test/index/node/tests.json +31 -0
- package/testeranto/reports/core/src/lib/pmProxy.test/index/node/type_errors.txt +16 -3
- package/testeranto/reports/core/summary.json +46 -19
- package/testeranto.config.ts +18 -30
- package/dist/cjs-shim.js +0 -12
- package/dist/common/design-editor/DesignEditor.js +0 -77
- package/dist/common/design-editor/index.js +0 -18
- package/dist/common/design-editor/server.js +0 -98
- package/dist/common/design-editor/types.js +0 -2
- package/dist/common/package.json +0 -3
- package/dist/common/src/App.js +0 -219
- package/dist/common/src/CoreTypes.js +0 -2
- package/dist/common/src/Init.js +0 -48
- package/dist/common/src/Node.js +0 -40
- package/dist/common/src/NodeSidecar.js +0 -15
- package/dist/common/src/PM/PM_WithBuild.js +0 -135
- package/dist/common/src/PM/PM_WithEslintAndTsc.js +0 -204
- package/dist/common/src/PM/PM_WithGit.js +0 -517
- package/dist/common/src/PM/PM_WithProcesses.js +0 -519
- package/dist/common/src/PM/PM_WithWebSocket.js +0 -535
- package/dist/common/src/PM/__tests__/nodeSidecar.testeranto.js +0 -108
- package/dist/common/src/PM/__tests__/pureSidecar.testeranto.js +0 -93
- package/dist/common/src/PM/__tests__/webSidecar.testeranto.js +0 -93
- package/dist/common/src/PM/base.js +0 -319
- package/dist/common/src/PM/index.js +0 -6
- package/dist/common/src/PM/main.js +0 -672
- package/dist/common/src/PM/metafileOutputs.js +0 -78
- package/dist/common/src/PM/node.js +0 -179
- package/dist/common/src/PM/nodeSidecar.js +0 -65
- package/dist/common/src/PM/pitonoRunner.js +0 -54
- package/dist/common/src/PM/pure.js +0 -103
- package/dist/common/src/PM/pureSidecar.js +0 -48
- package/dist/common/src/PM/sidecar.js +0 -11
- package/dist/common/src/PM/types.js +0 -2
- package/dist/common/src/PM/utils.js +0 -210
- package/dist/common/src/PM/web.js +0 -106
- package/dist/common/src/PM/webSidecar.js +0 -47
- package/dist/common/src/Pure.js +0 -52
- package/dist/common/src/Pure.test.js +0 -180
- package/dist/common/src/PureSidecar.js +0 -13
- package/dist/common/src/ReportServer.js +0 -1
- package/dist/common/src/ReportServer.test.ts/index.js +0 -78
- package/dist/common/src/ReportServerLib.js +0 -1
- package/dist/common/src/Types.js +0 -2
- package/dist/common/src/Web.js +0 -61
- package/dist/common/src/WebSidecar.js +0 -14
- package/dist/common/src/components/DesignEditorPage.js +0 -205
- package/dist/common/src/components/SunriseAnimation.js +0 -291
- package/dist/common/src/components/SunriseAnimation.test/implementation.js +0 -1
- package/dist/common/src/components/SunriseAnimation.test/index.js +0 -1
- package/dist/common/src/components/SunriseAnimation.test/interface.js +0 -68
- package/dist/common/src/components/SunriseAnimation.test/specification.js +0 -1
- package/dist/common/src/components/SunriseAnimation.test/types.js +0 -2
- package/dist/common/src/components/TestStatusBadge.js +0 -35
- package/dist/common/src/components/pure/AppFrame.js +0 -81
- package/dist/common/src/components/pure/AppFrame.test/implementation.js +0 -63
- package/dist/common/src/components/pure/AppFrame.test/index.js +0 -14
- package/dist/common/src/components/pure/AppFrame.test/specification.js +0 -25
- package/dist/common/src/components/pure/AppFrame.test/types.js +0 -3
- package/dist/common/src/components/pure/ArtifactTree.js +0 -80
- package/dist/common/src/components/pure/BuildLogViewer.js +0 -106
- package/dist/common/src/components/pure/DebugEnv.js +0 -30
- package/dist/common/src/components/pure/FeaturesReporterView.js +0 -23
- package/dist/common/src/components/pure/FeaturesReporterView.test/implementation.js +0 -84
- package/dist/common/src/components/pure/FeaturesReporterView.test/index.js +0 -14
- package/dist/common/src/components/pure/FeaturesReporterView.test/specification.js +0 -27
- package/dist/common/src/components/pure/FeaturesReporterView.test/types.js +0 -2
- package/dist/common/src/components/pure/FileTree.js +0 -34
- package/dist/common/src/components/pure/FileTreeItem.js +0 -29
- package/dist/common/src/components/pure/GitHubLoginButton.js +0 -18
- package/dist/common/src/components/pure/GitIntegrationView.js +0 -342
- package/dist/common/src/components/pure/ModalContent.js +0 -86
- package/dist/common/src/components/pure/ModalContent.test/implementation.js +0 -35
- package/dist/common/src/components/pure/ModalContent.test/index.js +0 -58
- package/dist/common/src/components/pure/ModalContent.test/specification.js +0 -19
- package/dist/common/src/components/pure/ModalContent.test/types.js +0 -4
- package/dist/common/src/components/pure/NavBar.js +0 -44
- package/dist/common/src/components/pure/ProcessManager.js +0 -113
- package/dist/common/src/components/pure/ProcessManagerView.js +0 -236
- package/dist/common/src/components/pure/ProjectPageView.js +0 -68
- package/dist/common/src/components/pure/ProjectPageView.test/implementation.js +0 -184
- package/dist/common/src/components/pure/ProjectPageView.test/index.js +0 -14
- package/dist/common/src/components/pure/ProjectPageView.test/specification.js +0 -32
- package/dist/common/src/components/pure/ProjectPageView.test/types.js +0 -4
- package/dist/common/src/components/pure/ProjectsPageView.js +0 -72
- package/dist/common/src/components/pure/Settings.js +0 -121
- package/dist/common/src/components/pure/Settings.test.js +0 -34
- package/dist/common/src/components/pure/SettingsButton.js +0 -13
- package/dist/common/src/components/pure/SignIn.js +0 -22
- package/dist/common/src/components/pure/SingleProcessView.js +0 -167
- package/dist/common/src/components/pure/TestPageView.js +0 -373
- package/dist/common/src/components/pure/TestPageView.test/implementation.js +0 -157
- package/dist/common/src/components/pure/TestPageView.test/index.js +0 -15
- package/dist/common/src/components/pure/TestPageView.test/specification.js +0 -26
- package/dist/common/src/components/pure/TestPageView.test/types.js +0 -4
- package/dist/common/src/components/pure/TestPageView_utils.js +0 -117
- package/dist/common/src/components/pure/TestTable.js +0 -33
- package/dist/common/src/components/pure/ThemeCard.js +0 -15
- package/dist/common/src/components/pure/ToastNotification.js +0 -14
- package/dist/common/src/components/pure/UserProfile.js +0 -27
- package/dist/common/src/components/stateful/AuthCallbackPage.js +0 -51
- package/dist/common/src/components/stateful/FeaturesReporter.js +0 -60
- package/dist/common/src/components/stateful/FileTree.js +0 -59
- package/dist/common/src/components/stateful/GitIntegrationPage.js +0 -12
- package/dist/common/src/components/stateful/ProcessManagerPage.js +0 -110
- package/dist/common/src/components/stateful/ProjectPage.js +0 -102
- package/dist/common/src/components/stateful/ProjectsPage.js +0 -116
- package/dist/common/src/components/stateful/SettingsPage.js +0 -72
- package/dist/common/src/components/stateful/SingleProcessPage.js +0 -137
- package/dist/common/src/components/stateful/TestPage.js +0 -270
- package/dist/common/src/components/stateful/TextEditorPage.js +0 -154
- package/dist/common/src/defaultConfig.js +0 -19
- package/dist/common/src/esbuildConfigs/consoleDetectorPlugin.js +0 -38
- package/dist/common/src/esbuildConfigs/eslint-formatter-testeranto.js +0 -21
- package/dist/common/src/esbuildConfigs/featuresPlugin.js +0 -39
- package/dist/common/src/esbuildConfigs/index.js +0 -21
- package/dist/common/src/esbuildConfigs/inputFilesPlugin.js +0 -30
- package/dist/common/src/esbuildConfigs/nativeImportDetectorPlugin.js +0 -24
- package/dist/common/src/esbuildConfigs/node.js +0 -24
- package/dist/common/src/esbuildConfigs/pure.js +0 -42
- package/dist/common/src/esbuildConfigs/rebuildPlugin.js +0 -19
- package/dist/common/src/esbuildConfigs/web.js +0 -48
- package/dist/common/src/hooks/useGitMode.js +0 -21
- package/dist/common/src/init-docs.js +0 -9
- package/dist/common/src/lib/BaseGiven.js +0 -99
- package/dist/common/src/lib/BaseSuite.js +0 -91
- package/dist/common/src/lib/BaseSuite.test/mock.js +0 -68
- package/dist/common/src/lib/BaseSuite.test/node.test.js +0 -10
- package/dist/common/src/lib/BaseSuite.test/pure.test.js +0 -10
- package/dist/common/src/lib/BaseSuite.test/test.js +0 -229
- package/dist/common/src/lib/BaseSuite.test/web.test.js +0 -10
- package/dist/common/src/lib/BaseThen.js +0 -64
- package/dist/common/src/lib/BaseWhen.js +0 -45
- package/dist/common/src/lib/Sidecar.js +0 -7
- package/dist/common/src/lib/Tiposkripto.js +0 -173
- package/dist/common/src/lib/Tiposkripto.test/MockTiposkripto.js +0 -180
- package/dist/common/src/lib/Tiposkripto.test/Tiposkripto.adapter.js +0 -29
- package/dist/common/src/lib/Tiposkripto.test/Tiposkripto.implementation.js +0 -213
- package/dist/common/src/lib/Tiposkripto.test/Tiposkripto.js +0 -11
- package/dist/common/src/lib/Tiposkripto.test/Tiposkripto.specification.js +0 -50
- package/dist/common/src/lib/Tiposkripto.test/Tiposkripto.types.js +0 -2
- package/dist/common/src/lib/abstractBase.test/MockGiven.js +0 -24
- package/dist/common/src/lib/abstractBase.test/MockThen.js +0 -16
- package/dist/common/src/lib/abstractBase.test/MockWhen.js +0 -20
- package/dist/common/src/lib/abstractBase.test/adapter.js +0 -24
- package/dist/common/src/lib/abstractBase.test/implementation.js +0 -38
- package/dist/common/src/lib/abstractBase.test/index.js +0 -18
- package/dist/common/src/lib/abstractBase.test/specification.js +0 -19
- package/dist/common/src/lib/abstractBase.test/types.js +0 -2
- package/dist/common/src/lib/index.js +0 -31
- package/dist/common/src/lib/pmProxy.js +0 -293
- package/dist/common/src/lib/pmProxy.test/adapter.js +0 -54
- package/dist/common/src/lib/pmProxy.test/implementation.js +0 -137
- package/dist/common/src/lib/pmProxy.test/index.js +0 -15
- package/dist/common/src/lib/pmProxy.test/mockPM.js +0 -34
- package/dist/common/src/lib/pmProxy.test/mockPMBase.js +0 -131
- package/dist/common/src/lib/pmProxy.test/specification.js +0 -179
- package/dist/common/src/lib/pmProxy.test/types.js +0 -2
- package/dist/common/src/lib/types.js +0 -3
- package/dist/common/src/mothership/index.js +0 -21
- package/dist/common/src/mothership/test.js +0 -83
- package/dist/common/src/run.js +0 -49
- package/dist/common/src/services/FileService.js +0 -505
- package/dist/common/src/services/GitHubAuthService.js +0 -184
- package/dist/common/src/testeranto.js +0 -224
- package/dist/common/src/types/features.js +0 -34
- package/dist/common/src/utils/api.js +0 -93
- package/dist/common/src/utils/buildTemplates.js +0 -37
- package/dist/common/src/utils/featureUtils.js +0 -29
- package/dist/common/src/utils/gitTest.js +0 -27
- package/dist/common/src/utils/golingvuMetafile.js +0 -116
- package/dist/common/src/utils/logFiles.js +0 -52
- package/dist/common/src/utils/makePrompt.js +0 -116
- package/dist/common/src/utils/pitonoMetafile.js +0 -67
- package/dist/common/src/utils/queue.js +0 -36
- package/dist/common/src/utils.js +0 -143
- package/dist/common/src/web.html.js +0 -18
- package/dist/common/testeranto.config.js +0 -102
- package/dist/common/tsconfig.common.tsbuildinfo +0 -1
- package/dist/module/design-editor/DesignEditor.js +0 -40
- package/dist/module/design-editor/index.js +0 -2
- package/dist/module/design-editor/server.js +0 -92
- package/dist/module/design-editor/types.js +0 -1
- package/dist/module/package.json +0 -3
- package/dist/module/src/App.js +0 -176
- package/dist/module/src/CoreTypes.js +0 -1
- package/dist/module/src/Init.js +0 -43
- package/dist/module/src/Node.js +0 -33
- package/dist/module/src/NodeSidecar.js +0 -11
- package/dist/module/src/PM/PM_WithBuild.js +0 -128
- package/dist/module/src/PM/PM_WithEslintAndTsc.js +0 -197
- package/dist/module/src/PM/PM_WithGit.js +0 -477
- package/dist/module/src/PM/PM_WithProcesses.js +0 -479
- package/dist/module/src/PM/PM_WithWebSocket.js +0 -528
- package/dist/module/src/PM/__tests__/nodeSidecar.testeranto.js +0 -103
- package/dist/module/src/PM/__tests__/pureSidecar.testeranto.js +0 -88
- package/dist/module/src/PM/__tests__/webSidecar.testeranto.js +0 -88
- package/dist/module/src/PM/base.js +0 -312
- package/dist/module/src/PM/index.js +0 -2
- package/dist/module/src/PM/main.js +0 -632
- package/dist/module/src/PM/metafileOutputs.js +0 -78
- package/dist/module/src/PM/node.js +0 -172
- package/dist/module/src/PM/nodeSidecar.js +0 -58
- package/dist/module/src/PM/pitonoRunner.js +0 -47
- package/dist/module/src/PM/pure.js +0 -99
- package/dist/module/src/PM/pureSidecar.js +0 -41
- package/dist/module/src/PM/sidecar.js +0 -7
- package/dist/module/src/PM/types.js +0 -1
- package/dist/module/src/PM/utils.js +0 -196
- package/dist/module/src/PM/web.js +0 -102
- package/dist/module/src/PM/webSidecar.js +0 -40
- package/dist/module/src/Pure.js +0 -45
- package/dist/module/src/Pure.test.js +0 -175
- package/dist/module/src/PureSidecar.js +0 -9
- package/dist/module/src/ReportServer.js +0 -1
- package/dist/module/src/ReportServer.test.ts/index.js +0 -73
- package/dist/module/src/ReportServerLib.js +0 -1
- package/dist/module/src/Types.js +0 -1
- package/dist/module/src/Web.js +0 -54
- package/dist/module/src/WebSidecar.js +0 -10
- package/dist/module/src/components/DesignEditorPage.js +0 -168
- package/dist/module/src/components/SunriseAnimation.js +0 -256
- package/dist/module/src/components/SunriseAnimation.test/implementation.js +0 -1
- package/dist/module/src/components/SunriseAnimation.test/index.js +0 -1
- package/dist/module/src/components/SunriseAnimation.test/interface.js +0 -32
- package/dist/module/src/components/SunriseAnimation.test/specification.js +0 -1
- package/dist/module/src/components/SunriseAnimation.test/types.js +0 -1
- package/dist/module/src/components/TestStatusBadge.js +0 -28
- package/dist/module/src/components/pure/AppFrame.js +0 -74
- package/dist/module/src/components/pure/AppFrame.test/implementation.js +0 -57
- package/dist/module/src/components/pure/AppFrame.test/index.js +0 -9
- package/dist/module/src/components/pure/AppFrame.test/specification.js +0 -21
- package/dist/module/src/components/pure/AppFrame.test/types.js +0 -2
- package/dist/module/src/components/pure/ArtifactTree.js +0 -80
- package/dist/module/src/components/pure/BuildLogViewer.js +0 -99
- package/dist/module/src/components/pure/DebugEnv.js +0 -23
- package/dist/module/src/components/pure/FeaturesReporterView.js +0 -16
- package/dist/module/src/components/pure/FeaturesReporterView.test/implementation.js +0 -81
- package/dist/module/src/components/pure/FeaturesReporterView.test/index.js +0 -9
- package/dist/module/src/components/pure/FeaturesReporterView.test/specification.js +0 -23
- package/dist/module/src/components/pure/FeaturesReporterView.test/types.js +0 -1
- package/dist/module/src/components/pure/FileTree.js +0 -27
- package/dist/module/src/components/pure/FileTreeItem.js +0 -22
- package/dist/module/src/components/pure/GitHubLoginButton.js +0 -11
- package/dist/module/src/components/pure/GitIntegrationView.js +0 -305
- package/dist/module/src/components/pure/ModalContent.js +0 -79
- package/dist/module/src/components/pure/ModalContent.test/implementation.js +0 -32
- package/dist/module/src/components/pure/ModalContent.test/index.js +0 -53
- package/dist/module/src/components/pure/ModalContent.test/specification.js +0 -15
- package/dist/module/src/components/pure/ModalContent.test/types.js +0 -3
- package/dist/module/src/components/pure/NavBar.js +0 -37
- package/dist/module/src/components/pure/ProcessManager.js +0 -76
- package/dist/module/src/components/pure/ProcessManagerView.js +0 -199
- package/dist/module/src/components/pure/ProjectPageView.js +0 -61
- package/dist/module/src/components/pure/ProjectPageView.test/implementation.js +0 -181
- package/dist/module/src/components/pure/ProjectPageView.test/index.js +0 -9
- package/dist/module/src/components/pure/ProjectPageView.test/specification.js +0 -28
- package/dist/module/src/components/pure/ProjectPageView.test/types.js +0 -3
- package/dist/module/src/components/pure/ProjectsPageView.js +0 -65
- package/dist/module/src/components/pure/Settings.js +0 -84
- package/dist/module/src/components/pure/Settings.test.js +0 -29
- package/dist/module/src/components/pure/SettingsButton.js +0 -6
- package/dist/module/src/components/pure/SignIn.js +0 -15
- package/dist/module/src/components/pure/SingleProcessView.js +0 -130
- package/dist/module/src/components/pure/TestPageView.js +0 -336
- package/dist/module/src/components/pure/TestPageView.test/implementation.js +0 -121
- package/dist/module/src/components/pure/TestPageView.test/index.js +0 -10
- package/dist/module/src/components/pure/TestPageView.test/specification.js +0 -22
- package/dist/module/src/components/pure/TestPageView.test/types.js +0 -3
- package/dist/module/src/components/pure/TestPageView_utils.js +0 -109
- package/dist/module/src/components/pure/TestTable.js +0 -26
- package/dist/module/src/components/pure/ThemeCard.js +0 -8
- package/dist/module/src/components/pure/ToastNotification.js +0 -7
- package/dist/module/src/components/pure/UserProfile.js +0 -20
- package/dist/module/src/components/stateful/AuthCallbackPage.js +0 -14
- package/dist/module/src/components/stateful/FeaturesReporter.js +0 -23
- package/dist/module/src/components/stateful/FileTree.js +0 -59
- package/dist/module/src/components/stateful/GitIntegrationPage.js +0 -5
- package/dist/module/src/components/stateful/ProcessManagerPage.js +0 -73
- package/dist/module/src/components/stateful/ProjectPage.js +0 -65
- package/dist/module/src/components/stateful/ProjectsPage.js +0 -79
- package/dist/module/src/components/stateful/SettingsPage.js +0 -35
- package/dist/module/src/components/stateful/SingleProcessPage.js +0 -100
- package/dist/module/src/components/stateful/TestPage.js +0 -233
- package/dist/module/src/components/stateful/TextEditorPage.js +0 -117
- package/dist/module/src/defaultConfig.js +0 -17
- package/dist/module/src/esbuildConfigs/consoleDetectorPlugin.js +0 -32
- package/dist/module/src/esbuildConfigs/eslint-formatter-testeranto.js +0 -18
- package/dist/module/src/esbuildConfigs/featuresPlugin.js +0 -34
- package/dist/module/src/esbuildConfigs/index.js +0 -19
- package/dist/module/src/esbuildConfigs/inputFilesPlugin.js +0 -25
- package/dist/module/src/esbuildConfigs/nativeImportDetectorPlugin.js +0 -21
- package/dist/module/src/esbuildConfigs/node.js +0 -19
- package/dist/module/src/esbuildConfigs/pure.js +0 -37
- package/dist/module/src/esbuildConfigs/rebuildPlugin.js +0 -14
- package/dist/module/src/esbuildConfigs/web.js +0 -43
- package/dist/module/src/hooks/useGitMode.js +0 -17
- package/dist/module/src/init-docs.js +0 -4
- package/dist/module/src/lib/BaseGiven.js +0 -95
- package/dist/module/src/lib/BaseSuite.js +0 -87
- package/dist/module/src/lib/BaseSuite.test/mock.js +0 -61
- package/dist/module/src/lib/BaseSuite.test/node.test.js +0 -5
- package/dist/module/src/lib/BaseSuite.test/pure.test.js +0 -5
- package/dist/module/src/lib/BaseSuite.test/test.js +0 -225
- package/dist/module/src/lib/BaseSuite.test/web.test.js +0 -5
- package/dist/module/src/lib/BaseThen.js +0 -60
- package/dist/module/src/lib/BaseWhen.js +0 -41
- package/dist/module/src/lib/Sidecar.js +0 -3
- package/dist/module/src/lib/Tiposkripto.js +0 -170
- package/dist/module/src/lib/Tiposkripto.test/MockTiposkripto.js +0 -173
- package/dist/module/src/lib/Tiposkripto.test/Tiposkripto.adapter.js +0 -26
- package/dist/module/src/lib/Tiposkripto.test/Tiposkripto.implementation.js +0 -210
- package/dist/module/src/lib/Tiposkripto.test/Tiposkripto.js +0 -6
- package/dist/module/src/lib/Tiposkripto.test/Tiposkripto.specification.js +0 -46
- package/dist/module/src/lib/Tiposkripto.test/Tiposkripto.types.js +0 -1
- package/dist/module/src/lib/abstractBase.test/MockGiven.js +0 -20
- package/dist/module/src/lib/abstractBase.test/MockThen.js +0 -12
- package/dist/module/src/lib/abstractBase.test/MockWhen.js +0 -16
- package/dist/module/src/lib/abstractBase.test/adapter.js +0 -21
- package/dist/module/src/lib/abstractBase.test/implementation.js +0 -35
- package/dist/module/src/lib/abstractBase.test/index.js +0 -13
- package/dist/module/src/lib/abstractBase.test/specification.js +0 -15
- package/dist/module/src/lib/abstractBase.test/types.js +0 -1
- package/dist/module/src/lib/index.js +0 -26
- package/dist/module/src/lib/pmProxy.js +0 -284
- package/dist/module/src/lib/pmProxy.test/adapter.js +0 -51
- package/dist/module/src/lib/pmProxy.test/implementation.js +0 -134
- package/dist/module/src/lib/pmProxy.test/index.js +0 -10
- package/dist/module/src/lib/pmProxy.test/mockPM.js +0 -30
- package/dist/module/src/lib/pmProxy.test/mockPMBase.js +0 -127
- package/dist/module/src/lib/pmProxy.test/specification.js +0 -175
- package/dist/module/src/lib/pmProxy.test/types.js +0 -1
- package/dist/module/src/lib/types.js +0 -2
- package/dist/module/src/mothership/index.js +0 -16
- package/dist/module/src/mothership/test.js +0 -78
- package/dist/module/src/run.js +0 -49
- package/dist/module/src/services/FileService.js +0 -468
- package/dist/module/src/services/GitHubAuthService.js +0 -180
- package/dist/module/src/testeranto.js +0 -186
- package/dist/module/src/types/features.js +0 -31
- package/dist/module/src/utils/api.js +0 -87
- package/dist/module/src/utils/buildTemplates.js +0 -33
- package/dist/module/src/utils/featureUtils.js +0 -24
- package/dist/module/src/utils/gitTest.js +0 -23
- package/dist/module/src/utils/golingvuMetafile.js +0 -109
- package/dist/module/src/utils/logFiles.js +0 -47
- package/dist/module/src/utils/makePrompt.js +0 -109
- package/dist/module/src/utils/pitonoMetafile.js +0 -60
- package/dist/module/src/utils/queue.js +0 -32
- package/dist/module/src/utils.js +0 -130
- package/dist/module/src/web.html.js +0 -16
- package/dist/module/testeranto.config.js +0 -100
- package/dist/module/tsconfig.module.tsbuildinfo +0 -1
- package/dist/types/design-editor/DesignEditor.d.ts +0 -1
- package/dist/types/src/App.d.ts +0 -19
- package/dist/types/src/CoreTypes.d.ts +0 -52
- package/dist/types/src/Init.d.ts +0 -2
- package/dist/types/src/Node.d.ts +0 -9
- package/dist/types/src/NodeSidecar.d.ts +0 -6
- package/dist/types/src/PM/PM_WithBuild.d.ts +0 -13
- package/dist/types/src/PM/PM_WithEslintAndTsc.d.ts +0 -22
- package/dist/types/src/PM/PM_WithGit.d.ts +0 -27
- package/dist/types/src/PM/PM_WithProcesses.d.ts +0 -29
- package/dist/types/src/PM/PM_WithWebSocket.d.ts +0 -108
- package/dist/types/src/PM/__tests__/nodeSidecar.testeranto.d.ts +0 -2
- package/dist/types/src/PM/__tests__/pureSidecar.testeranto.d.ts +0 -2
- package/dist/types/src/PM/__tests__/webSidecar.testeranto.d.ts +0 -2
- package/dist/types/src/PM/base.d.ts +0 -35
- package/dist/types/src/PM/index.d.ts +0 -35
- package/dist/types/src/PM/main.d.ts +0 -8
- package/dist/types/src/PM/node.d.ts +0 -38
- package/dist/types/src/PM/nodeSidecar.d.ts +0 -13
- package/dist/types/src/PM/pitonoRunner.d.ts +0 -7
- package/dist/types/src/PM/pure.d.ts +0 -41
- package/dist/types/src/PM/pureSidecar.d.ts +0 -11
- package/dist/types/src/PM/sidecar.d.ts +0 -8
- package/dist/types/src/PM/types.d.ts +0 -118
- package/dist/types/src/PM/utils.d.ts +0 -35
- package/dist/types/src/PM/web.d.ts +0 -41
- package/dist/types/src/PM/webSidecar.d.ts +0 -11
- package/dist/types/src/Pure.d.ts +0 -14
- package/dist/types/src/Pure.test.d.ts +0 -2
- package/dist/types/src/PureSidecar.d.ts +0 -8
- package/dist/types/src/ReportServer.test.ts/index.d.ts +0 -2
- package/dist/types/src/Types.d.ts +0 -119
- package/dist/types/src/Web.d.ts +0 -9
- package/dist/types/src/WebSidecar.d.ts +0 -8
- package/dist/types/src/components/DesignEditorPage.d.ts +0 -1
- package/dist/types/src/components/SunriseAnimation.d.ts +0 -5
- package/dist/types/src/components/SunriseAnimation.test/interface.d.ts +0 -11
- package/dist/types/src/components/SunriseAnimation.test/types.d.ts +0 -39
- package/dist/types/src/components/TestStatusBadge.d.ts +0 -15
- package/dist/types/src/components/pure/AppFrame.d.ts +0 -11
- package/dist/types/src/components/pure/AppFrame.test/implementation.d.ts +0 -3
- package/dist/types/src/components/pure/AppFrame.test/index.d.ts +0 -3
- package/dist/types/src/components/pure/AppFrame.test/specification.d.ts +0 -3
- package/dist/types/src/components/pure/AppFrame.test/types.d.ts +0 -33
- package/dist/types/src/components/pure/BuildLogViewer.d.ts +0 -7
- package/dist/types/src/components/pure/DebugEnv.d.ts +0 -2
- package/dist/types/src/components/pure/FeaturesReporterView.d.ts +0 -7
- package/dist/types/src/components/pure/FeaturesReporterView.test/implementation.d.ts +0 -3
- package/dist/types/src/components/pure/FeaturesReporterView.test/index.d.ts +0 -2
- package/dist/types/src/components/pure/FeaturesReporterView.test/specification.d.ts +0 -3
- package/dist/types/src/components/pure/FeaturesReporterView.test/types.d.ts +0 -54
- package/dist/types/src/components/pure/FileTree.d.ts +0 -6
- package/dist/types/src/components/pure/FileTreeItem.d.ts +0 -8
- package/dist/types/src/components/pure/GitHubLoginButton.d.ts +0 -8
- package/dist/types/src/components/pure/GitIntegrationView.d.ts +0 -1
- package/dist/types/src/components/pure/ModalContent.d.ts +0 -7
- package/dist/types/src/components/pure/ModalContent.test/implementation.d.ts +0 -3
- package/dist/types/src/components/pure/ModalContent.test/index.d.ts +0 -2
- package/dist/types/src/components/pure/ModalContent.test/specification.d.ts +0 -3
- package/dist/types/src/components/pure/ModalContent.test/types.d.ts +0 -45
- package/dist/types/src/components/pure/NavBar.d.ts +0 -23
- package/dist/types/src/components/pure/ProcessManager.d.ts +0 -8
- package/dist/types/src/components/pure/ProcessManagerView.d.ts +0 -20
- package/dist/types/src/components/pure/ProjectPageView.d.ts +0 -14
- package/dist/types/src/components/pure/ProjectPageView.test/implementation.d.ts +0 -3
- package/dist/types/src/components/pure/ProjectPageView.test/index.d.ts +0 -2
- package/dist/types/src/components/pure/ProjectPageView.test/specification.d.ts +0 -3
- package/dist/types/src/components/pure/ProjectPageView.test/types.d.ts +0 -57
- package/dist/types/src/components/pure/ProjectsPageView.d.ts +0 -29
- package/dist/types/src/components/pure/Settings.d.ts +0 -1
- package/dist/types/src/components/pure/Settings.test.d.ts +0 -1
- package/dist/types/src/components/pure/SettingsButton.d.ts +0 -2
- package/dist/types/src/components/pure/SignIn.d.ts +0 -1
- package/dist/types/src/components/pure/SingleProcessView.d.ts +0 -10
- package/dist/types/src/components/pure/TestPageView.d.ts +0 -16
- package/dist/types/src/components/pure/TestPageView.test/implementation.d.ts +0 -12
- package/dist/types/src/components/pure/TestPageView.test/index.d.ts +0 -3
- package/dist/types/src/components/pure/TestPageView.test/specification.d.ts +0 -11
- package/dist/types/src/components/pure/TestPageView.test/types.d.ts +0 -65
- package/dist/types/src/components/pure/TestPageView_utils.d.ts +0 -23
- package/dist/types/src/components/pure/TestTable.d.ts +0 -16
- package/dist/types/src/components/pure/ThemeCard.d.ts +0 -9
- package/dist/types/src/components/pure/ToastNotification.d.ts +0 -6
- package/dist/types/src/components/pure/UserProfile.d.ts +0 -2
- package/dist/types/src/components/stateful/AuthCallbackPage.d.ts +0 -2
- package/dist/types/src/components/stateful/FeaturesReporter.d.ts +0 -2
- package/dist/types/src/components/stateful/GitIntegrationPage.d.ts +0 -1
- package/dist/types/src/components/stateful/ProcessManagerPage.d.ts +0 -2
- package/dist/types/src/components/stateful/ProjectPage.d.ts +0 -1
- package/dist/types/src/components/stateful/ProjectsPage.d.ts +0 -1
- package/dist/types/src/components/stateful/SettingsPage.d.ts +0 -2
- package/dist/types/src/components/stateful/SingleProcessPage.d.ts +0 -2
- package/dist/types/src/components/stateful/TestPage.d.ts +0 -1
- package/dist/types/src/components/stateful/TextEditorPage.d.ts +0 -1
- package/dist/types/src/defaultConfig.d.ts +0 -3
- package/dist/types/src/esbuildConfigs/consoleDetectorPlugin.d.ts +0 -2
- package/dist/types/src/esbuildConfigs/eslint-formatter-testeranto.d.ts +0 -2
- package/dist/types/src/esbuildConfigs/featuresPlugin.d.ts +0 -5
- package/dist/types/src/esbuildConfigs/index.d.ts +0 -4
- package/dist/types/src/esbuildConfigs/inputFilesPlugin.d.ts +0 -7
- package/dist/types/src/esbuildConfigs/nativeImportDetectorPlugin.d.ts +0 -2
- package/dist/types/src/esbuildConfigs/node.d.ts +0 -4
- package/dist/types/src/esbuildConfigs/pure.d.ts +0 -4
- package/dist/types/src/esbuildConfigs/rebuildPlugin.d.ts +0 -6
- package/dist/types/src/esbuildConfigs/web.d.ts +0 -4
- package/dist/types/src/hooks/useGitMode.d.ts +0 -7
- package/dist/types/src/init-docs.d.ts +0 -1
- package/dist/types/src/lib/BaseGiven.d.ts +0 -44
- package/dist/types/src/lib/BaseSuite.d.ts +0 -46
- package/dist/types/src/lib/BaseSuite.test/mock.d.ts +0 -21
- package/dist/types/src/lib/BaseSuite.test/node.test.d.ts +0 -2
- package/dist/types/src/lib/BaseSuite.test/pure.test.d.ts +0 -2
- package/dist/types/src/lib/BaseSuite.test/test.d.ts +0 -37
- package/dist/types/src/lib/BaseSuite.test/web.test.d.ts +0 -2
- package/dist/types/src/lib/BaseThen.d.ts +0 -27
- package/dist/types/src/lib/BaseWhen.d.ts +0 -27
- package/dist/types/src/lib/Sidecar.d.ts +0 -5
- package/dist/types/src/lib/Tiposkripto.d.ts +0 -37
- package/dist/types/src/lib/Tiposkripto.test/MockTiposkripto.d.ts +0 -18
- package/dist/types/src/lib/Tiposkripto.test/Tiposkripto.adapter.d.ts +0 -3
- package/dist/types/src/lib/Tiposkripto.test/Tiposkripto.d.ts +0 -2
- package/dist/types/src/lib/Tiposkripto.test/Tiposkripto.implementation.d.ts +0 -3
- package/dist/types/src/lib/Tiposkripto.test/Tiposkripto.specification.d.ts +0 -3
- package/dist/types/src/lib/Tiposkripto.test/Tiposkripto.types.d.ts +0 -58
- package/dist/types/src/lib/abstractBase.test/MockGiven.d.ts +0 -9
- package/dist/types/src/lib/abstractBase.test/MockThen.d.ts +0 -6
- package/dist/types/src/lib/abstractBase.test/MockWhen.d.ts +0 -6
- package/dist/types/src/lib/abstractBase.test/adapter.d.ts +0 -3
- package/dist/types/src/lib/abstractBase.test/implementation.d.ts +0 -3
- package/dist/types/src/lib/abstractBase.test/index.d.ts +0 -2
- package/dist/types/src/lib/abstractBase.test/specification.d.ts +0 -3
- package/dist/types/src/lib/abstractBase.test/types.d.ts +0 -39
- package/dist/types/src/lib/index.d.ts +0 -73
- package/dist/types/src/lib/pmProxy.d.ts +0 -12
- package/dist/types/src/lib/pmProxy.test/adapter.d.ts +0 -3
- package/dist/types/src/lib/pmProxy.test/implementation.d.ts +0 -3
- package/dist/types/src/lib/pmProxy.test/index.d.ts +0 -6
- package/dist/types/src/lib/pmProxy.test/mockPM.d.ts +0 -10
- package/dist/types/src/lib/pmProxy.test/mockPMBase.d.ts +0 -40
- package/dist/types/src/lib/pmProxy.test/specification.d.ts +0 -3
- package/dist/types/src/lib/pmProxy.test/types.d.ts +0 -42
- package/dist/types/src/lib/types.d.ts +0 -24
- package/dist/types/src/mothership/index.d.ts +0 -2
- package/dist/types/src/mothership/test.d.ts +0 -2
- package/dist/types/src/services/FileService.d.ts +0 -34
- package/dist/types/src/services/GitHubAuthService.d.ts +0 -32
- package/dist/types/src/testeranto.d.ts +0 -1
- package/dist/types/src/types/features.d.ts +0 -7
- package/dist/types/src/utils/api.d.ts +0 -10
- package/dist/types/src/utils/buildTemplates.d.ts +0 -1
- package/dist/types/src/utils/featureUtils.d.ts +0 -6
- package/dist/types/src/utils/gitTest.d.ts +0 -11
- package/dist/types/src/utils/golingvuMetafile.d.ts +0 -19
- package/dist/types/src/utils/logFiles.d.ts +0 -75
- package/dist/types/src/utils/makePrompt.d.ts +0 -2
- package/dist/types/src/utils/pitonoMetafile.d.ts +0 -7
- package/dist/types/src/utils/queue.d.ts +0 -11
- package/dist/types/src/utils.d.ts +0 -20
- package/dist/types/src/web.html.d.ts +0 -2
- package/dist/types/tsconfig.types.tsbuildinfo +0 -1
- package/example/__pycache__/Calculator.cpython-313.pyc +0 -0
- package/example/vendor/github.com/adamwong246/testeranto/src/golingvu/README.md +0 -187
- package/example/vendor/github.com/adamwong246/testeranto/src/golingvu/base_given.go +0 -163
- package/example/vendor/github.com/adamwong246/testeranto/src/golingvu/base_suite.go +0 -85
- package/example/vendor/github.com/adamwong246/testeranto/src/golingvu/base_then.go +0 -21
- package/example/vendor/github.com/adamwong246/testeranto/src/golingvu/base_when.go +0 -21
- package/example/vendor/github.com/adamwong246/testeranto/src/golingvu/golingvu.go +0 -554
- package/example/vendor/github.com/adamwong246/testeranto/src/golingvu/test_adapter.go +0 -33
- package/example/vendor/github.com/adamwong246/testeranto/src/golingvu/types.go +0 -72
- package/example/vendor/modules.txt +0 -5
- package/pitono/__init__.py +0 -54
- package/pitono/types.py +0 -78
- package/src/PM/metafileOutputs.ts +0 -90
- package/src/golingvu/base_suite_test.go +0 -197
- package/src/pitono/PM/__pycache__/python.cpython-313.pyc +0 -0
- package/src/pitono/__pycache__/Pitono.cpython-313.pyc +0 -0
- package/src/pitono/__pycache__/__init__.cpython-313.pyc +0 -0
- package/src/pitono/__pycache__/base_given.cpython-313.pyc +0 -0
- package/src/pitono/__pycache__/base_suite.cpython-313.pyc +0 -0
- package/src/pitono/__pycache__/base_then.cpython-313.pyc +0 -0
- package/src/pitono/__pycache__/base_when.cpython-313.pyc +0 -0
- package/src/pitono/__pycache__/core_generator.cpython-313.pyc +0 -0
- package/src/pitono/__pycache__/simple_adapter.cpython-313.pyc +0 -0
- package/src/pitono/__pycache__/types.cpython-313.pyc +0 -0
- package/src/templates/frontpage.html +0 -340
- package/src/templates/frontpage.md +0 -79
- package/testeranto/bundles/golang/core/Calculator.golingvu.golingvu.go +0 -53
- package/testeranto/bundles/node/core/chunk-VXVF7WFO.mjs +0 -4321
- package/testeranto/bundles/node/core/example/Calculator.test.mjs +0 -503
- package/testeranto/bundles/python/core/Calculator.pitono.test.py +0 -24
- package/testeranto/bundles/python/core/test_example.py +0 -24
- package/testeranto/bundles/web/core/chunk-DFRN4SYZ.mjs +0 -2297
- package/testeranto/bundles/web/core/chunk-Q5TONB2Z.mjs +0 -6874
- package/testeranto/bundles/web/core/src/components/pure/ModalContent.test/index.css +0 -11697
- package/testeranto/bundles/web/core/src/components/pure/ModalContent.test/index.mjs +0 -336
- package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/tests.json +0 -68
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/tests.json +0 -88
- package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/tests.json +0 -29
- /package/{pitono → src/pitono}/core_generator.py +0 -0
- /package/{pitono → src/pitono}/pitono.egg-info/dependency_links.txt +0 -0
- /package/{pitono → src/pitono}/pitono.egg-info/entry_points.txt +0 -0
- /package/{pitono → src/pitono}/pitono.egg-info/top_level.txt +0 -0
- /package/{pitono → src/pitono}/pyproject.toml +0 -0
- /package/{pitono → src/pitono}/setup.py +0 -0
- /package/{pitono → src/pitono}/simple_adapter.py +0 -0
- /package/{dist/types/src/PM/metafileOutputs.d.ts → testeranto/helpo_chat_message.txt} +0 -0
- /package/{dist/types/src/ReportServer.d.ts → testeranto/reports/core/example/test_example/python/stdout.log} +0 -0
- /package/{dist/types/src/ReportServerLib.d.ts → testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/lint_errors.txt} +0 -0
- /package/{dist/types/src/components/SunriseAnimation.test/implementation.d.ts → testeranto/reports/core/src/components/pure/ModalContent.test/index/web/debug.log} +0 -0
- /package/{dist/types/src/components/SunriseAnimation.test/index.d.ts → testeranto/reports/core/src/components/pure/ModalContent.test/index/web/error.log} +0 -0
- /package/{dist/types/src/components/SunriseAnimation.test/specification.d.ts → testeranto/reports/core/src/components/pure/ModalContent.test/index/web/exit.log} +0 -0
- /package/{dist/types/src/components/pure/ArtifactTree.d.ts → testeranto/reports/core/src/components/pure/ModalContent.test/index/web/info.log} +0 -0
- /package/{dist/types/src/components/stateful/FileTree.d.ts → testeranto/reports/core/src/components/pure/ModalContent.test/index/web/warn.log} +0 -0
- /package/{dist/types/src/run.d.ts → testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/lint_errors.txt} +0 -0
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
/Users/adam/Code/testeranto/example/Calculator.test.adapter.ts (17,3): Type '(subject: typeof import("/Users/adam/Code/testeranto/example/Calculator").Calculator, initializer: (c?: any) => () => import("/Users/adam/Code/testeranto/example/Calculator").Calculator, testResource: import("/Users/adam/Code/testeranto/src/lib/index").ITTestResourceConfiguration, initialValues: any, pm: import("/Us...' is not assignable to type '(subject: typeof import("/Users/adam/Code/testeranto/example/Calculator").Calculator, initializer: (c?: any) => () => import("/Users/adam/Code/testeranto/example/Calculator").Calculator, testResource: import("/Users/adam/Code/testeranto/src/lib/index").ITTestResourceConfiguration, initialValues: any, pm: import("/Us...'. Two different types with this name exist, but they are unrelated.
|
|
2
|
+
Type 'Promise<() => Calculator>' is not assignable to type 'Promise<Calculator>'.
|
|
3
|
+
Type '() => Calculator' is not assignable to type 'Calculator'.
|
|
4
|
+
/Users/adam/Code/testeranto/example/Calculator.test.adapter.ts (21,46): Property 'getDisplay' does not exist on type '() => Calculator'.
|
|
5
|
+
/Users/adam/Code/testeranto/example/Calculator.test.adapter.ts (81,3): Type '(actual: string) => string' is not assignable to type '(x: (calculator: Calculator) => void) => any'.
|
|
6
|
+
Types of parameters 'actual' and 'x' are incompatible.
|
|
7
|
+
Type '(calculator: Calculator) => void' is not assignable to type 'string'.
|
|
8
|
+
/Users/adam/Code/testeranto/example/Calculator.ts (7,3): Duplicate function implementation.
|
|
9
|
+
/Users/adam/Code/testeranto/example/Calculator.ts (77,3): Duplicate function implementation.
|
|
10
|
+
/Users/adam/Code/testeranto/src/lib/BaseGiven.ts (68,23): Property 'name' does not exist on type 'never'.
|
|
11
|
+
/Users/adam/Code/testeranto/src/lib/BaseGiven.ts (84,10): Property 'fails' does not exist on type 'BaseGiven<I>'. Did you mean 'fail'?
|
|
12
|
+
/Users/adam/Code/testeranto/src/lib/BaseGiven.ts (139,10): Property 'fails' does not exist on type 'BaseGiven<I>'. Did you mean 'fail'?
|
|
13
|
+
/Users/adam/Code/testeranto/src/lib/BaseGiven.ts (142,28): Property 'name' does not exist on type 'BaseGiven<I>'.
|
|
14
|
+
/Users/adam/Code/testeranto/src/lib/BaseGiven.ts (168,12): Property 'fails' does not exist on type 'BaseGiven<I>'. Did you mean 'fail'?
|
|
15
|
+
/Users/adam/Code/testeranto/src/lib/BaseGiven.ts (227,20): Property 'fails' does not exist on type 'BaseGiven<I>'. Did you mean 'fail'?
|
|
16
|
+
/Users/adam/Code/testeranto/src/lib/BaseGiven.ts (236,18): Property 'fails' does not exist on type 'BaseGiven<I>'. Did you mean 'fail'?
|
|
17
|
+
/Users/adam/Code/testeranto/src/lib/BaseGiven.ts (259,16): Property 'fails' does not exist on type 'BaseGiven<I>'. Did you mean 'fail'?
|
|
18
|
+
/Users/adam/Code/testeranto/src/lib/BaseGiven.ts (283,14): Property 'fails' does not exist on type 'BaseGiven<I>'. Did you mean 'fail'?
|
|
19
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.ts (68,26): Property 'name' does not exist on type 'never'.
|
|
20
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.ts (89,28): Property 'name' does not exist on type 'never'.
|
|
21
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.ts (165,29): Property 'fails' does not exist on type 'BaseGiven<I>'. Did you mean 'fail'?
|
|
22
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.ts (171,19): Property 'fails' does not exist on type 'BaseGiven<I>'. Did you mean 'fail'?
|
|
23
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.ts (172,31): Property 'fails' does not exist on type 'BaseGiven<I>'. Did you mean 'fail'?
|
|
24
|
+
/Users/adam/Code/testeranto/src/lib/index.ts (42,12): This expression is not callable.
|
|
25
|
+
Type 'unknown' has no call signatures.
|
|
26
|
+
/Users/adam/Code/testeranto/src/lib/index.ts (50,12): This expression is not callable.
|
|
27
|
+
Type 'unknown' has no call signatures.
|
|
28
|
+
/Users/adam/Code/testeranto/src/lib/Tiposkripto.ts (222,7): Argument of type 'Record<string, any>' is not assignable to parameter of type 'SuiteSpecification<I, O>'.
|
|
29
|
+
/Users/adam/Code/testeranto/src/lib/Tiposkripto.ts (299,15): Expected 1 arguments, but got 3.
|
|
30
|
+
/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 & { ...; }'.
|
|
31
|
+
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
|
|
32
|
+
/Users/adam/Code/testeranto/src/Node.ts (56,12): Cannot find name 'Testeranto'.
|
|
33
|
+
/Users/adam/Code/testeranto/src/PM/web.ts (51,12): Property 'mainFrame' does not exist on type 'string | Page'.
|
|
34
|
+
Property 'mainFrame' does not exist on type 'string'.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
1
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
Traceback (most recent call last):
|
|
2
|
+
File "/Users/adam/Code/testeranto/example/test_example.py", line 134, in <module>
|
|
3
|
+
pitono = Pitono(
|
|
4
|
+
input_val=None,
|
|
5
|
+
...<4 lines>...
|
|
6
|
+
uber_catcher=uber_catcher
|
|
7
|
+
)
|
|
8
|
+
File "/Users/adam/Code/testeranto/example/../src/pitono/Pitono.py", line 29, in Pitono
|
|
9
|
+
instance = PitonoClass(
|
|
10
|
+
input_val,
|
|
11
|
+
...<4 lines>...
|
|
12
|
+
uber_catcher or (lambda x: None)
|
|
13
|
+
)
|
|
14
|
+
File "/Users/adam/Code/testeranto/example/../src/pitono/Pitono.py", line 86, in __init__
|
|
15
|
+
self.specs = test_specification(
|
|
16
|
+
~~~~~~~~~~~~~~~~~~^
|
|
17
|
+
self.Suites(),
|
|
18
|
+
^^^^^^^^^^^^^^
|
|
19
|
+
...<2 lines>...
|
|
20
|
+
self.Then()
|
|
21
|
+
^^^^^^^^^^^
|
|
22
|
+
)
|
|
23
|
+
^
|
|
24
|
+
TypeError: test_specification() missing 1 required positional argument: 'Check'
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
|
|
2
1
|
There are 3 types of test reports.
|
|
3
2
|
1) bdd (highest priority)
|
|
4
3
|
2) type checker
|
|
@@ -14,4 +13,4 @@ if this file does not exist, then type check passed without errors;
|
|
|
14
13
|
if this file does not exist, then static analysis passed without errors;
|
|
15
14
|
|
|
16
15
|
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.
|
|
16
|
+
Do not add error throwing/catching to the tests themselves.
|
|
@@ -1,7 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
/add src/lib/pmProxy.test/mockPMBase.ts
|
|
3
|
-
/add src/Pure.test.ts
|
|
4
|
-
|
|
5
1
|
/read node_modules/testeranto/docs/index.md
|
|
6
2
|
/read node_modules/testeranto/docs/style.md
|
|
7
3
|
/read node_modules/testeranto/docs/testing.ai.txt
|
|
@@ -11,4 +7,7 @@
|
|
|
11
7
|
/read testeranto/reports/core/src/Pure.test/pure/type_errors.txt
|
|
12
8
|
/read testeranto/reports/core/src/Pure.test/pure/lint_errors.txt
|
|
13
9
|
|
|
14
|
-
/read testeranto/reports/core/src/Pure.test/pure/
|
|
10
|
+
/read testeranto/reports/core/src/Pure.test/pure/stdout.log
|
|
11
|
+
/read testeranto/reports/core/src/Pure.test/pure/stderr.log
|
|
12
|
+
/read testeranto/reports/core/src/Pure.test/pure/exit.log
|
|
13
|
+
/read testeranto/reports/core/src/Pure.test/pure/message.txt
|
|
@@ -1,12 +1,25 @@
|
|
|
1
|
-
/Users/adam/Code/testeranto/src/lib/
|
|
1
|
+
/Users/adam/Code/testeranto/src/lib/BaseGiven.ts (68,23): Property 'name' does not exist on type 'never'.
|
|
2
|
+
/Users/adam/Code/testeranto/src/lib/BaseGiven.ts (84,10): Property 'fails' does not exist on type 'BaseGiven<I>'. Did you mean 'fail'?
|
|
3
|
+
/Users/adam/Code/testeranto/src/lib/BaseGiven.ts (139,10): Property 'fails' does not exist on type 'BaseGiven<I>'. Did you mean 'fail'?
|
|
4
|
+
/Users/adam/Code/testeranto/src/lib/BaseGiven.ts (142,28): Property 'name' does not exist on type 'BaseGiven<I>'.
|
|
5
|
+
/Users/adam/Code/testeranto/src/lib/BaseGiven.ts (168,12): Property 'fails' does not exist on type 'BaseGiven<I>'. Did you mean 'fail'?
|
|
6
|
+
/Users/adam/Code/testeranto/src/lib/BaseGiven.ts (227,20): Property 'fails' does not exist on type 'BaseGiven<I>'. Did you mean 'fail'?
|
|
7
|
+
/Users/adam/Code/testeranto/src/lib/BaseGiven.ts (236,18): Property 'fails' does not exist on type 'BaseGiven<I>'. Did you mean 'fail'?
|
|
8
|
+
/Users/adam/Code/testeranto/src/lib/BaseGiven.ts (259,16): Property 'fails' does not exist on type 'BaseGiven<I>'. Did you mean 'fail'?
|
|
9
|
+
/Users/adam/Code/testeranto/src/lib/BaseGiven.ts (283,14): Property 'fails' does not exist on type 'BaseGiven<I>'. Did you mean 'fail'?
|
|
10
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.ts (68,26): Property 'name' does not exist on type 'never'.
|
|
11
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.ts (89,28): Property 'name' does not exist on type 'never'.
|
|
12
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.ts (165,29): Property 'fails' does not exist on type 'BaseGiven<I>'. Did you mean 'fail'?
|
|
13
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.ts (171,19): Property 'fails' does not exist on type 'BaseGiven<I>'. Did you mean 'fail'?
|
|
14
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.ts (172,31): Property 'fails' does not exist on type 'BaseGiven<I>'. Did you mean 'fail'?
|
|
2
15
|
/Users/adam/Code/testeranto/src/lib/index.ts (42,12): This expression is not callable.
|
|
3
16
|
Type 'unknown' has no call signatures.
|
|
4
17
|
/Users/adam/Code/testeranto/src/lib/index.ts (50,12): This expression is not callable.
|
|
5
18
|
Type 'unknown' has no call signatures.
|
|
6
19
|
/Users/adam/Code/testeranto/src/lib/pmProxy.test/mockPMBase.ts (8,14): Class 'MockPMBase' incorrectly implements class 'PM_Base'. Did you mean to extend 'PM_Base' and inherit its members as a subclass?
|
|
7
20
|
Property 'mapping' is missing in type 'MockPMBase' but required in type 'PM_Base'.
|
|
8
|
-
/Users/adam/Code/testeranto/src/lib/Tiposkripto.ts (
|
|
9
|
-
/Users/adam/Code/testeranto/src/lib/Tiposkripto.ts (
|
|
21
|
+
/Users/adam/Code/testeranto/src/lib/Tiposkripto.ts (222,7): Argument of type 'Record<string, any>' is not assignable to parameter of type 'SuiteSpecification<I, O>'.
|
|
22
|
+
/Users/adam/Code/testeranto/src/lib/Tiposkripto.ts (299,15): Expected 1 arguments, but got 3.
|
|
10
23
|
/Users/adam/Code/testeranto/src/PM/web.ts (51,12): Property 'mainFrame' does not exist on type 'string | Page'.
|
|
11
24
|
Property 'mainFrame' does not exist on type 'string'.
|
|
12
25
|
/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; }'.
|
package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/error.log
CHANGED
|
@@ -1,91 +0,0 @@
|
|
|
1
|
-
Failed to load resource: net::ERR_FILE_NOT_FOUND
|
|
2
|
-
AssertionError: Should show project names: expected +0 to be at least 1
|
|
3
|
-
<<<<<<< HEAD
|
|
4
|
-
at BaseThen.thenCB (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/FeaturesReporterView.test/index.mjs?cacheBust=1756825261877:73:14)
|
|
5
|
-
=======
|
|
6
|
-
at BaseThen.thenCB (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/FeaturesReporterView.test/index.mjs?cacheBust=1756785550530:73:14)
|
|
7
|
-
>>>>>>> 79d08b7b (svg editor)
|
|
8
|
-
at file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2741:39
|
|
9
|
-
at Object.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-AZZHJNSU.mjs:23593:14)
|
|
10
|
-
at BaseThen.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2833:40)
|
|
11
|
-
at BaseThen.test (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2722:17)
|
|
12
|
-
at BaseGiven.give (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2605:24)
|
|
13
|
-
at async BaseSuite.run (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2322:20)
|
|
14
|
-
at async file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2858:21
|
|
15
|
-
at async Object.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2890:31)
|
|
16
|
-
at async WebTesteranto.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2975:12)
|
|
17
|
-
AssertionError: Should show file paths: expected +0 to be at least 1
|
|
18
|
-
<<<<<<< HEAD
|
|
19
|
-
at BaseThen.thenCB (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/FeaturesReporterView.test/index.mjs?cacheBust=1756825261877:78:14)
|
|
20
|
-
=======
|
|
21
|
-
at BaseThen.thenCB (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/FeaturesReporterView.test/index.mjs?cacheBust=1756785550530:78:14)
|
|
22
|
-
>>>>>>> 79d08b7b (svg editor)
|
|
23
|
-
at file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2741:39
|
|
24
|
-
at Object.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-AZZHJNSU.mjs:23593:14)
|
|
25
|
-
at BaseThen.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2833:40)
|
|
26
|
-
at BaseThen.test (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2722:17)
|
|
27
|
-
at BaseGiven.give (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2605:24)
|
|
28
|
-
at async BaseSuite.run (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2322:20)
|
|
29
|
-
at async file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2858:21
|
|
30
|
-
at async Object.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2890:31)
|
|
31
|
-
at async WebTesteranto.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2975:12)
|
|
32
|
-
AssertionError: Should show test names: expected +0 to be at least 1
|
|
33
|
-
<<<<<<< HEAD
|
|
34
|
-
at BaseThen.thenCB (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/FeaturesReporterView.test/index.mjs?cacheBust=1756825261877:83:14)
|
|
35
|
-
=======
|
|
36
|
-
at BaseThen.thenCB (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/FeaturesReporterView.test/index.mjs?cacheBust=1756785550530:83:14)
|
|
37
|
-
>>>>>>> 79d08b7b (svg editor)
|
|
38
|
-
at file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2741:39
|
|
39
|
-
at Object.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-AZZHJNSU.mjs:23593:14)
|
|
40
|
-
at BaseThen.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2833:40)
|
|
41
|
-
at BaseThen.test (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2722:17)
|
|
42
|
-
at BaseGiven.give (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2605:24)
|
|
43
|
-
at async BaseSuite.run (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2322:20)
|
|
44
|
-
at async file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2858:21
|
|
45
|
-
at async Object.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2890:31)
|
|
46
|
-
at async WebTesteranto.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2975:12)
|
|
47
|
-
AssertionError: Should show status badges: expected +0 to be at least 1
|
|
48
|
-
<<<<<<< HEAD
|
|
49
|
-
at BaseThen.thenCB (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/FeaturesReporterView.test/index.mjs?cacheBust=1756825261877:88:14)
|
|
50
|
-
=======
|
|
51
|
-
at BaseThen.thenCB (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/FeaturesReporterView.test/index.mjs?cacheBust=1756785550530:88:14)
|
|
52
|
-
>>>>>>> 79d08b7b (svg editor)
|
|
53
|
-
at file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2741:39
|
|
54
|
-
at Object.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-AZZHJNSU.mjs:23593:14)
|
|
55
|
-
at BaseThen.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2833:40)
|
|
56
|
-
at BaseThen.test (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2722:17)
|
|
57
|
-
at BaseGiven.give (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2605:24)
|
|
58
|
-
at async BaseSuite.run (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2322:20)
|
|
59
|
-
at async file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2858:21
|
|
60
|
-
at async Object.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2890:31)
|
|
61
|
-
at async WebTesteranto.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2975:12)
|
|
62
|
-
TypeError: Cannot read properties of undefined (reading 'path')
|
|
63
|
-
at PM_Web.customScreenShot (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2442:62)
|
|
64
|
-
at Proxy.<anonymous> (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:1976:32)
|
|
65
|
-
<<<<<<< HEAD
|
|
66
|
-
at BaseThen.thenCB (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/FeaturesReporterView.test/index.mjs?cacheBust=1756825261877:98:16)
|
|
67
|
-
=======
|
|
68
|
-
at BaseThen.thenCB (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/FeaturesReporterView.test/index.mjs?cacheBust=1756785550530:98:16)
|
|
69
|
-
>>>>>>> 79d08b7b (svg editor)
|
|
70
|
-
at async file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2741:28
|
|
71
|
-
at async BaseThen.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2833:22)
|
|
72
|
-
at async BaseGiven.give (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2605:9)
|
|
73
|
-
at async BaseSuite.run (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2322:20)
|
|
74
|
-
at async file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2858:21
|
|
75
|
-
at async Object.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2890:31)
|
|
76
|
-
at async WebTesteranto.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2975:12)
|
|
77
|
-
AssertionError: Should show empty message: expected null to exist
|
|
78
|
-
<<<<<<< HEAD
|
|
79
|
-
at BaseThen.thenCB (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/FeaturesReporterView.test/index.mjs?cacheBust=1756825261877:93:14)
|
|
80
|
-
=======
|
|
81
|
-
at BaseThen.thenCB (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/FeaturesReporterView.test/index.mjs?cacheBust=1756785550530:93:14)
|
|
82
|
-
>>>>>>> 79d08b7b (svg editor)
|
|
83
|
-
at file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2741:39
|
|
84
|
-
at Object.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-AZZHJNSU.mjs:23593:14)
|
|
85
|
-
at BaseThen.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2833:40)
|
|
86
|
-
at BaseThen.test (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2722:17)
|
|
87
|
-
at BaseGiven.give (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2605:24)
|
|
88
|
-
at async BaseSuite.run (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2322:20)
|
|
89
|
-
at async file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2858:21
|
|
90
|
-
at async Object.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2890:31)
|
|
91
|
-
at async WebTesteranto.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2975:12)
|
package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/exit.log
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
0
|
package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/message.txt
ADDED
|
@@ -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.
|
package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/prompt.txt
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
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
|
|
17
|
+
/read testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/type_errors.txt
|
|
18
|
+
/read testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/lint_errors.txt
|
|
19
|
+
/read testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/exit.log
|
|
20
|
+
/read testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/message.txt
|
|
21
|
+
/read testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/prompt.txt
|
|
22
|
+
/read testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/build.json
|
|
23
|
+
/read testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/info.log
|
|
24
|
+
/read testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/error.log
|
|
25
|
+
/read testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/warn.log
|
|
26
|
+
/read testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/debug.log
|
|
@@ -0,0 +1,69 @@
|
|
|
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/BaseGiven.ts (68,23): Property 'name' does not exist on type 'never'.
|
|
46
|
+
/Users/adam/Code/testeranto/src/lib/BaseGiven.ts (84,10): Property 'fails' does not exist on type 'BaseGiven<I>'. Did you mean 'fail'?
|
|
47
|
+
/Users/adam/Code/testeranto/src/lib/BaseGiven.ts (139,10): Property 'fails' does not exist on type 'BaseGiven<I>'. Did you mean 'fail'?
|
|
48
|
+
/Users/adam/Code/testeranto/src/lib/BaseGiven.ts (142,28): Property 'name' does not exist on type 'BaseGiven<I>'.
|
|
49
|
+
/Users/adam/Code/testeranto/src/lib/BaseGiven.ts (168,12): Property 'fails' does not exist on type 'BaseGiven<I>'. Did you mean 'fail'?
|
|
50
|
+
/Users/adam/Code/testeranto/src/lib/BaseGiven.ts (227,20): Property 'fails' does not exist on type 'BaseGiven<I>'. Did you mean 'fail'?
|
|
51
|
+
/Users/adam/Code/testeranto/src/lib/BaseGiven.ts (236,18): Property 'fails' does not exist on type 'BaseGiven<I>'. Did you mean 'fail'?
|
|
52
|
+
/Users/adam/Code/testeranto/src/lib/BaseGiven.ts (259,16): Property 'fails' does not exist on type 'BaseGiven<I>'. Did you mean 'fail'?
|
|
53
|
+
/Users/adam/Code/testeranto/src/lib/BaseGiven.ts (283,14): Property 'fails' does not exist on type 'BaseGiven<I>'. Did you mean 'fail'?
|
|
54
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.ts (68,26): Property 'name' does not exist on type 'never'.
|
|
55
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.ts (89,28): Property 'name' does not exist on type 'never'.
|
|
56
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.ts (165,29): Property 'fails' does not exist on type 'BaseGiven<I>'. Did you mean 'fail'?
|
|
57
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.ts (171,19): Property 'fails' does not exist on type 'BaseGiven<I>'. Did you mean 'fail'?
|
|
58
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.ts (172,31): Property 'fails' does not exist on type 'BaseGiven<I>'. Did you mean 'fail'?
|
|
59
|
+
/Users/adam/Code/testeranto/src/lib/index.ts (42,12): This expression is not callable.
|
|
60
|
+
Type 'unknown' has no call signatures.
|
|
61
|
+
/Users/adam/Code/testeranto/src/lib/index.ts (50,12): This expression is not callable.
|
|
62
|
+
Type 'unknown' has no call signatures.
|
|
63
|
+
/Users/adam/Code/testeranto/src/lib/Tiposkripto.ts (222,7): Argument of type 'Record<string, any>' is not assignable to parameter of type 'SuiteSpecification<I, O>'.
|
|
64
|
+
/Users/adam/Code/testeranto/src/lib/Tiposkripto.ts (299,15): Expected 1 arguments, but got 3.
|
|
65
|
+
/Users/adam/Code/testeranto/src/PM/web.ts (51,12): Property 'mainFrame' does not exist on type 'string | Page'.
|
|
66
|
+
Property 'mainFrame' does not exist on type 'string'.
|
|
67
|
+
/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 & { ...; }'.
|
|
68
|
+
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
|
|
69
|
+
/Users/adam/Code/testeranto/src/Web.ts (92,12): Cannot find name 'Testeranto'. Did you mean 'WebTesteranto'?
|
package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/lint_errors.txt
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
src/components/pure/ModalContent.test/implementation.tsx
|
|
2
|
+
38:8 'name' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
3
|
+
39:23 'pm' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
4
|
+
|
|
5
|
+
src/components/pure/ModalContent.test/index.tsx
|
|
6
|
+
9:10 'IPM' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
7
|
+
12:21 'input' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
8
|
+
12:28 'testResource' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
9
|
+
12:42 'pm' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
10
|
+
16:44 'testResource' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
11
|
+
16:58 'initialValues' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
12
|
+
16:73 'pm' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
13
|
+
42:28 'key' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
14
|
+
42:33 'pm' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
15
|
+
52:20 'store' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
16
|
+
52:27 'pm' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
@@ -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,27 @@
|
|
|
1
|
+
|
|
2
|
+
/add src/components/pure/ModalContent.test/index.tsx
|
|
3
|
+
/add src/components/pure/ModalContent.test/implementation.tsx
|
|
4
|
+
/add src/components/pure/ModalContent.test/specification.ts
|
|
5
|
+
/add src/components/pure/ModalContent.tsx
|
|
6
|
+
/add src/components/pure/ThemeCard.tsx
|
|
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/ModalContent.test/index/web/tests.json
|
|
14
|
+
/read testeranto/reports/core/src/components/pure/ModalContent.test/index/web/type_errors.txt
|
|
15
|
+
/read testeranto/reports/core/src/components/pure/ModalContent.test/index/web/lint_errors.txt
|
|
16
|
+
|
|
17
|
+
/read testeranto/reports/core/src/components/pure/ModalContent.test/index/web/tests.json
|
|
18
|
+
/read testeranto/reports/core/src/components/pure/ModalContent.test/index/web/type_errors.txt
|
|
19
|
+
/read testeranto/reports/core/src/components/pure/ModalContent.test/index/web/lint_errors.txt
|
|
20
|
+
/read testeranto/reports/core/src/components/pure/ModalContent.test/index/web/exit.log
|
|
21
|
+
/read testeranto/reports/core/src/components/pure/ModalContent.test/index/web/message.txt
|
|
22
|
+
/read testeranto/reports/core/src/components/pure/ModalContent.test/index/web/prompt.txt
|
|
23
|
+
/read testeranto/reports/core/src/components/pure/ModalContent.test/index/web/build.json
|
|
24
|
+
/read testeranto/reports/core/src/components/pure/ModalContent.test/index/web/info.log
|
|
25
|
+
/read testeranto/reports/core/src/components/pure/ModalContent.test/index/web/error.log
|
|
26
|
+
/read testeranto/reports/core/src/components/pure/ModalContent.test/index/web/warn.log
|
|
27
|
+
/read testeranto/reports/core/src/components/pure/ModalContent.test/index/web/debug.log
|
package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/type_errors.txt
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
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/ModalContent.test/implementation.tsx (24,32): Property 'htmlElement' does not exist on type 'IModalContentProps & { container?: HTMLElement | undefined; }'.
|
|
10
|
+
/Users/adam/Code/testeranto/src/components/pure/ModalContent.test/implementation.tsx (32,36): Property 'htmlElement' does not exist on type 'IModalContentProps & { container?: HTMLElement | undefined; }'.
|
|
11
|
+
/Users/adam/Code/testeranto/src/components/pure/ModalContent.test/implementation.tsx (37,5): Type '(name: string) => (state: any, pm: IPM) => Promise<any>' is not assignable to type '(...args: any[]) => (state: IModalContentProps & { container?: HTMLElement | undefined; }) => IModalContentProps & { container?: HTMLElement | undefined; }'.
|
|
12
|
+
Type '(state: any, pm: IPM) => Promise<any>' is not assignable to type '(state: IModalContentProps & { container?: HTMLElement | undefined; }) => IModalContentProps & { container?: HTMLElement | undefined; }'.
|
|
13
|
+
Target signature provides too few arguments. Expected 2 or more, but got 1.
|
|
14
|
+
/Users/adam/Code/testeranto/src/components/pure/ModalContent.test/index.tsx (8,10): Module '"../../../CoreTypes"' has no exported member 'ITestInterface'.
|
|
15
|
+
/Users/adam/Code/testeranto/src/components/pure/ModalContent.test/index.tsx (62,27): Expected 2 type arguments, but got 3.
|
|
16
|
+
/Users/adam/Code/testeranto/src/components/pure/ModalContent.test/specification.ts (20,31): Expected 0 arguments, but got 1.
|
|
17
|
+
/Users/adam/Code/testeranto/src/components/pure/ModalContent.test/specification.ts (21,30): Expected 0 arguments, but got 1.
|
|
18
|
+
/Users/adam/Code/testeranto/src/lib/BaseGiven.ts (68,23): Property 'name' does not exist on type 'never'.
|
|
19
|
+
/Users/adam/Code/testeranto/src/lib/BaseGiven.ts (84,10): Property 'fails' does not exist on type 'BaseGiven<I>'. Did you mean 'fail'?
|
|
20
|
+
/Users/adam/Code/testeranto/src/lib/BaseGiven.ts (139,10): Property 'fails' does not exist on type 'BaseGiven<I>'. Did you mean 'fail'?
|
|
21
|
+
/Users/adam/Code/testeranto/src/lib/BaseGiven.ts (142,28): Property 'name' does not exist on type 'BaseGiven<I>'.
|
|
22
|
+
/Users/adam/Code/testeranto/src/lib/BaseGiven.ts (168,12): Property 'fails' does not exist on type 'BaseGiven<I>'. Did you mean 'fail'?
|
|
23
|
+
/Users/adam/Code/testeranto/src/lib/BaseGiven.ts (227,20): Property 'fails' does not exist on type 'BaseGiven<I>'. Did you mean 'fail'?
|
|
24
|
+
/Users/adam/Code/testeranto/src/lib/BaseGiven.ts (236,18): Property 'fails' does not exist on type 'BaseGiven<I>'. Did you mean 'fail'?
|
|
25
|
+
/Users/adam/Code/testeranto/src/lib/BaseGiven.ts (259,16): Property 'fails' does not exist on type 'BaseGiven<I>'. Did you mean 'fail'?
|
|
26
|
+
/Users/adam/Code/testeranto/src/lib/BaseGiven.ts (283,14): Property 'fails' does not exist on type 'BaseGiven<I>'. Did you mean 'fail'?
|
|
27
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.ts (68,26): Property 'name' does not exist on type 'never'.
|
|
28
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.ts (89,28): Property 'name' does not exist on type 'never'.
|
|
29
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.ts (165,29): Property 'fails' does not exist on type 'BaseGiven<I>'. Did you mean 'fail'?
|
|
30
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.ts (171,19): Property 'fails' does not exist on type 'BaseGiven<I>'. Did you mean 'fail'?
|
|
31
|
+
/Users/adam/Code/testeranto/src/lib/BaseSuite.ts (172,31): Property 'fails' does not exist on type 'BaseGiven<I>'. Did you mean 'fail'?
|
|
32
|
+
/Users/adam/Code/testeranto/src/lib/index.ts (42,12): This expression is not callable.
|
|
33
|
+
Type 'unknown' has no call signatures.
|
|
34
|
+
/Users/adam/Code/testeranto/src/lib/index.ts (50,12): This expression is not callable.
|
|
35
|
+
Type 'unknown' has no call signatures.
|
|
36
|
+
/Users/adam/Code/testeranto/src/lib/Tiposkripto.ts (222,7): Argument of type 'Record<string, any>' is not assignable to parameter of type 'SuiteSpecification<I, O>'.
|
|
37
|
+
/Users/adam/Code/testeranto/src/lib/Tiposkripto.ts (299,15): Expected 1 arguments, but got 3.
|
|
38
|
+
/Users/adam/Code/testeranto/src/PM/web.ts (51,12): Property 'mainFrame' does not exist on type 'string | Page'.
|
|
39
|
+
Property 'mainFrame' does not exist on type 'string'.
|
|
40
|
+
/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 & { ...; }'.
|
|
41
|
+
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
|
|
42
|
+
/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,30 +0,0 @@
|
|
|
1
|
-
TypeError: Cannot read properties of undefined (reading 'path')
|
|
2
|
-
at PM_Web.customScreenShot (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2442:62)
|
|
3
|
-
at Proxy.<anonymous> (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:1976:32)
|
|
4
|
-
<<<<<<< HEAD
|
|
5
|
-
at BaseThen.thenCB (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1756825261876:2051:16)
|
|
6
|
-
=======
|
|
7
|
-
at BaseThen.thenCB (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1756785546552:2051:16)
|
|
8
|
-
>>>>>>> 79d08b7b (svg editor)
|
|
9
|
-
at async file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2741:28
|
|
10
|
-
at async BaseThen.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2833:22)
|
|
11
|
-
at async BaseGiven.give (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2605:9)
|
|
12
|
-
at async BaseSuite.run (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2322:20)
|
|
13
|
-
at async file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2858:21
|
|
14
|
-
at async Object.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2890:31)
|
|
15
|
-
at async WebTesteranto.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2975:12)
|
|
16
|
-
TypeError: Cannot read properties of undefined (reading 'path')
|
|
17
|
-
at PM_Web.customScreenShot (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2442:62)
|
|
18
|
-
at Proxy.<anonymous> (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:1976:32)
|
|
19
|
-
<<<<<<< HEAD
|
|
20
|
-
at BaseThen.thenCB (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1756825261876:2051:16)
|
|
21
|
-
=======
|
|
22
|
-
at BaseThen.thenCB (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs?cacheBust=1756785546552:2051:16)
|
|
23
|
-
>>>>>>> 79d08b7b (svg editor)
|
|
24
|
-
at async file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2741:28
|
|
25
|
-
at async BaseThen.butThen (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2833:22)
|
|
26
|
-
at async BaseGiven.give (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2605:9)
|
|
27
|
-
at async BaseSuite.run (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2322:20)
|
|
28
|
-
at async file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2858:21
|
|
29
|
-
at async Object.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2890:31)
|
|
30
|
-
at async WebTesteranto.receiveTestResourceConfig (file:///Users/adam/Code/testeranto/testeranto/bundles/web/core/chunk-ME6I6FJZ.mjs:2975:12)
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
0
|
package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/lint_errors.txt
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
src/components/pure/BuildLogViewer.tsx
|
|
2
|
+
5:9 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
|
|
3
|
+
- undefined (fix)
|
|
4
|
+
- undefined (fix)
|
|
5
|
+
100:47 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
|
|
6
|
+
- undefined (fix)
|
|
7
|
+
- undefined (fix)
|
|
8
|
+
136:44 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
|
|
9
|
+
- undefined (fix)
|
|
10
|
+
- undefined (fix)
|
|
11
|
+
|
|
12
|
+
src/components/pure/NavBar.tsx
|
|
13
|
+
1:17 'useState' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
14
|
+
1:27 'useEffect' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
15
|
+
2:41 'Button' is defined but never used. (@typescript-eslint/no-unused-vars)
|
|
16
|
+
33:9 'location' is assigned a value but never used. (@typescript-eslint/no-unused-vars)
|
|
17
|
+
|
|
18
|
+
src/components/pure/ProjectPageView.test/implementation.tsx
|
|
19
|
+
101:31 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
|
|
20
|
+
- undefined (fix)
|
|
21
|
+
- undefined (fix)
|
|
22
|
+
102:26 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
|
|
23
|
+
- undefined (fix)
|
|
24
|
+
- undefined (fix)
|
|
25
|
+
125:31 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
|
|
26
|
+
- undefined (fix)
|
|
27
|
+
- undefined (fix)
|
|
28
|
+
126:26 Unexpected any. Specify a different type. (@typescript-eslint/no-explicit-any)
|
|
29
|
+
- undefined (fix)
|
|
30
|
+
- undefined (fix)
|
package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/message.txt
ADDED
|
@@ -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.
|