testeranto 0.202.0 → 0.205.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.vscode/settings.json +1 -0
- package/Dockerfile.golang +14 -0
- package/Dockerfile.mothership +11 -0
- package/Dockerfile.node +9 -0
- package/Dockerfile.python +19 -0
- package/Dockerfile.web +9 -0
- package/README.md +26 -1
- package/UX/chache/index.md +11 -0
- package/bundle.js +2 -11
- package/dist/cjs-shim.js +2 -0
- package/dist/common/example/Calculator.js +105 -0
- package/dist/common/example/Calculator.test.adapter.js +39 -0
- package/dist/common/example/Calculator.test.implementation.js +50 -0
- package/dist/common/example/Calculator.test.js +11 -0
- package/dist/common/example/Calculator.test.specification.js +92 -0
- package/dist/common/example/Calculator.test.types.js +3 -0
- package/dist/common/scripts/build-example.js +105 -0
- package/dist/common/src/Helpo.js +55 -0
- package/dist/common/src/Init.js +9 -1
- package/dist/common/src/Node.js +0 -1
- package/dist/common/src/PM/golingvuBuild.js +46 -0
- package/dist/common/src/PM/pitonoBuild.js +46 -0
- package/dist/common/src/PM/utils.js +8 -1
- package/dist/common/src/PM/web.js +4 -8
- package/dist/common/src/Pure.js +0 -14
- package/dist/common/src/Pure.test.js +1 -6
- package/dist/common/src/Web.js +1 -35
- package/dist/common/src/WebSidecar.js +0 -1
- package/dist/common/src/app/FileService.js +25 -0
- package/dist/common/src/app/api.js +73 -0
- package/dist/common/src/app/backend/PM_0.js +317 -0
- package/dist/common/src/app/backend/PM_1_WithProcesses.js +922 -0
- package/dist/common/src/app/backend/PM_2_WithTCP.js +244 -0
- package/dist/common/src/app/backend/PM_WithBuild.js +120 -0
- package/dist/common/src/app/backend/PM_WithEslintAndTsc.js +133 -0
- package/dist/common/src/app/backend/PM_WithGit.js +586 -0
- package/dist/common/src/app/backend/PM_WithHelpo.js +257 -0
- package/dist/common/src/app/backend/PM_WithProcesses.js +1083 -0
- package/dist/common/src/app/backend/PM_WithTCP.js +388 -0
- package/dist/common/src/app/backend/getAllFilesRecursively.js +22 -0
- package/dist/common/src/app/backend/main.js +804 -0
- package/dist/common/src/app/backend/makePrompt.js +73 -0
- package/dist/common/src/app/backend/utils.js +144 -0
- package/dist/common/src/app/frontend/App.js +206 -0
- package/dist/common/src/app/frontend/DevelopmentFileService.js +98 -0
- package/dist/common/src/app/frontend/GitFileService.js +262 -0
- package/dist/common/src/app/frontend/GitHubAuthService.js +184 -0
- package/dist/common/src/app/frontend/api.js +93 -0
- package/dist/common/src/app/frontend/components/DesignEditorPage.js +208 -0
- package/dist/common/src/app/frontend/components/SunriseAnimation.js +291 -0
- package/dist/common/src/app/frontend/components/SunriseAnimation.test/interface.js +68 -0
- package/dist/common/src/app/frontend/components/pure/AppFrame.js +177 -0
- package/dist/common/src/app/frontend/components/pure/GitHubLoginButton.js +18 -0
- package/dist/common/src/app/frontend/components/pure/GitIntegrationView.js +383 -0
- package/dist/common/src/app/frontend/components/pure/HelpoChatDrawer.js +179 -0
- package/dist/common/src/app/frontend/components/pure/MagicRobotModal.js +73 -0
- package/dist/common/src/app/frontend/components/pure/ModalContent.test/index.js +61 -0
- package/dist/common/src/app/frontend/components/pure/NavBar.js +45 -0
- package/dist/common/src/app/frontend/components/pure/ProcessDetails.js +49 -0
- package/dist/common/src/app/frontend/components/pure/ProcessInput.js +62 -0
- package/dist/common/src/app/frontend/components/pure/ProcessList.js +52 -0
- package/dist/common/src/app/frontend/components/pure/ProcessLogs.js +67 -0
- package/dist/common/src/app/frontend/components/pure/ProcessManager.js +113 -0
- package/dist/common/src/app/frontend/components/pure/ProcessManagerView.js +82 -0
- package/dist/common/src/app/frontend/components/pure/ProcessManagerViewTypes.js +2 -0
- package/dist/common/src/app/frontend/components/pure/ProcessSidebar.js +56 -0
- package/dist/common/src/app/frontend/components/pure/ProcessTerminal.js +62 -0
- package/dist/common/src/app/frontend/components/pure/ProjectPageView.js +69 -0
- package/dist/common/src/app/frontend/components/pure/ProjectPageView.test/implementation.js +185 -0
- package/dist/common/src/app/frontend/components/pure/Settings.js +122 -0
- package/dist/common/src/app/frontend/components/pure/Settings.test.js +30 -0
- package/dist/common/src/app/frontend/components/pure/SignIn.js +22 -0
- package/dist/common/src/app/frontend/components/pure/SingleProcessView.js +126 -0
- package/dist/common/src/app/frontend/components/pure/TerminalInput.js +76 -0
- package/dist/common/src/app/frontend/components/pure/TerminalLogs.js +80 -0
- package/dist/common/src/app/frontend/components/stateful/DratoPage.js +319 -0
- package/dist/common/src/app/frontend/components/stateful/FeaturesReporter.js +22 -0
- package/dist/common/src/app/frontend/components/stateful/GenericXMLEditor/AttributeEditor.js +51 -0
- package/dist/common/src/app/frontend/components/stateful/GenericXMLEditor/Drawer.js +152 -0
- package/dist/common/src/app/frontend/components/stateful/GenericXMLEditor/GenericPreview.js +156 -0
- package/dist/common/src/app/frontend/components/stateful/GenericXMLEditor/GenericTextEditor.js +169 -0
- package/dist/common/src/app/frontend/components/stateful/GenericXMLEditor/GenericTree.js +30 -0
- package/dist/common/src/app/frontend/components/stateful/GenericXMLEditorPage.js +306 -0
- package/dist/common/src/app/frontend/components/stateful/GitIntegrationPage.js +252 -0
- package/dist/common/src/app/frontend/components/stateful/GrafeoPage.js +437 -0
- package/dist/common/src/app/frontend/components/stateful/ProcessManagerPage.js +113 -0
- package/dist/common/src/app/frontend/components/stateful/ProjectPage.js +108 -0
- package/dist/common/src/app/frontend/components/stateful/ProjectsPage.js +136 -0
- package/dist/common/src/app/frontend/components/stateful/SVGEditor/CircleForm.js +24 -0
- package/dist/common/src/app/frontend/components/stateful/SVGEditor/GroupForm.js +22 -0
- package/dist/common/src/app/frontend/components/stateful/SVGEditor/RectForm.js +25 -0
- package/dist/common/src/app/frontend/components/stateful/SVGEditor/SVGAttributeField.js +15 -0
- package/dist/common/src/app/frontend/components/stateful/SVGEditor/SVGAttributesEditor.js +87 -0
- package/dist/common/src/app/frontend/components/stateful/SVGEditor/SVGEditorControls.js +23 -0
- package/dist/common/src/app/frontend/components/stateful/SVGEditor/SVGElementForm.js +23 -0
- package/dist/common/src/app/frontend/components/stateful/SVGEditor/SVGPreview.js +178 -0
- package/dist/common/src/app/frontend/components/stateful/SVGEditor/SVGTextEditor.js +155 -0
- package/dist/common/src/app/frontend/components/stateful/SVGEditor/SVGTree.js +105 -0
- package/dist/common/src/app/frontend/components/stateful/SVGEditor/SVGTypes.js +2 -0
- package/dist/common/src/app/frontend/components/stateful/SVGEditorPage.js +437 -0
- package/dist/common/src/app/frontend/components/stateful/SingleProcessPage.js +134 -0
- package/dist/common/src/app/frontend/components/stateful/SkriboPage.js +517 -0
- package/dist/common/src/app/frontend/fetchDataUtil.js +187 -0
- package/dist/common/src/app/frontend/flua/FluaPage.js +378 -0
- package/dist/common/src/app/frontend/testPage/ITestPageViewProps.js +2 -0
- package/dist/common/src/app/frontend/testPage/ProjectsTree.js +179 -0
- package/dist/common/src/app/frontend/testPage/TestPage.js +85 -0
- package/dist/common/src/app/frontend/testPage/TestPageLeftContent.js +48 -0
- package/dist/common/src/app/frontend/testPage/TestPageMainContent.js +82 -0
- package/dist/common/src/app/frontend/testPage/TestPageNavbar.js +33 -0
- package/dist/common/src/app/frontend/testPage/TestPageView.js +352 -0
- package/dist/common/src/app/frontend/testPage/TestPageView.test/implementation.js +158 -0
- package/dist/common/src/app/frontend/testPage/TestPageView.test/index.js +15 -0
- package/dist/common/src/app/frontend/testPage/TestPageView.test/specification.js +27 -0
- package/dist/common/src/app/frontend/testPage/TestPageView_utils.js +128 -0
- package/dist/common/src/app/frontend/useFileSystemSync.js +108 -0
- package/dist/common/src/app/frontend/useFs.js +15 -0
- package/dist/common/src/app/frontend/useGitMode.js +20 -0
- package/dist/common/src/app/frontend/useTerminalWebSocket.js +44 -0
- package/dist/common/src/app/frontend/useWebSocket.js +16 -0
- package/dist/common/src/app/types.js +2 -0
- package/dist/common/src/builders/golang.js +30 -0
- package/dist/common/src/builders/node.js +35 -0
- package/dist/common/src/builders/python.js +28 -0
- package/dist/common/src/builders/web.js +35 -0
- package/dist/common/src/esbuildConfigs/node.js +3 -1
- package/dist/common/src/lib/BaseGiven.js +95 -18
- package/dist/common/src/lib/BaseSuite.js +55 -8
- package/dist/common/src/lib/BaseSuite.test/test.js +58 -103
- package/dist/common/src/lib/BaseThen.js +28 -29
- package/dist/common/src/lib/BaseWhen.js +7 -5
- package/dist/common/src/lib/Tiposkripto.js +26 -11
- package/dist/common/src/lib/Tiposkripto.test/MockTiposkripto.js +35 -45
- package/dist/common/src/lib/Tiposkripto.test/Tiposkripto.implementation.js +15 -13
- package/dist/common/src/lib/Tiposkripto.test/Tiposkripto.specification.js +8 -5
- package/dist/common/src/lib/pmProxy.js +0 -33
- package/dist/common/src/lib/pmProxy.test/implementation.js +83 -90
- package/dist/common/src/lib/pmProxy.test/index.js +1 -3
- package/dist/common/src/lib/pmProxy.test/mockPM.js +1 -0
- package/dist/common/src/lib/pmProxy.test/specification.js +0 -1
- package/dist/common/src/mothership/index.js +164 -2
- package/dist/common/src/mothership/test.js +4 -2
- package/dist/common/src/testeranto.js +96 -97
- package/dist/common/src/utils/generateGolingvuMetafile.js +157 -0
- package/dist/common/src/utils/golingvuMetafile/fileDiscovery.js +142 -0
- package/dist/common/src/utils/golingvuMetafile/goList.js +103 -0
- package/dist/common/src/utils/golingvuMetafile/helpers.js +68 -0
- package/dist/common/src/utils/golingvuMetafile/importParser.js +89 -0
- package/dist/common/src/utils/golingvuMetafile/types.js +3 -0
- package/dist/common/src/utils/golingvuMetafile.js +7 -114
- package/dist/common/src/utils/golingvuWatcher.js +233 -0
- package/dist/common/src/utils/logFiles.js +9 -1
- package/dist/common/src/utils/pitonoMetafile.js +222 -42
- package/dist/common/src/utils/pitonoWatcher.js +130 -0
- package/dist/common/src/utils/writeGolingvuMetafile.js +324 -0
- package/dist/common/testeranto.config.js +28 -39
- package/dist/common/tsconfig.common.tsbuildinfo +1 -1
- package/dist/module/example/Calculator.js +101 -0
- package/dist/module/example/Calculator.test.adapter.js +36 -0
- package/dist/module/example/Calculator.test.implementation.js +47 -0
- package/dist/module/example/Calculator.test.js +6 -0
- package/dist/module/example/Calculator.test.specification.js +88 -0
- package/dist/module/example/Calculator.test.types.js +2 -0
- package/dist/module/scripts/build-example.js +100 -0
- package/dist/module/src/Helpo.js +48 -0
- package/dist/module/src/Init.js +9 -1
- package/dist/module/src/Node.js +0 -1
- package/dist/module/src/PM/golingvuBuild.js +42 -0
- package/dist/module/src/PM/pitonoBuild.js +42 -0
- package/dist/module/src/PM/utils.js +8 -1
- package/dist/module/src/PM/web.js +4 -8
- package/dist/module/src/Pure.js +0 -14
- package/dist/module/src/Pure.test.js +1 -6
- package/dist/module/src/Web.js +1 -35
- package/dist/module/src/WebSidecar.js +0 -1
- package/dist/module/src/app/FileService.js +21 -0
- package/dist/module/src/app/api.js +70 -0
- package/dist/module/src/app/backend/PM_0.js +310 -0
- package/dist/module/src/app/backend/PM_1_WithProcesses.js +882 -0
- package/dist/module/src/app/backend/PM_2_WithTCP.js +237 -0
- package/dist/module/src/app/backend/PM_WithBuild.js +113 -0
- package/dist/module/src/app/backend/PM_WithEslintAndTsc.js +126 -0
- package/dist/module/src/app/backend/PM_WithGit.js +546 -0
- package/dist/module/src/app/backend/PM_WithHelpo.js +250 -0
- package/dist/module/src/app/backend/PM_WithProcesses.js +1083 -0
- package/dist/module/src/app/backend/PM_WithTCP.js +381 -0
- package/dist/module/src/app/backend/getAllFilesRecursively.js +16 -0
- package/dist/module/src/app/backend/main.js +764 -0
- package/dist/module/src/app/backend/makePrompt.js +66 -0
- package/dist/module/src/app/backend/utils.js +131 -0
- package/dist/module/src/app/frontend/App.js +164 -0
- package/dist/module/src/app/frontend/DevelopmentFileService.js +91 -0
- package/dist/module/src/app/frontend/GitFileService.js +258 -0
- package/dist/module/src/app/frontend/GitHubAuthService.js +180 -0
- package/dist/module/src/app/frontend/api.js +87 -0
- package/dist/module/src/app/frontend/components/DesignEditorPage.js +171 -0
- package/dist/module/src/app/frontend/components/SunriseAnimation.js +256 -0
- package/dist/module/src/app/frontend/components/SunriseAnimation.test/interface.js +32 -0
- package/dist/module/src/app/frontend/components/pure/AppFrame.js +140 -0
- package/dist/module/src/app/frontend/components/pure/GitHubLoginButton.js +11 -0
- package/dist/module/src/app/frontend/components/pure/GitIntegrationView.js +346 -0
- package/dist/module/src/app/frontend/components/pure/HelpoChatDrawer.js +142 -0
- package/dist/module/src/app/frontend/components/pure/MagicRobotModal.js +66 -0
- package/dist/module/src/app/frontend/components/pure/ModalContent.test/index.js +56 -0
- package/dist/module/src/app/frontend/components/pure/NavBar.js +38 -0
- package/dist/module/src/app/frontend/components/pure/ProcessDetails.js +42 -0
- package/dist/module/src/app/frontend/components/pure/ProcessInput.js +25 -0
- package/dist/module/src/app/frontend/components/pure/ProcessList.js +45 -0
- package/dist/module/src/app/frontend/components/pure/ProcessLogs.js +30 -0
- package/dist/module/src/app/frontend/components/pure/ProcessManager.js +76 -0
- package/dist/module/src/app/frontend/components/pure/ProcessManagerView.js +45 -0
- package/dist/module/src/app/frontend/components/pure/ProcessSidebar.js +49 -0
- package/dist/module/src/app/frontend/components/pure/ProcessTerminal.js +25 -0
- package/dist/module/src/app/frontend/components/pure/ProjectPageView.js +62 -0
- package/dist/module/src/app/frontend/components/pure/ProjectPageView.test/implementation.js +182 -0
- package/dist/module/src/app/frontend/components/pure/Settings.js +85 -0
- package/dist/module/src/app/frontend/components/pure/Settings.test.js +30 -0
- package/dist/module/src/app/frontend/components/pure/SignIn.js +15 -0
- package/dist/module/src/app/frontend/components/pure/SingleProcessView.js +126 -0
- package/dist/module/src/app/frontend/components/pure/TerminalInput.js +39 -0
- package/dist/module/src/app/frontend/components/pure/TerminalLogs.js +43 -0
- package/dist/module/src/app/frontend/components/stateful/DratoPage.js +282 -0
- package/dist/module/src/app/frontend/components/stateful/FeaturesReporter.js +22 -0
- package/dist/module/src/app/frontend/components/stateful/GenericXMLEditor/AttributeEditor.js +44 -0
- package/dist/module/src/app/frontend/components/stateful/GenericXMLEditor/Drawer.js +115 -0
- package/dist/module/src/app/frontend/components/stateful/GenericXMLEditor/GenericPreview.js +119 -0
- package/dist/module/src/app/frontend/components/stateful/GenericXMLEditor/GenericTextEditor.js +132 -0
- package/dist/module/src/app/frontend/components/stateful/GenericXMLEditor/GenericTree.js +23 -0
- package/dist/module/src/app/frontend/components/stateful/GenericXMLEditorPage.js +269 -0
- package/dist/module/src/app/frontend/components/stateful/GitIntegrationPage.js +215 -0
- package/dist/module/src/app/frontend/components/stateful/GrafeoPage.js +400 -0
- package/dist/module/src/app/frontend/components/stateful/ProcessManagerPage.js +76 -0
- package/dist/module/src/app/frontend/components/stateful/ProjectPage.js +71 -0
- package/dist/module/src/app/frontend/components/stateful/ProjectsPage.js +99 -0
- package/dist/module/src/app/frontend/components/stateful/SVGEditor/CircleForm.js +17 -0
- package/dist/module/src/app/frontend/components/stateful/SVGEditor/GroupForm.js +15 -0
- package/dist/module/src/app/frontend/components/stateful/SVGEditor/RectForm.js +18 -0
- package/dist/module/src/app/frontend/components/stateful/SVGEditor/SVGAttributeField.js +8 -0
- package/dist/module/src/app/frontend/components/stateful/SVGEditor/SVGAttributesEditor.js +50 -0
- package/dist/module/src/app/frontend/components/stateful/SVGEditor/SVGEditorControls.js +16 -0
- package/dist/module/src/app/frontend/components/stateful/SVGEditor/SVGElementForm.js +16 -0
- package/dist/module/src/app/frontend/components/stateful/SVGEditor/SVGPreview.js +141 -0
- package/dist/module/src/app/frontend/components/stateful/SVGEditor/SVGTextEditor.js +118 -0
- package/dist/module/src/app/frontend/components/stateful/SVGEditor/SVGTree.js +68 -0
- package/dist/module/src/app/frontend/components/stateful/SVGEditor/SVGTypes.js +1 -0
- package/dist/module/src/app/frontend/components/stateful/SVGEditorPage.js +400 -0
- package/dist/module/src/app/frontend/components/stateful/SingleProcessPage.js +134 -0
- package/dist/module/src/app/frontend/components/stateful/SkriboPage.js +510 -0
- package/dist/module/src/app/frontend/fetchDataUtil.js +187 -0
- package/dist/module/src/app/frontend/flua/FluaPage.js +341 -0
- package/dist/module/src/app/frontend/testPage/ITestPageViewProps.js +1 -0
- package/dist/module/src/app/frontend/testPage/ProjectsTree.js +142 -0
- package/dist/module/src/app/frontend/testPage/TestPage.js +48 -0
- package/dist/module/src/app/frontend/testPage/TestPageLeftContent.js +11 -0
- package/dist/module/src/app/frontend/testPage/TestPageMainContent.js +75 -0
- package/dist/module/src/app/frontend/testPage/TestPageNavbar.js +26 -0
- package/dist/module/src/app/frontend/testPage/TestPageView.js +315 -0
- package/dist/module/src/app/frontend/testPage/TestPageView.test/implementation.js +122 -0
- package/dist/module/src/app/frontend/testPage/TestPageView.test/index.js +10 -0
- package/dist/module/src/app/frontend/testPage/TestPageView.test/specification.js +23 -0
- package/dist/module/src/app/frontend/testPage/TestPageView_utils.js +120 -0
- package/dist/module/src/app/frontend/useFileSystemSync.js +108 -0
- package/dist/module/src/app/frontend/useFs.js +11 -0
- package/dist/module/src/app/frontend/useGitMode.js +16 -0
- package/dist/module/src/app/frontend/useTerminalWebSocket.js +40 -0
- package/dist/module/src/app/frontend/useWebSocket.js +12 -0
- package/dist/module/src/app/types.js +1 -0
- package/dist/module/src/builders/golang.js +28 -0
- package/dist/module/src/builders/node.js +33 -0
- package/dist/module/src/builders/python.js +26 -0
- package/dist/module/src/builders/web.js +33 -0
- package/dist/module/src/esbuildConfigs/node.js +3 -1
- package/dist/module/src/lib/BaseGiven.js +95 -18
- package/dist/module/src/lib/BaseSuite.js +55 -8
- package/dist/module/src/lib/BaseSuite.test/test.js +58 -103
- package/dist/module/src/lib/BaseThen.js +28 -29
- package/dist/module/src/lib/BaseWhen.js +7 -5
- package/dist/module/src/lib/Tiposkripto.js +26 -11
- package/dist/module/src/lib/Tiposkripto.test/MockTiposkripto.js +35 -45
- package/dist/module/src/lib/Tiposkripto.test/Tiposkripto.implementation.js +15 -13
- package/dist/module/src/lib/Tiposkripto.test/Tiposkripto.specification.js +8 -5
- package/dist/module/src/lib/pmProxy.js +0 -33
- package/dist/module/src/lib/pmProxy.test/implementation.js +83 -90
- package/dist/module/src/lib/pmProxy.test/index.js +1 -3
- package/dist/module/src/lib/pmProxy.test/mockPM.js +1 -0
- package/dist/module/src/lib/pmProxy.test/specification.js +0 -1
- package/dist/module/src/mothership/index.js +164 -2
- package/dist/module/src/mothership/test.js +4 -2
- package/dist/module/src/testeranto.js +94 -95
- package/dist/module/src/utils/generateGolingvuMetafile.js +151 -0
- package/dist/module/src/utils/golingvuMetafile/fileDiscovery.js +136 -0
- package/dist/module/src/utils/golingvuMetafile/goList.js +97 -0
- package/dist/module/src/utils/golingvuMetafile/helpers.js +59 -0
- package/dist/module/src/utils/golingvuMetafile/importParser.js +83 -0
- package/dist/module/src/utils/golingvuMetafile/types.js +2 -0
- package/dist/module/src/utils/golingvuMetafile.js +6 -109
- package/dist/module/src/utils/golingvuWatcher.js +226 -0
- package/dist/module/src/utils/logFiles.js +9 -1
- package/dist/module/src/utils/pitonoMetafile.js +224 -44
- package/dist/module/src/utils/pitonoWatcher.js +123 -0
- package/dist/module/src/utils/writeGolingvuMetafile.js +318 -0
- package/dist/module/testeranto.config.js +28 -39
- package/dist/module/tsconfig.module.tsbuildinfo +1 -1
- package/dist/prebuild/App.css +251 -173
- package/dist/prebuild/App.js +20096 -43669
- package/dist/prebuild/init-docs.mjs +9 -1
- package/dist/prebuild/testeranto.mjs +3635 -2389
- package/dist/types/src/Helpo.d.ts +1 -0
- package/dist/types/src/PM/golingvuBuild.d.ts +11 -0
- package/dist/types/src/PM/pitonoBuild.d.ts +11 -0
- package/dist/types/src/PM/web.d.ts +4 -4
- package/dist/types/src/Pure.d.ts +1 -1
- package/dist/types/src/Pure.test.d.ts +60 -1
- package/dist/types/src/Types.d.ts +1 -0
- package/dist/types/src/Web.d.ts +1 -1
- package/dist/types/src/app/FileService.d.ts +37 -0
- package/dist/types/src/app/api.d.ts +37 -0
- package/dist/types/src/app/backend/PM_0.d.ts +38 -0
- package/dist/types/src/app/backend/PM_1_WithProcesses.d.ts +149 -0
- package/dist/types/src/app/backend/PM_2_WithTCP.d.ts +29 -0
- package/dist/types/src/app/backend/PM_WithBuild.d.ts +8 -0
- package/dist/types/src/app/backend/PM_WithEslintAndTsc.d.ts +22 -0
- package/dist/types/src/app/backend/PM_WithGit.d.ts +24 -0
- package/dist/types/src/app/backend/PM_WithHelpo.d.ts +43 -0
- package/dist/types/src/app/backend/PM_WithTCP.d.ts +41 -0
- package/dist/types/src/app/backend/getAllFilesRecursively.d.ts +1 -0
- package/dist/types/src/app/backend/main.d.ts +15 -0
- package/dist/types/src/app/backend/makePrompt.d.ts +2 -0
- package/dist/types/src/app/backend/utils.d.ts +20 -0
- package/dist/types/src/app/frontend/App.d.ts +14 -0
- package/dist/types/src/app/frontend/DevelopmentFileService.d.ts +25 -0
- package/dist/types/src/app/frontend/GitFileService.d.ts +27 -0
- package/dist/types/src/app/frontend/api.d.ts +10 -0
- package/dist/types/src/app/frontend/components/SunriseAnimation.test/interface.d.ts +11 -0
- package/dist/types/src/app/frontend/components/SunriseAnimation.test/types.d.ts +39 -0
- package/dist/types/src/app/frontend/components/pure/AppFrame.d.ts +11 -0
- package/dist/types/src/app/frontend/components/pure/AppFrame.test/index.d.ts +3 -0
- package/dist/types/src/app/frontend/components/pure/FeaturesReporterView.d.ts +7 -0
- package/dist/types/src/app/frontend/components/pure/FeaturesReporterView.test/index.d.ts +2 -0
- package/dist/types/src/app/frontend/components/pure/GitIntegrationView.d.ts +27 -0
- package/dist/types/src/app/frontend/components/pure/HelpoChatDrawer.d.ts +7 -0
- package/dist/types/src/app/frontend/components/pure/MagicRobotModal.d.ts +16 -0
- package/dist/types/src/app/frontend/components/pure/ModalContent.test/index.d.ts +14 -0
- package/dist/types/src/app/frontend/components/pure/ProcessDetails.d.ts +8 -0
- package/dist/types/src/app/frontend/components/pure/ProcessInput.d.ts +10 -0
- package/dist/types/src/app/frontend/components/pure/ProcessList.d.ts +10 -0
- package/dist/types/src/app/frontend/components/pure/ProcessLogs.d.ts +6 -0
- package/dist/types/src/app/frontend/components/pure/ProcessManagerView.d.ts +10 -0
- package/dist/types/src/app/frontend/components/pure/ProcessManagerViewTypes.d.ts +10 -0
- package/dist/types/src/app/frontend/components/pure/ProcessSidebar.d.ts +8 -0
- package/dist/types/src/app/frontend/components/pure/ProcessTerminal.d.ts +8 -0
- package/dist/types/src/app/frontend/components/pure/ProjectPageView.d.ts +14 -0
- package/dist/types/src/app/frontend/components/pure/ProjectPageView.test/implementation.d.ts +3 -0
- package/dist/types/src/app/frontend/components/pure/ProjectPageView.test/index.d.ts +17 -0
- package/dist/types/src/app/frontend/components/pure/TerminalInput.d.ts +6 -0
- package/dist/types/src/app/frontend/components/pure/TerminalLogs.d.ts +6 -0
- package/dist/types/src/app/frontend/components/stateful/DratoPage.d.ts +8 -0
- package/dist/types/src/app/frontend/components/stateful/GenericXMLEditor/AttributeEditor.d.ts +9 -0
- package/dist/types/src/app/frontend/components/stateful/GenericXMLEditor/Drawer.d.ts +12 -0
- package/dist/types/src/app/frontend/components/stateful/GenericXMLEditor/GenericPreview.d.ts +11 -0
- package/dist/types/src/app/frontend/components/stateful/GenericXMLEditor/GenericTextEditor.d.ts +8 -0
- package/dist/types/src/app/frontend/components/stateful/GenericXMLEditor/GenericTree.d.ts +17 -0
- package/dist/types/src/app/frontend/components/stateful/GenericXMLEditorPage.d.ts +21 -0
- package/dist/types/src/app/frontend/components/stateful/GrafeoPage.d.ts +8 -0
- package/dist/types/src/app/frontend/components/stateful/SVGEditor/CircleForm.d.ts +8 -0
- package/dist/types/src/app/frontend/components/stateful/SVGEditor/GroupForm.d.ts +8 -0
- package/dist/types/src/app/frontend/components/stateful/SVGEditor/RectForm.d.ts +8 -0
- package/dist/types/src/app/frontend/components/stateful/SVGEditor/SVGAttributeField.d.ts +9 -0
- package/dist/types/src/app/frontend/components/stateful/SVGEditor/SVGAttributesEditor.d.ts +9 -0
- package/dist/types/src/app/frontend/components/stateful/SVGEditor/SVGEditorControls.d.ts +9 -0
- package/dist/types/src/app/frontend/components/stateful/SVGEditor/SVGElementForm.d.ts +9 -0
- package/dist/types/src/app/frontend/components/stateful/SVGEditor/SVGPreview.d.ts +12 -0
- package/dist/types/src/app/frontend/components/stateful/SVGEditor/SVGTextEditor.d.ts +8 -0
- package/dist/types/src/app/frontend/components/stateful/SVGEditor/SVGTree.d.ts +20 -0
- package/dist/types/src/app/frontend/components/stateful/SVGEditor/SVGTypes.d.ts +30 -0
- package/dist/types/src/app/frontend/components/stateful/SVGEditorPage.d.ts +7 -0
- package/dist/types/src/app/frontend/components/stateful/SkriboPage.d.ts +1 -0
- package/dist/types/src/app/frontend/flua/FluaPage.d.ts +2 -0
- package/dist/types/src/app/frontend/testPage/ITestPageViewProps.d.ts +14 -0
- package/dist/types/src/app/frontend/testPage/ProjectsTree.d.ts +17 -0
- package/dist/types/src/app/frontend/testPage/TestPageLeftContent.d.ts +14 -0
- package/dist/types/src/app/frontend/testPage/TestPageMainContent.d.ts +7 -0
- package/dist/types/src/app/frontend/testPage/TestPageNavbar.d.ts +7 -0
- package/dist/types/src/app/frontend/testPage/TestPageView.d.ts +2 -0
- package/dist/types/src/app/frontend/testPage/TestPageView.test/implementation.d.ts +13 -0
- package/dist/types/src/app/frontend/testPage/TestPageView.test/index.d.ts +13 -0
- package/dist/types/src/app/frontend/testPage/TestPageView.test/specification.d.ts +11 -0
- package/dist/types/src/app/frontend/testPage/TestPageView.test/types.d.ts +65 -0
- package/dist/types/src/app/frontend/testPage/TestPageView_utils.d.ts +23 -0
- package/dist/types/src/app/frontend/useFs.d.ts +2 -0
- package/dist/types/src/app/frontend/useTerminalWebSocket.d.ts +4 -0
- package/dist/types/src/app/frontend/useWebSocket.d.ts +8 -0
- package/dist/types/src/app/types.d.ts +1 -0
- package/dist/types/src/builders/golang.d.ts +1 -0
- package/dist/types/src/builders/node.d.ts +1 -0
- package/dist/types/src/builders/python.d.ts +1 -0
- package/dist/types/src/builders/web.d.ts +1 -0
- package/dist/types/src/lib/BaseGiven.d.ts +3 -3
- package/dist/types/src/lib/BaseSuite.d.ts +4 -3
- package/dist/types/src/lib/BaseSuite.test/pure.test.d.ts +2 -1
- package/dist/types/src/lib/BaseSuite.test/web.test.d.ts +2 -1
- package/dist/types/src/lib/BaseThen.d.ts +2 -0
- package/dist/types/src/lib/BaseWhen.d.ts +2 -0
- package/dist/types/src/lib/pmProxy.test/mockPMBase.d.ts +1 -1
- package/dist/types/src/utils/generateGolingvuMetafile.d.ts +2 -0
- package/dist/types/src/utils/golingvuMetafile/fileDiscovery.d.ts +1 -0
- package/dist/types/src/utils/golingvuMetafile/goList.d.ts +2 -0
- package/dist/types/src/utils/golingvuMetafile/helpers.d.ts +7 -0
- package/dist/types/src/utils/golingvuMetafile/importParser.d.ts +5 -0
- package/dist/types/src/utils/golingvuMetafile/types.d.ts +66 -0
- package/dist/types/src/utils/golingvuMetafile.d.ts +4 -19
- package/dist/types/src/utils/golingvuWatcher.d.ts +14 -0
- package/dist/types/src/utils/logFiles.d.ts +29 -1
- package/dist/types/src/utils/pitonoMetafile.d.ts +18 -3
- package/dist/types/src/utils/pitonoWatcher.d.ts +13 -0
- package/dist/types/src/utils/writeGolingvuMetafile.d.ts +2 -0
- package/dist/types/tsconfig.types.tsbuildinfo +1 -1
- package/docker-compose.yml +74 -0
- package/docs/testing.prompt.txt +5 -1
- package/example/Calculator.go +99 -0
- package/example/Calculator.golingvu.adapter.go +81 -0
- package/example/Calculator.golingvu.implementation.go +144 -0
- package/example/Calculator.golingvu.specification.go +68 -0
- package/example/Calculator.golingvu.test.go +216 -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 +132 -0
- package/example/Calculator.py +93 -0
- package/example/Calculator.test.adapter.ts +46 -0
- package/example/Calculator.test.implementation.ts +55 -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 +114 -0
- package/example/README.md +1 -0
- package/example/__pycache__/Calculator.cpython-313.pyc +0 -0
- package/example/go.mod +7 -0
- package/example/go.sum +2 -0
- package/example/requirements.txt +9 -0
- package/example/single-kanban-process.xml +9 -0
- package/example/test_example.py +143 -74
- package/example/vendor/github.com/adamwong246/testeranto/src/golingvu/LICENSE +21 -0
- package/example/vendor/github.com/adamwong246/testeranto/src/golingvu/golingvu.go +398 -63
- package/example/vendor/modules.txt +1 -2
- package/go.mod +6 -1
- package/go.sum +2 -0
- package/golingvu.tmp.txt +68 -0
- package/log.txt +39 -0
- package/package.json +61 -44
- package/scripts/build-example.ts +106 -0
- package/src/Helpo.tsx +89 -0
- package/src/Init.ts +9 -1
- package/src/Node.ts +0 -1
- package/src/NodeSidecar.ts +0 -8
- package/src/PM/__tests__/nodeSidecar.testeranto.ts +4 -1
- package/src/PM/golingvuBuild.ts +56 -0
- package/src/PM/pitonoBuild.ts +56 -0
- package/src/PM/types.ts +1 -0
- package/src/PM/utils.ts +7 -1
- package/src/PM/web.ts +8 -24
- package/src/Pure.test.ts +18 -9
- package/src/Pure.ts +1 -16
- package/src/Types.ts +1 -0
- package/src/Web.ts +2 -38
- package/src/WebSidecar.ts +1 -1
- package/src/app/FileService.ts +91 -0
- package/src/app/api.ts +75 -0
- package/src/app/backend/PM_0.ts +392 -0
- package/src/app/backend/PM_1_WithProcesses.ts +1186 -0
- package/src/app/backend/PM_2_WithTCP.ts +283 -0
- package/src/app/backend/PM_WithBuild.ts +148 -0
- package/src/app/backend/PM_WithEslintAndTsc.ts +194 -0
- package/src/app/backend/PM_WithGit.ts +662 -0
- package/src/app/backend/PM_WithHelpo.ts +340 -0
- package/src/app/backend/PM_WithProcesses.ts +1247 -0
- package/src/app/backend/PM_WithTCP.ts +777 -0
- package/src/app/backend/getAllFilesRecursively.ts +17 -0
- package/src/app/backend/main.ts +1011 -0
- package/src/app/backend/makePrompt.ts +92 -0
- package/src/app/backend/utils.ts +202 -0
- package/src/app/frontend/App.tsx +242 -0
- package/src/app/frontend/DevelopmentFileService.ts +117 -0
- package/src/app/frontend/GitFileService.ts +285 -0
- package/src/app/frontend/GitHubAuthService.ts +241 -0
- package/src/app/frontend/api.ts +108 -0
- package/src/app/frontend/app.scss +119 -0
- package/src/app/frontend/components/DesignEditorPage.tsx +210 -0
- package/src/app/frontend/components/SunriseAnimation.test/interface.ts +50 -0
- package/src/app/frontend/components/SunriseAnimation.test/types.ts +53 -0
- package/src/app/frontend/components/SunriseAnimation.tsx +350 -0
- package/src/app/frontend/components/pure/AppFrame.tsx +445 -0
- package/src/app/frontend/components/pure/FeaturesReporterView.tsx +38 -0
- package/src/app/frontend/components/pure/GitHubLoginButton.tsx +32 -0
- package/src/app/frontend/components/pure/GitIntegrationView.tsx +727 -0
- package/src/app/frontend/components/pure/HelpoChatDrawer.tsx +223 -0
- package/src/app/frontend/components/pure/MagicRobotModal.tsx +135 -0
- package/src/app/frontend/components/pure/ModalContent.test/index.tsx +68 -0
- package/src/app/frontend/components/pure/NavBar.tsx +119 -0
- package/src/app/frontend/components/pure/ProcessDetails.tsx +99 -0
- package/src/app/frontend/components/pure/ProcessInput.tsx +67 -0
- package/src/app/frontend/components/pure/ProcessList.tsx +89 -0
- package/src/app/frontend/components/pure/ProcessLogs.tsx +54 -0
- package/src/app/frontend/components/pure/ProcessManager.tsx +109 -0
- package/src/app/frontend/components/pure/ProcessManagerView.tsx +89 -0
- package/src/app/frontend/components/pure/ProcessManagerViewTypes.ts +10 -0
- package/src/app/frontend/components/pure/ProcessSidebar.tsx +88 -0
- package/src/app/frontend/components/pure/ProcessTerminal.tsx +55 -0
- package/src/app/frontend/components/pure/ProjectPageView.test/implementation.tsx +216 -0
- package/src/app/frontend/components/pure/ProjectPageView.tsx +165 -0
- package/src/app/frontend/components/pure/Settings.test.tsx +34 -0
- package/src/app/frontend/components/pure/Settings.tsx +171 -0
- package/src/app/frontend/components/pure/SignIn.tsx +33 -0
- package/src/app/frontend/components/pure/SingleProcessView.tsx +140 -0
- package/src/app/frontend/components/pure/TerminalInput.tsx +73 -0
- package/src/app/frontend/components/pure/TerminalLogs.tsx +80 -0
- package/src/app/frontend/components/stateful/DratoPage.tsx +457 -0
- package/src/app/frontend/components/stateful/FeaturesReporter.tsx +27 -0
- package/src/app/frontend/components/stateful/GenericXMLEditor/AttributeEditor.tsx +105 -0
- package/src/app/frontend/components/stateful/GenericXMLEditor/Drawer.tsx +174 -0
- package/src/app/frontend/components/stateful/GenericXMLEditor/GenericPreview.tsx +234 -0
- package/src/app/frontend/components/stateful/GenericXMLEditor/GenericTextEditor.tsx +173 -0
- package/src/app/frontend/components/stateful/GenericXMLEditor/GenericTree.tsx +105 -0
- package/src/app/frontend/components/stateful/GenericXMLEditorPage.tsx +455 -0
- package/src/app/frontend/components/stateful/GitIntegrationPage.tsx +256 -0
- package/src/app/frontend/components/stateful/GrafeoPage.tsx +563 -0
- package/src/app/frontend/components/stateful/ProcessManagerPage.tsx +110 -0
- package/src/app/frontend/components/stateful/ProjectPage.tsx +94 -0
- package/src/app/frontend/components/stateful/ProjectsPage.tsx +129 -0
- package/src/app/frontend/components/stateful/SVGEditor/SVGAttributesEditor.tsx +91 -0
- package/src/app/frontend/components/stateful/SVGEditor/SVGPreview.tsx +227 -0
- package/src/app/frontend/components/stateful/SVGEditorPage.tsx +517 -0
- package/src/app/frontend/components/stateful/SingleProcessPage.tsx +144 -0
- package/src/app/frontend/components/stateful/SkriboPage.tsx +577 -0
- package/src/app/frontend/fetchDataUtil.ts +206 -0
- package/src/app/frontend/flua/FluaPage.tsx +458 -0
- package/src/app/frontend/flua/agile.xsd +32 -0
- package/src/app/frontend/flua/core.xsd +42 -0
- package/src/app/frontend/flua/kanban.xsd +21 -0
- package/src/app/frontend/flua/scrum.xsd +35 -0
- package/src/app/frontend/testPage/ITestPageViewProps.ts +14 -0
- package/src/app/frontend/testPage/ProjectsTree.tsx +329 -0
- package/src/app/frontend/testPage/TestPage.tsx +75 -0
- package/src/app/frontend/testPage/TestPageLeftContent.tsx +54 -0
- package/src/app/frontend/testPage/TestPageMainContent.tsx +181 -0
- package/src/app/frontend/testPage/TestPageNavbar.tsx +52 -0
- package/src/app/frontend/testPage/TestPageView.test/implementation.ts +209 -0
- package/src/app/frontend/testPage/TestPageView.test/index.tsx +22 -0
- package/src/app/frontend/testPage/TestPageView.test/specification.ts +60 -0
- package/src/app/frontend/testPage/TestPageView.test/types.ts +92 -0
- package/src/app/frontend/testPage/TestPageView.tsx +481 -0
- package/src/app/frontend/testPage/TestPageView_utils.tsx +301 -0
- package/src/app/frontend/testPage/index.md +14 -0
- package/src/app/frontend/useFileSystemSync.ts +117 -0
- package/src/app/frontend/useFs.ts +16 -0
- package/src/app/frontend/useGitMode.ts +21 -0
- package/src/app/frontend/useTerminalWebSocket.ts +56 -0
- package/src/app/frontend/useWebSocket.ts +20 -0
- package/src/app/trash +1697 -0
- package/src/app/types.ts +1 -0
- package/src/builders/golang.ts +29 -0
- package/src/builders/node.ts +34 -0
- package/src/builders/python.ts +28 -0
- package/src/builders/web.ts +34 -0
- package/src/cjs-shim.js +2 -0
- package/src/esbuildConfigs/node.ts +1 -1
- package/src/golingvu/PM/golang_test.go +103 -0
- package/src/golingvu/README.md +186 -2
- package/src/golingvu/base_given.go +110 -24
- package/src/golingvu/base_suite.go +54 -8
- package/src/golingvu/base_then.go +2 -2
- package/src/golingvu/base_when.go +2 -2
- package/src/golingvu/go.mod +6 -0
- package/src/golingvu/golingvu.go +683 -32
- package/src/golingvu/types.go +0 -14
- package/src/graphml.xsd +345 -0
- package/src/helpo/directives.md +5 -0
- package/src/helpo/prompt.txt +38 -0
- package/src/lib/BaseGiven.ts +106 -32
- package/src/lib/BaseSuite.test/test.ts +92 -180
- package/src/lib/BaseSuite.ts +60 -10
- package/src/lib/BaseThen.ts +36 -37
- package/src/lib/BaseWhen.ts +12 -13
- package/src/lib/Tiposkripto.test/MockTiposkripto.ts +59 -63
- package/src/lib/Tiposkripto.test/Tiposkripto.implementation.ts +33 -20
- package/src/lib/Tiposkripto.test/Tiposkripto.specification.ts +9 -8
- package/src/lib/Tiposkripto.ts +27 -15
- package/src/lib/pmProxy.test/implementation.ts +112 -117
- package/src/lib/pmProxy.test/index.ts +2 -2
- package/src/lib/pmProxy.test/mockPM.ts +1 -0
- package/src/lib/pmProxy.test/mockPMBase.ts +1 -1
- package/src/lib/pmProxy.test/specification.ts +0 -2
- package/src/lib/pmProxy.test/types.ts +1 -0
- package/src/lib/pmProxy.ts +0 -37
- package/src/mothership/index.ts +197 -2
- package/src/mothership/test.ts +5 -5
- package/src/pitono/PM/__pycache__/python.cpython-313.pyc +0 -0
- package/src/pitono/PM/python.py +168 -0
- package/src/pitono/Pitono.py +444 -0
- package/src/pitono/PitonoTest.py +25 -0
- package/src/pitono/README.md +21 -0
- package/src/pitono/__init__.py +6 -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/pitono/base_given.py +178 -0
- package/src/pitono/base_suite.py +149 -0
- package/src/pitono/base_then.py +65 -0
- package/src/pitono/base_when.py +67 -0
- package/src/pitono/pitono.egg-info/PKG-INFO +42 -0
- package/src/pitono/pitono.egg-info/SOURCES.txt +8 -0
- package/src/pitono/types.py +87 -0
- package/src/style.scss +261 -2
- package/src/testeranto.ts +120 -153
- package/src/utils/generateGolingvuMetafile.ts +196 -0
- package/src/utils/golingvuMetafile/fileDiscovery.ts +157 -0
- package/src/utils/golingvuMetafile/goList.ts +106 -0
- package/src/utils/golingvuMetafile/helpers.ts +65 -0
- package/src/utils/golingvuMetafile/importParser.ts +97 -0
- package/src/utils/golingvuMetafile/types.ts +78 -0
- package/src/utils/golingvuMetafile.ts +6 -163
- package/src/utils/golingvuWatcher.ts +280 -0
- package/src/utils/logFiles.ts +10 -2
- package/src/utils/pitonoMetafile.ts +328 -58
- package/src/utils/pitonoWatcher.ts +150 -0
- package/src/utils/writeGolingvuMetafile.ts +386 -0
- package/testeranto/App.css +251 -173
- package/testeranto/App.js +20080 -43664
- package/testeranto/bundles/golang/core/example/Calculator.golingvu.test +58 -0
- package/testeranto/bundles/node/core/example/Calculator.test.mjs +5481 -122
- package/testeranto/bundles/python/core/Calculator.pitono.test.py +1 -1
- package/testeranto/helpo_chat_history.json +1 -0
- package/testeranto/metafiles/golang/core.json +144 -49
- package/testeranto/metafiles/node/core.json +92 -583
- package/testeranto/metafiles/python/core.json +50 -9
- package/testeranto/reports/core/config.json +5 -61
- package/testeranto/reports/core/example/Calculator.golingvu.test/golang/exit.log +1 -0
- package/testeranto/reports/core/example/Calculator.golingvu.test/golang/stderr.log +7 -0
- package/testeranto/reports/core/example/Calculator.pitono.test/python/message.txt +16 -0
- package/testeranto/reports/core/example/Calculator.pitono.test/python/prompt.txt +13 -0
- package/testeranto/reports/core/example/Calculator.pitono.test/python/stdout.log +26 -0
- package/testeranto/reports/core/example/Calculator.pitono.test/python/tests.json +255 -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 +566 -0
- package/testeranto/reports/core/example/Calculator.test/node/tests.json +1163 -0
- package/testeranto/reports/core/example/Calculator.test/node/type_errors.txt +26 -0
- package/testeranto/reports/core/summary.json +7 -47
- package/testeranto.config.ts +33 -43
- package/tsc.log +305 -370
- package/dist/common/src/App.js +0 -219
- 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/base.js +0 -319
- package/dist/common/src/PM/main.js +0 -672
- package/dist/common/src/PM/metafileOutputs.js +0 -78
- 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/components/DesignEditorPage.js +0 -205
- package/dist/common/src/components/SunriseAnimation.js +0 -291
- package/dist/common/src/components/SunriseAnimation.test/interface.js +0 -68
- package/dist/common/src/components/pure/AppFrame.js +0 -81
- 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.test/index.js +0 -58
- 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/Settings.js +0 -121
- package/dist/common/src/components/pure/Settings.test.js +0 -34
- 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_utils.js +0 -117
- package/dist/common/src/components/stateful/FeaturesReporter.js +0 -60
- 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/SingleProcessPage.js +0 -137
- package/dist/common/src/components/stateful/TestPage.js +0 -270
- package/dist/common/src/hooks/useGitMode.js +0 -21
- package/dist/common/src/services/FileService.js +0 -505
- package/dist/common/src/services/GitHubAuthService.js +0 -184
- package/dist/common/src/types/features.js +0 -34
- package/dist/common/src/utils/api.js +0 -93
- package/dist/common/src/utils/featureUtils.js +0 -29
- package/dist/common/src/utils/gitTest.js +0 -27
- package/dist/common/src/utils/makePrompt.js +0 -116
- package/dist/common/src/utils.js +0 -143
- package/dist/module/src/App.js +0 -176
- 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/base.js +0 -312
- package/dist/module/src/PM/main.js +0 -632
- package/dist/module/src/PM/metafileOutputs.js +0 -78
- 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/components/DesignEditorPage.js +0 -168
- package/dist/module/src/components/SunriseAnimation.js +0 -256
- package/dist/module/src/components/SunriseAnimation.test/interface.js +0 -32
- package/dist/module/src/components/pure/AppFrame.js +0 -74
- 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.test/index.js +0 -53
- 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/Settings.js +0 -84
- package/dist/module/src/components/pure/Settings.test.js +0 -29
- 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_utils.js +0 -109
- package/dist/module/src/components/stateful/FeaturesReporter.js +0 -23
- 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/SingleProcessPage.js +0 -100
- package/dist/module/src/components/stateful/TestPage.js +0 -233
- package/dist/module/src/hooks/useGitMode.js +0 -17
- package/dist/module/src/services/FileService.js +0 -468
- package/dist/module/src/services/GitHubAuthService.js +0 -180
- package/dist/module/src/types/features.js +0 -31
- package/dist/module/src/utils/api.js +0 -87
- package/dist/module/src/utils/featureUtils.js +0 -24
- package/dist/module/src/utils/gitTest.js +0 -23
- package/dist/module/src/utils/makePrompt.js +0 -109
- package/dist/module/src/utils.js +0 -130
- package/dist/types/src/App.d.ts +0 -19
- 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/base.d.ts +0 -35
- package/dist/types/src/PM/main.d.ts +0 -8
- package/dist/types/src/ReportServer.test.ts/index.d.ts +0 -2
- 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/pure/AppFrame.d.ts +0 -11
- package/dist/types/src/components/pure/AppFrame.test/index.d.ts +0 -3
- package/dist/types/src/components/pure/FeaturesReporterView.d.ts +0 -7
- package/dist/types/src/components/pure/FeaturesReporterView.test/index.d.ts +0 -2
- package/dist/types/src/components/pure/GitIntegrationView.d.ts +0 -1
- package/dist/types/src/components/pure/ModalContent.test/index.d.ts +0 -2
- 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/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/stateful/FeaturesReporter.d.ts +0 -2
- package/dist/types/src/components/stateful/SingleProcessPage.d.ts +0 -2
- package/dist/types/src/services/FileService.d.ts +0 -34
- 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/featureUtils.d.ts +0 -6
- package/dist/types/src/utils/gitTest.d.ts +0 -11
- package/dist/types/src/utils/makePrompt.d.ts +0 -2
- package/dist/types/src/utils.d.ts +0 -20
- package/pitono/__init__.py +0 -54
- package/pitono/base_given.py +0 -131
- package/pitono/base_suite.py +0 -95
- package/pitono/base_then.py +0 -50
- package/pitono/base_when.py +0 -52
- package/pitono/pitono.egg-info/PKG-INFO +0 -17
- package/pitono/pitono.egg-info/SOURCES.txt +0 -7
- package/pitono/types.py +0 -78
- package/src/App.tsx +0 -228
- package/src/PM/PM_WithBuild.ts +0 -171
- package/src/PM/PM_WithEslintAndTsc.ts +0 -279
- package/src/PM/PM_WithGit.ts +0 -585
- package/src/PM/PM_WithProcesses.ts +0 -639
- package/src/PM/PM_WithWebSocket.ts +0 -631
- package/src/PM/base.ts +0 -390
- package/src/PM/main.ts +0 -849
- package/src/PM/metafileOutputs.ts +0 -90
- package/src/ReportServer.test.ts/index.ts +0 -194
- package/src/app.scss +0 -19
- package/src/components/DesignEditorPage.tsx +0 -202
- package/src/components/SunriseAnimation.test/interface.ts +0 -49
- package/src/components/SunriseAnimation.test/types.ts +0 -53
- package/src/components/SunriseAnimation.tsx +0 -350
- package/src/components/pure/AppFrame.tsx +0 -300
- package/src/components/pure/FeaturesReporterView.tsx +0 -37
- package/src/components/pure/GitHubLoginButton.tsx +0 -31
- package/src/components/pure/GitIntegrationView.tsx +0 -443
- package/src/components/pure/ModalContent.test/index.tsx +0 -67
- package/src/components/pure/NavBar.tsx +0 -118
- package/src/components/pure/ProcessManager.tsx +0 -118
- package/src/components/pure/ProcessManagerView.tsx +0 -410
- package/src/components/pure/ProjectPageView.test/implementation.tsx +0 -213
- package/src/components/pure/ProjectPageView.tsx +0 -148
- package/src/components/pure/Settings.test.tsx +0 -34
- package/src/components/pure/Settings.tsx +0 -163
- package/src/components/pure/SignIn.tsx +0 -33
- package/src/components/pure/SingleProcessView.tsx +0 -231
- package/src/components/pure/TestPageView.test/implementation.ts +0 -162
- package/src/components/pure/TestPageView.test/index.tsx +0 -20
- package/src/components/pure/TestPageView.test/specification.ts +0 -59
- package/src/components/pure/TestPageView.test/types.ts +0 -92
- package/src/components/pure/TestPageView.tsx +0 -706
- package/src/components/pure/TestPageView_utils.tsx +0 -285
- package/src/components/stateful/FeaturesReporter.tsx +0 -26
- package/src/components/stateful/GitIntegrationPage.tsx +0 -8
- package/src/components/stateful/ProcessManagerPage.tsx +0 -104
- package/src/components/stateful/ProjectPage.tsx +0 -86
- package/src/components/stateful/ProjectsPage.tsx +0 -100
- package/src/components/stateful/SVGEditor/SVGAttributesEditor.tsx +0 -73
- package/src/components/stateful/SVGEditor/SVGPreview.tsx +0 -225
- package/src/components/stateful/SVGEditorPage.tsx +0 -503
- package/src/components/stateful/SingleProcessPage.tsx +0 -142
- package/src/components/stateful/TestPage.tsx +0 -268
- package/src/golingvu/base_suite_test.go +0 -197
- package/src/hooks/useGitMode.ts +0 -20
- package/src/services/FileService.ts +0 -542
- package/src/services/GitHubAuthService.ts +0 -240
- package/src/templates/frontpage.html +0 -340
- package/src/templates/frontpage.md +0 -79
- package/src/types/features.ts +0 -38
- package/src/utils/api.ts +0 -108
- package/src/utils/featureUtils.tsx +0 -42
- package/src/utils/gitTest.ts +0 -29
- package/src/utils/makePrompt.ts +0 -149
- package/src/utils.ts +0 -202
- package/stargazers.txt +0 -15
- package/testeranto/bundles/golang/core/Calculator.golingvu.go +0 -53
- package/testeranto/bundles/golang/core/Calculator.golingvu.golingvu.go +0 -53
- package/testeranto/bundles/node/core/chunk-RIM6RECA.mjs +0 -1170
- package/testeranto/bundles/node/core/chunk-VXVF7WFO.mjs +0 -4321
- package/testeranto/bundles/node/core/src/lib/BaseSuite.test/node.test.mjs +0 -270
- package/testeranto/bundles/node/core/src/lib/TipoSkripto.test/TipoSkripto.mjs +0 -574
- package/testeranto/bundles/node/core/src/lib/pmProxy.test/index.mjs +0 -482
- package/testeranto/bundles/pure/core/chunk-XYOCRDEQ.mjs +0 -1080
- package/testeranto/bundles/pure/core/src/Pure.test.mjs +0 -410
- package/testeranto/bundles/pure/core/src/lib/BaseSuite.test/pure.test.mjs +0 -270
- package/testeranto/bundles/python/core/test_example.py +0 -24
- package/testeranto/bundles/web/core/MPLUSRounded1c-Black-O75GP5JI.ttf +0 -0
- package/testeranto/bundles/web/core/MPLUSRounded1c-Bold-R524Q5BH.ttf +0 -0
- package/testeranto/bundles/web/core/MPLUSRounded1c-ExtraBold-C6GRMYVT.ttf +0 -0
- package/testeranto/bundles/web/core/MPLUSRounded1c-Light-WKN65Y2C.ttf +0 -0
- package/testeranto/bundles/web/core/MPLUSRounded1c-Medium-ZC4DWL7C.ttf +0 -0
- package/testeranto/bundles/web/core/MPLUSRounded1c-Regular-DT6EKZ3S.ttf +0 -0
- package/testeranto/bundles/web/core/MPLUSRounded1c-Thin-YWDNVG6M.ttf +0 -0
- package/testeranto/bundles/web/core/chunk-DFRN4SYZ.mjs +0 -2297
- package/testeranto/bundles/web/core/chunk-JMDLMADH.mjs +0 -27996
- package/testeranto/bundles/web/core/chunk-LQMU5NCG.mjs +0 -3082
- package/testeranto/bundles/web/core/chunk-Q5TONB2Z.mjs +0 -6874
- package/testeranto/bundles/web/core/src/components/pure/FeaturesReporterView.test/index.mjs +0 -164
- 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/bundles/web/core/src/components/pure/ProjectPageView.test/index.css +0 -11697
- package/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs +0 -517
- package/testeranto/bundles/web/core/src/lib/BaseSuite.test/web.test.mjs +0 -285
- package/testeranto/metafiles/pure/core.json +0 -734
- package/testeranto/metafiles/web/core.json +0 -16501
- package/testeranto/reports/core/src/Pure.test/pure/message.txt +0 -17
- package/testeranto/reports/core/src/Pure.test/pure/prompt.txt +0 -14
- package/testeranto/reports/core/src/Pure.test/pure/type_errors.txt +0 -73
- 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/info.log +0 -2
- 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/error.log +0 -30
- 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/tests.json +0 -88
- package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/exit.log +0 -1
- package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/message.txt +0 -17
- package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/prompt.txt +0 -15
- package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/stdout.log +0 -1
- package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/tests.json +0 -29
- package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/type_errors.txt +0 -53
- package/testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/exit.log +0 -0
- package/testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/lint_errors.txt +0 -0
- package/testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/message.txt +0 -17
- package/testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/prompt.txt +0 -15
- package/testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/type_errors.txt +0 -58
- package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/debug.log +0 -0
- 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/info.log +0 -0
- package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/tests.json +0 -29
- package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/warn.log +0 -0
- package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/exit.log +0 -1
- package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/lint_errors.txt +0 -0
- package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/message.txt +0 -17
- package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/prompt.txt +0 -17
- package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/stderr.log +0 -55
- package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/stdout.log +0 -191
- package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/type_errors.txt +0 -71
- package/testeranto/reports/core/src/lib/pmProxy.test/index/node/exit.log +0 -1
- package/testeranto/reports/core/src/lib/pmProxy.test/index/node/lint_errors.txt +0 -15
- package/testeranto/reports/core/src/lib/pmProxy.test/index/node/message.txt +0 -17
- package/testeranto/reports/core/src/lib/pmProxy.test/index/node/prompt.txt +0 -17
- 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 +0 -4
- package/testeranto/reports/core/src/lib/pmProxy.test/index/node/type_errors.txt +0 -49
- package/testeranto.ts-0.0.1.tgz +0 -0
- package/type-fix.txt +0 -2
- /package/{dist/types/src/PM/metafileOutputs.d.ts → build-go.sh} +0 -0
- /package/dist/common/src/{components → app/frontend/components}/SunriseAnimation.test/implementation.js +0 -0
- /package/dist/common/src/{components → app/frontend/components}/SunriseAnimation.test/index.js +0 -0
- /package/dist/common/src/{components → app/frontend/components}/SunriseAnimation.test/specification.js +0 -0
- /package/dist/common/src/{components → app/frontend/components}/SunriseAnimation.test/types.js +0 -0
- /package/dist/common/src/{components → app/frontend/components}/TestStatusBadge.js +0 -0
- /package/dist/common/src/{components → app/frontend/components}/pure/AppFrame.test/implementation.js +0 -0
- /package/dist/common/src/{components → app/frontend/components}/pure/AppFrame.test/index.js +0 -0
- /package/dist/common/src/{components → app/frontend/components}/pure/AppFrame.test/specification.js +0 -0
- /package/dist/common/src/{components → app/frontend/components}/pure/AppFrame.test/types.js +0 -0
- /package/dist/common/src/{components → app/frontend/components}/pure/ArtifactTree.js +0 -0
- /package/dist/common/src/{components → app/frontend/components}/pure/BuildLogViewer.js +0 -0
- /package/dist/common/src/{components → app/frontend/components}/pure/DebugEnv.js +0 -0
- /package/dist/common/src/{components → app/frontend/components}/pure/FeaturesReporterView.js +0 -0
- /package/dist/common/src/{components → app/frontend/components}/pure/FeaturesReporterView.test/implementation.js +0 -0
- /package/dist/common/src/{components → app/frontend/components}/pure/FeaturesReporterView.test/index.js +0 -0
- /package/dist/common/src/{components → app/frontend/components}/pure/FeaturesReporterView.test/specification.js +0 -0
- /package/dist/common/src/{components → app/frontend/components}/pure/FeaturesReporterView.test/types.js +0 -0
- /package/dist/common/src/{components → app/frontend/components}/pure/FileTree.js +0 -0
- /package/dist/common/src/{components → app/frontend/components}/pure/FileTreeItem.js +0 -0
- /package/dist/common/src/{components → app/frontend/components}/pure/ModalContent.js +0 -0
- /package/dist/common/src/{components → app/frontend/components}/pure/ModalContent.test/implementation.js +0 -0
- /package/dist/common/src/{components → app/frontend/components}/pure/ModalContent.test/specification.js +0 -0
- /package/dist/common/src/{components → app/frontend/components}/pure/ModalContent.test/types.js +0 -0
- /package/dist/common/src/{components → app/frontend/components}/pure/ProjectPageView.test/index.js +0 -0
- /package/dist/common/src/{components → app/frontend/components}/pure/ProjectPageView.test/specification.js +0 -0
- /package/dist/common/src/{components → app/frontend/components}/pure/ProjectPageView.test/types.js +0 -0
- /package/dist/common/src/{components → app/frontend/components}/pure/ProjectsPageView.js +0 -0
- /package/dist/common/src/{components → app/frontend/components}/pure/SettingsButton.js +0 -0
- /package/dist/common/src/{components → app/frontend/components}/pure/TestTable.js +0 -0
- /package/dist/common/src/{components → app/frontend/components}/pure/ThemeCard.js +0 -0
- /package/dist/common/src/{components → app/frontend/components}/pure/ToastNotification.js +0 -0
- /package/dist/common/src/{components → app/frontend/components}/pure/UserProfile.js +0 -0
- /package/dist/common/src/{components → app/frontend/components}/stateful/AuthCallbackPage.js +0 -0
- /package/dist/common/src/{components → app/frontend/components}/stateful/FileTree.js +0 -0
- /package/dist/common/src/{components → app/frontend/components}/stateful/SettingsPage.js +0 -0
- /package/dist/common/src/{components → app/frontend/components}/stateful/TextEditorPage.js +0 -0
- /package/dist/common/src/{components/pure → app/frontend/testPage}/TestPageView.test/types.js +0 -0
- /package/dist/module/src/{components → app/frontend/components}/SunriseAnimation.test/implementation.js +0 -0
- /package/dist/module/src/{components → app/frontend/components}/SunriseAnimation.test/index.js +0 -0
- /package/dist/module/src/{components → app/frontend/components}/SunriseAnimation.test/specification.js +0 -0
- /package/dist/module/src/{components → app/frontend/components}/SunriseAnimation.test/types.js +0 -0
- /package/dist/module/src/{components → app/frontend/components}/TestStatusBadge.js +0 -0
- /package/dist/module/src/{components → app/frontend/components}/pure/AppFrame.test/implementation.js +0 -0
- /package/dist/module/src/{components → app/frontend/components}/pure/AppFrame.test/index.js +0 -0
- /package/dist/module/src/{components → app/frontend/components}/pure/AppFrame.test/specification.js +0 -0
- /package/dist/module/src/{components → app/frontend/components}/pure/AppFrame.test/types.js +0 -0
- /package/dist/module/src/{components → app/frontend/components}/pure/ArtifactTree.js +0 -0
- /package/dist/module/src/{components → app/frontend/components}/pure/BuildLogViewer.js +0 -0
- /package/dist/module/src/{components → app/frontend/components}/pure/DebugEnv.js +0 -0
- /package/dist/module/src/{components → app/frontend/components}/pure/FeaturesReporterView.js +0 -0
- /package/dist/module/src/{components → app/frontend/components}/pure/FeaturesReporterView.test/implementation.js +0 -0
- /package/dist/module/src/{components → app/frontend/components}/pure/FeaturesReporterView.test/index.js +0 -0
- /package/dist/module/src/{components → app/frontend/components}/pure/FeaturesReporterView.test/specification.js +0 -0
- /package/dist/module/src/{components → app/frontend/components}/pure/FeaturesReporterView.test/types.js +0 -0
- /package/dist/module/src/{components → app/frontend/components}/pure/FileTree.js +0 -0
- /package/dist/module/src/{components → app/frontend/components}/pure/FileTreeItem.js +0 -0
- /package/dist/module/src/{components → app/frontend/components}/pure/ModalContent.js +0 -0
- /package/dist/module/src/{components → app/frontend/components}/pure/ModalContent.test/implementation.js +0 -0
- /package/dist/module/src/{components → app/frontend/components}/pure/ModalContent.test/specification.js +0 -0
- /package/dist/module/src/{components → app/frontend/components}/pure/ModalContent.test/types.js +0 -0
- /package/dist/{types/src/components/pure/Settings.test.d.ts → module/src/app/frontend/components/pure/ProcessManagerViewTypes.js} +0 -0
- /package/dist/module/src/{components → app/frontend/components}/pure/ProjectPageView.test/index.js +0 -0
- /package/dist/module/src/{components → app/frontend/components}/pure/ProjectPageView.test/specification.js +0 -0
- /package/dist/module/src/{components → app/frontend/components}/pure/ProjectPageView.test/types.js +0 -0
- /package/dist/module/src/{components → app/frontend/components}/pure/ProjectsPageView.js +0 -0
- /package/dist/module/src/{components → app/frontend/components}/pure/SettingsButton.js +0 -0
- /package/dist/module/src/{components → app/frontend/components}/pure/TestTable.js +0 -0
- /package/dist/module/src/{components → app/frontend/components}/pure/ThemeCard.js +0 -0
- /package/dist/module/src/{components → app/frontend/components}/pure/ToastNotification.js +0 -0
- /package/dist/module/src/{components → app/frontend/components}/pure/UserProfile.js +0 -0
- /package/dist/module/src/{components → app/frontend/components}/stateful/AuthCallbackPage.js +0 -0
- /package/dist/module/src/{components → app/frontend/components}/stateful/FileTree.js +0 -0
- /package/dist/module/src/{components → app/frontend/components}/stateful/SettingsPage.js +0 -0
- /package/dist/module/src/{components → app/frontend/components}/stateful/TextEditorPage.js +0 -0
- /package/dist/module/src/{components/pure → app/frontend/testPage}/TestPageView.test/types.js +0 -0
- /package/dist/types/src/{ReportServer.d.ts → app/backend/PM_WithProcesses.d.ts} +0 -0
- /package/dist/types/src/{services → app/frontend}/GitHubAuthService.d.ts +0 -0
- /package/dist/types/src/{components → app/frontend/components}/DesignEditorPage.d.ts +0 -0
- /package/dist/types/src/{components → app/frontend/components}/SunriseAnimation.d.ts +0 -0
- /package/dist/types/src/{components → app/frontend/components}/SunriseAnimation.test/implementation.d.ts +0 -0
- /package/dist/types/src/{components → app/frontend/components}/SunriseAnimation.test/index.d.ts +0 -0
- /package/dist/types/src/{components → app/frontend/components}/SunriseAnimation.test/specification.d.ts +0 -0
- /package/dist/types/src/{components → app/frontend/components}/TestStatusBadge.d.ts +0 -0
- /package/dist/types/src/{components → app/frontend/components}/pure/AppFrame.test/implementation.d.ts +0 -0
- /package/dist/types/src/{components → app/frontend/components}/pure/AppFrame.test/specification.d.ts +0 -0
- /package/dist/types/src/{components → app/frontend/components}/pure/AppFrame.test/types.d.ts +0 -0
- /package/dist/types/src/{components → app/frontend/components}/pure/ArtifactTree.d.ts +0 -0
- /package/dist/types/src/{components → app/frontend/components}/pure/BuildLogViewer.d.ts +0 -0
- /package/dist/types/src/{components → app/frontend/components}/pure/DebugEnv.d.ts +0 -0
- /package/dist/types/src/{components → app/frontend/components}/pure/FeaturesReporterView.test/implementation.d.ts +0 -0
- /package/dist/types/src/{components → app/frontend/components}/pure/FeaturesReporterView.test/specification.d.ts +0 -0
- /package/dist/types/src/{components → app/frontend/components}/pure/FeaturesReporterView.test/types.d.ts +0 -0
- /package/dist/types/src/{components → app/frontend/components}/pure/FileTree.d.ts +0 -0
- /package/dist/types/src/{components → app/frontend/components}/pure/FileTreeItem.d.ts +0 -0
- /package/dist/types/src/{components → app/frontend/components}/pure/GitHubLoginButton.d.ts +0 -0
- /package/dist/types/src/{components → app/frontend/components}/pure/ModalContent.d.ts +0 -0
- /package/dist/types/src/{components → app/frontend/components}/pure/ModalContent.test/implementation.d.ts +0 -0
- /package/dist/types/src/{components → app/frontend/components}/pure/ModalContent.test/specification.d.ts +0 -0
- /package/dist/types/src/{components → app/frontend/components}/pure/ModalContent.test/types.d.ts +0 -0
- /package/dist/types/src/{components → app/frontend/components}/pure/NavBar.d.ts +0 -0
- /package/dist/types/src/{components → app/frontend/components}/pure/ProcessManager.d.ts +0 -0
- /package/dist/types/src/{components → app/frontend/components}/pure/ProjectPageView.test/specification.d.ts +0 -0
- /package/dist/types/src/{components → app/frontend/components}/pure/ProjectPageView.test/types.d.ts +0 -0
- /package/dist/types/src/{components → app/frontend/components}/pure/ProjectsPageView.d.ts +0 -0
- /package/dist/types/src/{components → app/frontend/components}/pure/Settings.d.ts +0 -0
- /package/dist/types/src/{ReportServerLib.d.ts → app/frontend/components/pure/Settings.test.d.ts} +0 -0
- /package/dist/types/src/{components → app/frontend/components}/pure/SettingsButton.d.ts +0 -0
- /package/dist/types/src/{components → app/frontend/components}/pure/SignIn.d.ts +0 -0
- /package/dist/types/src/{components/stateful/FileTree.d.ts → app/frontend/components/pure/SingleProcessView.d.ts} +0 -0
- /package/dist/types/src/{components → app/frontend/components}/pure/TestTable.d.ts +0 -0
- /package/dist/types/src/{components → app/frontend/components}/pure/ThemeCard.d.ts +0 -0
- /package/dist/types/src/{components → app/frontend/components}/pure/ToastNotification.d.ts +0 -0
- /package/dist/types/src/{components → app/frontend/components}/pure/UserProfile.d.ts +0 -0
- /package/dist/types/src/{components → app/frontend/components}/stateful/AuthCallbackPage.d.ts +0 -0
- /package/{src/ReportServer.ts → dist/types/src/app/frontend/components/stateful/FeaturesReporter.d.ts} +0 -0
- /package/{src/ReportServerLib.ts → dist/types/src/app/frontend/components/stateful/FileTree.d.ts} +0 -0
- /package/dist/types/src/{components → app/frontend/components}/stateful/GitIntegrationPage.d.ts +0 -0
- /package/dist/types/src/{components → app/frontend/components}/stateful/ProcessManagerPage.d.ts +0 -0
- /package/dist/types/src/{components → app/frontend/components}/stateful/ProjectPage.d.ts +0 -0
- /package/dist/types/src/{components → app/frontend/components}/stateful/ProjectsPage.d.ts +0 -0
- /package/dist/types/src/{components → app/frontend/components}/stateful/SettingsPage.d.ts +0 -0
- /package/{src/components/SunriseAnimation.test/implementation.ts → dist/types/src/app/frontend/components/stateful/SingleProcessPage.d.ts} +0 -0
- /package/dist/types/src/{components → app/frontend/components}/stateful/TextEditorPage.d.ts +0 -0
- /package/{src/components/SunriseAnimation.test/index.ts → dist/types/src/app/frontend/fetchDataUtil.d.ts} +0 -0
- /package/dist/types/src/{components/stateful → app/frontend/testPage}/TestPage.d.ts +0 -0
- /package/{src/components/SunriseAnimation.test/specification.ts → dist/types/src/app/frontend/useFileSystemSync.d.ts} +0 -0
- /package/dist/types/src/{hooks → app/frontend}/useGitMode.d.ts +0 -0
- /package/{testeranto/reports/core/src/Pure.test/pure/exit.log → docker.md} +0 -0
- /package/{testeranto/reports/core/src/Pure.test/pure/lint_errors.txt → src/app/frontend/components/SunriseAnimation.test/implementation.ts} +0 -0
- /package/{testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/debug.log → src/app/frontend/components/SunriseAnimation.test/index.ts} +0 -0
- /package/src/{components → app/frontend/components}/SunriseAnimation.test/index.tsx +0 -0
- /package/{testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/warn.log → src/app/frontend/components/SunriseAnimation.test/specification.ts} +0 -0
- /package/src/{components → app/frontend/components}/TestStatusBadge.tsx +0 -0
- /package/src/{components → app/frontend/components}/pure/AppFrame.test/implementation.tsx +0 -0
- /package/src/{components → app/frontend/components}/pure/AppFrame.test/index.tsx +0 -0
- /package/src/{components → app/frontend/components}/pure/AppFrame.test/specification.ts +0 -0
- /package/src/{components → app/frontend/components}/pure/AppFrame.test/types.ts +0 -0
- /package/src/{components → app/frontend/components}/pure/ArtifactTree.tsx +0 -0
- /package/src/{components → app/frontend/components}/pure/BuildLogViewer.tsx +0 -0
- /package/src/{components → app/frontend/components}/pure/DebugEnv.tsx +0 -0
- /package/src/{components → app/frontend/components}/pure/FeaturesReporterView.test/implementation.tsx +0 -0
- /package/src/{components → app/frontend/components}/pure/FeaturesReporterView.test/index.tsx +0 -0
- /package/src/{components → app/frontend/components}/pure/FeaturesReporterView.test/specification.ts +0 -0
- /package/src/{components → app/frontend/components}/pure/FeaturesReporterView.test/types.ts +0 -0
- /package/src/{components → app/frontend/components}/pure/FileTree.tsx +0 -0
- /package/src/{components → app/frontend/components}/pure/FileTreeItem.tsx +0 -0
- /package/src/{components → app/frontend/components}/pure/ModalContent.test/implementation.tsx +0 -0
- /package/src/{components → app/frontend/components}/pure/ModalContent.test/specification.ts +0 -0
- /package/src/{components → app/frontend/components}/pure/ModalContent.test/types.ts +0 -0
- /package/src/{components → app/frontend/components}/pure/ModalContent.tsx +0 -0
- /package/src/{components → app/frontend/components}/pure/ProjectPageView.test/index.tsx +0 -0
- /package/src/{components → app/frontend/components}/pure/ProjectPageView.test/specification.ts +0 -0
- /package/src/{components → app/frontend/components}/pure/ProjectPageView.test/types.ts +0 -0
- /package/src/{components → app/frontend/components}/pure/ProjectsPageView.tsx +0 -0
- /package/src/{components → app/frontend/components}/pure/SettingsButton.md +0 -0
- /package/src/{components → app/frontend/components}/pure/SettingsButton.tsx +0 -0
- /package/src/{components → app/frontend/components}/pure/TestTable.tsx +0 -0
- /package/src/{components → app/frontend/components}/pure/ThemeCard.tsx +0 -0
- /package/src/{components → app/frontend/components}/pure/ToastNotification.tsx +0 -0
- /package/src/{components → app/frontend/components}/pure/UserProfile.tsx +0 -0
- /package/src/{components → app/frontend/components}/stateful/AuthCallbackPage.tsx +0 -0
- /package/src/{components → app/frontend/components}/stateful/FileTree.tsx +0 -0
- /package/src/{components → app/frontend/components}/stateful/SVGEditor/CircleForm.tsx +0 -0
- /package/src/{components → app/frontend/components}/stateful/SVGEditor/GroupForm.tsx +0 -0
- /package/src/{components → app/frontend/components}/stateful/SVGEditor/RectForm.tsx +0 -0
- /package/src/{components → app/frontend/components}/stateful/SVGEditor/SVGAttributeField.tsx +0 -0
- /package/src/{components → app/frontend/components}/stateful/SVGEditor/SVGEditorControls.tsx +0 -0
- /package/src/{components → app/frontend/components}/stateful/SVGEditor/SVGElementForm.tsx +0 -0
- /package/src/{components → app/frontend/components}/stateful/SVGEditor/SVGTextEditor.tsx +0 -0
- /package/src/{components → app/frontend/components}/stateful/SVGEditor/SVGTree.tsx +0 -0
- /package/src/{components → app/frontend/components}/stateful/SVGEditor/SVGTypes.ts +0 -0
- /package/src/{components → app/frontend/components}/stateful/SVGEditor/svg.xsd.xml +0 -0
- /package/src/{components → app/frontend/components}/stateful/SettingsPage.tsx +0 -0
- /package/src/{components → app/frontend/components}/stateful/TextEditorPage.tsx +0 -0
- /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/testeranto/{reports/core/src/components/pure/ProjectPageView.test/index/web/debug.log → helpo_chat_message.txt} +0 -0
- /package/testeranto/{projects.html → index.html} +0 -0
- /package/testeranto/reports/core/{src/components/pure/ProjectPageView.test/index/web/warn.log → example/Calculator.golingvu.test/golang/stdout.log} +0 -0
- /package/testeranto/reports/core/{src/components/pure/FeaturesReporterView.test/index/web → example/Calculator.pitono.test/python}/exit.log +0 -0
- /package/testeranto/reports/core/{src/lib/BaseSuite.test/node.test/node → example/Calculator.pitono.test/python}/stderr.log +0 -0
- /package/testeranto/reports/core/{src/components/pure/ProjectPageView.test/index/web → example/Calculator.test/node}/exit.log +0 -0
- /package/testeranto/reports/core/{src/lib/BaseSuite.test/node.test/node/lint_errors.txt → example/Calculator.test/node/stdout.log} +0 -0
package/tsc.log
CHANGED
|
@@ -14,196 +14,209 @@ node_modules/testeranto-react/src/react-dom/jsx/dynamic.ts(42,17): error TS2551:
|
|
|
14
14
|
node_modules/testeranto-react/src/react-dom/jsx/dynamic.ts(43,15): error TS2339: Property 'domRoot' does not exist on type 'HTMLElement'.
|
|
15
15
|
node_modules/testeranto-react/src/react-dom/jsx/dynamic.ts(44,15): error TS2551: Property 'container' does not exist on type 'HTMLElement'. Did you mean 'contains'?
|
|
16
16
|
node_modules/testeranto-react/src/react/component/index.ts(21,3): error TS2739: 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
|
|
17
|
-
src/
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
src/components/pure/
|
|
31
|
-
|
|
32
|
-
src/components/pure/
|
|
33
|
-
src/components/pure/
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
src/components/pure/FeaturesReporterView.test/
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
src/components/pure/FeaturesReporterView.test/
|
|
41
|
-
src/components/pure/FeaturesReporterView.
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
src/components/pure/
|
|
45
|
-
src/components/pure/
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
src/components/pure/
|
|
49
|
-
src/components/pure/
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
src/components/pure/FeaturesReporterView.test/implementation.tsx(92,18): error TS2339: Property 'htmlElement' does not exist on type 'IInput & { container?: HTMLElement | undefined; }'.
|
|
53
|
-
src/components/pure/FeaturesReporterView.test/implementation.tsx(98,5): error TS2322: 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; }'.
|
|
54
|
-
Type '({ htmlElement }: { htmlElement: any; }, pm: any) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IInput & { container?: HTMLElement | undefined; }) => IInput & { container?: HTMLElement | undefined; }'.
|
|
55
|
-
Target signature provides too few arguments. Expected 2 or more, but got 1.
|
|
56
|
-
src/components/pure/FeaturesReporterView.test/index.tsx(16,3): error TS2345: 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>'.
|
|
57
|
-
Types of parameters 'Suite' and 'Suite' are incompatible.
|
|
58
|
-
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>'.
|
|
59
|
-
Types of property 'Default' are incompatible.
|
|
60
|
-
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<...>'.
|
|
61
|
-
Types of parameters 'givens' and 'givens' are incompatible.
|
|
62
|
-
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>'.
|
|
63
|
-
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'.
|
|
64
|
-
Types of property 'iinput' are incompatible.
|
|
65
|
-
Property 'prototype' is missing in type 'IInput' but required in type 'typeof Component'.
|
|
66
|
-
src/components/pure/ModalContent.test/implementation.tsx(24,32): error TS2339: Property 'htmlElement' does not exist on type 'IModalContentProps & { container?: HTMLElement | undefined; }'.
|
|
67
|
-
src/components/pure/ModalContent.test/implementation.tsx(32,36): error TS2339: Property 'htmlElement' does not exist on type 'IModalContentProps & { container?: HTMLElement | undefined; }'.
|
|
68
|
-
src/components/pure/ModalContent.test/implementation.tsx(37,5): error TS2322: 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; }'.
|
|
69
|
-
Type '(state: any, pm: IPM) => Promise<any>' is not assignable to type '(state: IModalContentProps & { container?: HTMLElement | undefined; }) => IModalContentProps & { container?: HTMLElement | undefined; }'.
|
|
70
|
-
Target signature provides too few arguments. Expected 2 or more, but got 1.
|
|
71
|
-
src/components/pure/ModalContent.test/index.tsx(8,10): error TS2305: Module '"../../../CoreTypes"' has no exported member 'ITestInterface'.
|
|
72
|
-
src/components/pure/ModalContent.test/index.tsx(62,27): error TS2558: Expected 2 type arguments, but got 3.
|
|
73
|
-
src/components/pure/ModalContent.test/specification.ts(20,31): error TS2554: Expected 0 arguments, but got 1.
|
|
74
|
-
src/components/pure/ModalContent.test/specification.ts(21,30): error TS2554: Expected 0 arguments, but got 1.
|
|
75
|
-
src/components/pure/NavBar.tsx(87,21): error TS2322: Type '{ children: (ReactNode | Element)[]; key: number; as: "div" | ForwardRefExoticComponent<LinkProps & RefAttributes<HTMLAnchorElement>>; to: string | undefined; active: boolean | undefined; className: string; title: string | undefined; }' is not assignable to type 'IntrinsicAttributes & Omit<(Omit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & { ...; }) | (LinkProps & RefAttributes<...>), BsPrefixProps<...> & NavLinkProps> & BsPrefixProps<...> & NavLinkProps & { ...; }'.
|
|
17
|
+
src/app/backend/PM_WithGit.ts(434,26): error TS2769: No overload matches this call.
|
|
18
|
+
Overload 1 of 2, '(timeout: string | number | Timeout | undefined): void', gave the following error.
|
|
19
|
+
Argument of type 'Timeout | null' is not assignable to parameter of type 'string | number | Timeout | undefined'.
|
|
20
|
+
Type 'null' is not assignable to type 'string | number | Timeout | undefined'.
|
|
21
|
+
Overload 2 of 2, '(id: number | undefined): void', gave the following error.
|
|
22
|
+
Argument of type 'Timeout | null' is not assignable to parameter of type 'number | undefined'.
|
|
23
|
+
Type 'null' is not assignable to type 'number | undefined'.
|
|
24
|
+
src/app/backend/PM_WithGit.ts(447,54): error TS2339: Property 'ignore' does not exist on type 'IBuiltConfig'.
|
|
25
|
+
src/app/backend/PM_WithProcesses.ts(753,14): error TS2339: Property 'gitWatcher' does not exist on type 'PM_WithProcesses'.
|
|
26
|
+
src/app/backend/PM_WithProcesses.ts(754,12): error TS2339: Property 'gitWatcher' does not exist on type 'PM_WithProcesses'.
|
|
27
|
+
src/app/backend/PM_WithProcesses.ts(757,14): error TS2339: Property 'gitWatchTimeout' does not exist on type 'PM_WithProcesses'.
|
|
28
|
+
src/app/backend/PM_WithProcesses.ts(758,25): error TS2339: Property 'gitWatchTimeout' does not exist on type 'PM_WithProcesses'.
|
|
29
|
+
src/app/frontend/components/pure/AppFrame.test/implementation.tsx(4,37): error TS2307: Cannot find module '../../../CoreTypes' or its corresponding type declarations.
|
|
30
|
+
src/app/frontend/components/pure/AppFrame.test/index.tsx(21,3): error TS2345: Argument of type 'FC<{ children?: ReactNode; }>' is not assignable to parameter of type 'typeof Component'.
|
|
31
|
+
Type 'FunctionComponent<{ children?: ReactNode; }>' provides no match for the signature 'new <P = {}, S = {}, SS = any>(props: P | Readonly<P>): Component<P, S, SS>'.
|
|
32
|
+
src/app/frontend/components/pure/AppFrame.test/specification.ts(1,36): error TS2307: Cannot find module '../../../CoreTypes' or its corresponding type declarations.
|
|
33
|
+
src/app/frontend/components/pure/AppFrame.test/types.ts(6,35): error TS2307: Cannot find module '../../../CoreTypes' or its corresponding type declarations.
|
|
34
|
+
src/app/frontend/components/pure/FeaturesReporterView.test/implementation.tsx(2,37): error TS2307: Cannot find module '../../../CoreTypes' or its corresponding type declarations.
|
|
35
|
+
src/app/frontend/components/pure/FeaturesReporterView.test/implementation.tsx(4,26): error TS2307: Cannot find module '../../../types/features' or its corresponding type declarations.
|
|
36
|
+
src/app/frontend/components/pure/FeaturesReporterView.test/index.tsx(17,3): error TS2345: Argument of type '(props: any) => Element' is not assignable to parameter of type 'typeof Component'.
|
|
37
|
+
Type '(props: any) => Element' provides no match for the signature 'new <P = {}, S = {}, SS = any>(props: P | Readonly<P>): Component<P, S, SS>'.
|
|
38
|
+
src/app/frontend/components/pure/FeaturesReporterView.test/specification.ts(1,36): error TS2307: Cannot find module '../../../CoreTypes' or its corresponding type declarations.
|
|
39
|
+
src/app/frontend/components/pure/FeaturesReporterView.test/types.ts(2,35): error TS2307: Cannot find module '../../../CoreTypes' or its corresponding type declarations.
|
|
40
|
+
src/app/frontend/components/pure/FeaturesReporterView.test/types.ts(3,26): error TS2307: Cannot find module '../../../types/features' or its corresponding type declarations.
|
|
41
|
+
src/app/frontend/components/pure/FeaturesReporterView.tsx(2,26): error TS2307: Cannot find module '../../../types/features' or its corresponding type declarations.
|
|
42
|
+
src/app/frontend/components/pure/FileTree.tsx(18,13): error TS18046: 'node' is of type 'unknown'.
|
|
43
|
+
src/app/frontend/components/pure/FileTree.tsx(26,45): error TS18046: 'node' is of type 'unknown'.
|
|
44
|
+
src/app/frontend/components/pure/GitIntegrationView.tsx(586,25): error TS2353: Object literal may only specify known properties, and 'renderSideBySide' does not exist in type 'IStandaloneEditorConstructionOptions'.
|
|
45
|
+
src/app/frontend/components/pure/ModalContent.test/implementation.tsx(2,37): error TS2307: Cannot find module '../../../CoreTypes' or its corresponding type declarations.
|
|
46
|
+
src/app/frontend/components/pure/ModalContent.test/implementation.tsx(5,21): error TS2307: Cannot find module '../../../lib/types' or its corresponding type declarations.
|
|
47
|
+
src/app/frontend/components/pure/ModalContent.test/index.tsx(12,20): error TS2304: Cannot find name 'ITestInterface'.
|
|
48
|
+
src/app/frontend/components/pure/ModalContent.test/index.tsx(63,27): error TS2558: Expected 2 type arguments, but got 3.
|
|
49
|
+
src/app/frontend/components/pure/ModalContent.test/specification.ts(1,36): error TS2307: Cannot find module '../../../CoreTypes' or its corresponding type declarations.
|
|
50
|
+
src/app/frontend/components/pure/ModalContent.test/types.ts(6,35): error TS2307: Cannot find module '../../../CoreTypes' or its corresponding type declarations.
|
|
51
|
+
src/app/frontend/components/pure/NavBar.tsx(88,21): error TS2322: Type '{ children: (ReactNode | Element)[]; key: number; as: "div" | ForwardRefExoticComponent<LinkProps & RefAttributes<HTMLAnchorElement>>; to: string | undefined; active: boolean | undefined; className: string; title: string | undefined; }' is not assignable to type 'IntrinsicAttributes & Omit<(Omit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & { ...; }) | (LinkProps & RefAttributes<...>), BsPrefixProps<...> & NavLinkProps> & BsPrefixProps<...> & NavLinkProps & { ...; }'.
|
|
76
52
|
Property 'to' does not exist on type 'IntrinsicAttributes & Omit<(Omit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & { ...; }) | (LinkProps & RefAttributes<...>), BsPrefixProps<...> & NavLinkProps> & BsPrefixProps<...> & NavLinkProps & { ...; }'.
|
|
77
|
-
src/components/pure/
|
|
78
|
-
src/components/pure/ProjectPageView.test/implementation.tsx(
|
|
79
|
-
src/components/pure/ProjectPageView.test/implementation.tsx(
|
|
80
|
-
src/components/pure/ProjectPageView.test/implementation.tsx(
|
|
81
|
-
src/components/pure/ProjectPageView.test/implementation.tsx(
|
|
82
|
-
src/components/pure/ProjectPageView.test/implementation.tsx(
|
|
83
|
-
src/components/pure/ProjectPageView.test/implementation.tsx(
|
|
84
|
-
src/components/pure/ProjectPageView.test/implementation.tsx(
|
|
85
|
-
src/components/pure/ProjectPageView.test/implementation.tsx(
|
|
86
|
-
src/components/pure/ProjectPageView.test/implementation.tsx(195,37): error TS2339: Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
87
|
-
src/components/pure/ProjectPageView.test/implementation.tsx(205,5): error TS2322: Type '(name: string) => (state: any, pm: any) => Promise<any>' is not assignable to type '(...args: any[]) => (state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { ...; }'.
|
|
53
|
+
src/app/frontend/components/pure/ProcessManagerView.tsx(87,10): error TS1205: Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.
|
|
54
|
+
src/app/frontend/components/pure/ProjectPageView.test/implementation.tsx(141,37): error TS2339: Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
55
|
+
src/app/frontend/components/pure/ProjectPageView.test/implementation.tsx(150,37): error TS2339: Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
56
|
+
src/app/frontend/components/pure/ProjectPageView.test/implementation.tsx(159,37): error TS2339: Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
57
|
+
src/app/frontend/components/pure/ProjectPageView.test/implementation.tsx(168,37): error TS2339: Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
58
|
+
src/app/frontend/components/pure/ProjectPageView.test/implementation.tsx(177,37): error TS2339: Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
59
|
+
src/app/frontend/components/pure/ProjectPageView.test/implementation.tsx(188,37): error TS2339: Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
60
|
+
src/app/frontend/components/pure/ProjectPageView.test/implementation.tsx(198,37): error TS2339: Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
61
|
+
src/app/frontend/components/pure/ProjectPageView.test/implementation.tsx(208,5): error TS2322: Type '(name: string) => (state: any, pm: any) => Promise<any>' is not assignable to type '(...args: any[]) => (state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { ...; }'.
|
|
88
62
|
Type '(state: any, pm: any) => Promise<any>' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
89
63
|
Target signature provides too few arguments. Expected 2 or more, but got 1.
|
|
90
|
-
src/components/pure/ProjectPageView.test/index.tsx(
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
src/components/
|
|
101
|
-
src/components/
|
|
64
|
+
src/app/frontend/components/pure/ProjectPageView.test/index.tsx(17,3): error TS2345: Argument of type '(props: any) => Element' is not assignable to parameter of type 'typeof Component'.
|
|
65
|
+
Type '(props: any) => Element' provides no match for the signature 'new <P = {}, S = {}, SS = any>(props: P | Readonly<P>): Component<P, S, SS>'.
|
|
66
|
+
src/app/frontend/components/pure/ProjectPageView.test/specification.ts(1,36): error TS2307: Cannot find module '../../../CoreTypes' or its corresponding type declarations.
|
|
67
|
+
src/app/frontend/components/pure/ProjectPageView.test/types.ts(6,35): error TS2307: Cannot find module '../../../CoreTypes' or its corresponding type declarations.
|
|
68
|
+
src/app/frontend/components/pure/UserProfile.tsx(3,35): error TS2307: Cannot find module '../../services/GitHubAuthService' or its corresponding type declarations.
|
|
69
|
+
src/app/frontend/components/stateful/GenericXMLEditorPage.tsx(361,18): error TS2741: Property 'onTreeUpdate' is missing in type '{ xmlTree: XMLNode; selectedNodeId: string | null; hiddenNodes: Set<string>; renderPreview: (node: XMLNode, isSelected: boolean, eventHandlers: any) => ReactElement<any, string | JSXElementConstructor<...>>; }' but required in type 'GenericPreviewProps'.
|
|
70
|
+
src/app/frontend/components/stateful/GenericXMLEditorPage.tsx(373,14): error TS2741: Property 'onToggle' is missing in type '{ children: Element; position: "left"; isOpen: true; zIndex: number; onBringToFront: () => void; title: string; }' but required in type 'DrawerProps'.
|
|
71
|
+
src/app/frontend/components/stateful/GenericXMLEditorPage.tsx(394,14): error TS2741: Property 'onToggle' is missing in type '{ children: Element; position: "right"; isOpen: true; zIndex: number; onBringToFront: () => void; title: string; }' but required in type 'DrawerProps'.
|
|
72
|
+
src/app/frontend/components/stateful/GenericXMLEditorPage.tsx(425,14): error TS2741: Property 'onToggle' is missing in type '{ children: Element; position: "bottom"; isOpen: true; zIndex: number; onBringToFront: () => void; title: string; }' but required in type 'DrawerProps'.
|
|
73
|
+
src/app/frontend/components/stateful/GitIntegrationPage.tsx(41,25): error TS2339: Property 'commitChanges' does not exist on type 'FileService'.
|
|
74
|
+
src/app/frontend/components/stateful/GitIntegrationPage.tsx(66,25): error TS2339: Property 'commitChanges' does not exist on type 'FileService'.
|
|
75
|
+
src/app/frontend/components/stateful/GitIntegrationPage.tsx(67,25): error TS2339: Property 'pushChanges' does not exist on type 'FileService'.
|
|
76
|
+
src/app/frontend/components/stateful/GitIntegrationPage.tsx(87,25): error TS2339: Property 'pullChanges' does not exist on type 'FileService'.
|
|
77
|
+
src/app/frontend/components/stateful/GitIntegrationPage.tsx(141,40): error TS2339: Property 'getCurrentBranch' does not exist on type 'FileService'.
|
|
78
|
+
src/app/frontend/components/stateful/GitIntegrationPage.tsx(142,40): error TS2339: Property 'getRemoteStatus' does not exist on type 'FileService'.
|
|
79
|
+
src/app/frontend/components/stateful/GitIntegrationPage.tsx(162,41): error TS2339: Property 'getChanges' does not exist on type 'FileService'.
|
|
80
|
+
src/app/frontend/components/stateful/GitIntegrationPage.tsx(178,43): error TS2339: Property 'getChanges' does not exist on type 'FileService'.
|
|
81
|
+
src/app/frontend/components/stateful/GitIntegrationPage.tsx(181,42): error TS2339: Property 'getCurrentBranch' does not exist on type 'FileService'.
|
|
82
|
+
src/app/frontend/components/stateful/GitIntegrationPage.tsx(182,42): error TS2339: Property 'getRemoteStatus' does not exist on type 'FileService'.
|
|
83
|
+
src/app/frontend/components/stateful/GitIntegrationPage.tsx(229,7): error TS2322: Type '{ mode: "dev" | "static" | "git"; setMode: Dispatch<SetStateAction<"dev" | "static" | "git">>; fileService: FileService; setChanges: Dispatch<SetStateAction<...>>; ... 24 more ...; getSyncStatusText: () => string; }' is not assignable to type 'IntrinsicAttributes & { mode: any; setMode: any; fileService: any; remoteStatus: any; changes: any; currentBranch: any; isLoading: any; setError: any; loadChanges: any; ... 15 more ...; getSyncStatusText: any; }'.
|
|
84
|
+
Property 'setChanges' does not exist on type 'IntrinsicAttributes & { mode: any; setMode: any; fileService: any; remoteStatus: any; changes: any; currentBranch: any; isLoading: any; setError: any; loadChanges: any; ... 15 more ...; getSyncStatusText: any; }'. Did you mean 'changes'?
|
|
85
|
+
src/app/frontend/components/stateful/ProjectsPage.tsx(116,7): error TS2322: Type 'Record<string, ISummary>' is not assignable to type 'TestSummary'.
|
|
86
|
+
'string' index signatures are incompatible.
|
|
87
|
+
Type 'ISummary' has no properties in common with type '{ testsExist?: boolean | undefined; runTimeErrors?: number | undefined; typeErrors?: number | undefined; staticErrors?: number | undefined; }'.
|
|
88
|
+
src/app/frontend/components/stateful/ProjectsPage.tsx(117,7): error TS2322: Type 'Record<string, object>' is not assignable to type 'ProjectConfig'.
|
|
89
|
+
'string' index signatures are incompatible.
|
|
90
|
+
Property 'tests' is missing in type '{}' but required in type '{ tests: [string, string][]; }'.
|
|
91
|
+
src/app/frontend/components/stateful/SVGEditor/SVGPreview.tsx(20,7): error TS2345: Argument of type 'Element' is not assignable to parameter of type 'never'.
|
|
92
|
+
src/app/frontend/components/stateful/SVGEditor/SVGPreview.tsx(35,7): error TS2345: Argument of type 'Element' is not assignable to parameter of type 'never'.
|
|
93
|
+
src/app/frontend/components/stateful/SVGEditorPage.tsx(176,19): error TS2339: Property 'children' does not exist on type 'never'.
|
|
94
|
+
src/app/frontend/components/stateful/SVGEditorPage.tsx(176,40): error TS2339: Property 'children' does not exist on type 'never'.
|
|
95
|
+
src/app/frontend/components/stateful/SVGEditorPage.tsx(477,11): error TS2304: Cannot find name 'xmlTree'.
|
|
96
|
+
src/app/frontend/components/stateful/SVGEditorPage.tsx(478,13): error TS2304: Cannot find name 'xmlTree'.
|
|
97
|
+
src/app/frontend/components/stateful/SVGEditorPage.tsx(479,19): error TS2304: Cannot find name 'xmlTree'.
|
|
98
|
+
src/app/frontend/components/stateful/SVGEditorPage.tsx(480,17): error TS2304: Cannot find name 'xmlTree'.
|
|
99
|
+
src/app/frontend/components/stateful/TextEditorPage.tsx(3,26): error TS2306: File '/Users/adam/Code/testeranto/src/app/frontend/components/stateful/FileTree.tsx' is not a module.
|
|
100
|
+
src/app/frontend/components/SunriseAnimation.test/interface.ts(5,34): error TS2307: Cannot find module './SunriseAnimation' or its corresponding type declarations.
|
|
101
|
+
src/app/frontend/components/SunriseAnimation.test/interface.ts(8,14): error TS1214: Identifier expected. 'interface' is a reserved word in strict mode. Modules are automatically in strict mode.
|
|
102
|
+
src/app/frontend/components/SunriseAnimation.test/interface.ts(22,46): error TS2769: No overload matches this call.
|
|
103
|
+
The last overload gave the following error.
|
|
104
|
+
Argument of type 'ISubject' is not assignable to parameter of type 'string | FunctionComponent<(props: IInput) => ISelection> | ComponentClass<(props: IInput) => ISelection, any>'.
|
|
105
|
+
src/app/frontend/components/SunriseAnimation.test/interface.ts(48,20): error TS2739: Type '{}' is missing the following properties from type 'Promise<ISubject>': then, catch, finally, [Symbol.toStringTag]
|
|
106
|
+
src/app/frontend/fetchDataUtil.ts(37,13): error TS18046: 'output' is of type 'unknown'.
|
|
107
|
+
src/app/frontend/fetchDataUtil.ts(47,21): error TS18046: 'output' is of type 'unknown'.
|
|
108
|
+
src/app/frontend/GitFileService.ts(22,3): error TS2416: Property 'projects' in type 'GitFileService' is not assignable to the same property in base type 'FileService'.
|
|
109
|
+
Type '(project: string) => Promise<object>' is not assignable to type '(project: string) => Promise<string[]>'.
|
|
110
|
+
Type 'Promise<object>' is not assignable to type 'Promise<string[]>'.
|
|
111
|
+
Type '{}' is missing the following properties from type 'string[]': length, pop, push, concat, and 35 more.
|
|
112
|
+
src/app/frontend/GitFileService.ts(25,3): error TS2416: Property 'tests' in type 'GitFileService' is not assignable to the same property in base type 'FileService'.
|
|
113
|
+
Type '(project: string) => Promise<object>' is not assignable to type '(project: string) => Promise<string[]>'.
|
|
114
|
+
Type 'Promise<object>' is not assignable to type 'Promise<string[]>'.
|
|
115
|
+
Type '{}' is missing the following properties from type 'string[]': length, pop, push, concat, and 35 more.
|
|
116
|
+
src/app/frontend/GitFileService.ts(50,25): error TS2552: Cannot find name 'buffer'. Did you mean 'Buffer'?
|
|
117
|
+
src/app/frontend/GitFileService.ts(69,20): error TS2339: Property 'fs' does not exist on type 'Window & typeof globalThis'.
|
|
118
|
+
src/app/frontend/GitFileService.ts(72,22): error TS2339: Property 'fs' does not exist on type 'Window & typeof globalThis'.
|
|
119
|
+
src/app/frontend/GitFileService.ts(94,20): error TS2339: Property 'fs' does not exist on type 'Window & typeof globalThis'.
|
|
120
|
+
src/app/frontend/GitFileService.ts(142,20): error TS2339: Property 'fs' does not exist on type 'Window & typeof globalThis'.
|
|
121
|
+
src/app/frontend/GitFileService.ts(157,20): error TS2339: Property 'fs' does not exist on type 'Window & typeof globalThis'.
|
|
122
|
+
src/app/frontend/GitFileService.ts(187,24): error TS2339: Property 'fs' does not exist on type 'Window & typeof globalThis'.
|
|
123
|
+
src/app/frontend/GitFileService.ts(193,24): error TS2339: Property 'fs' does not exist on type 'Window & typeof globalThis'.
|
|
124
|
+
src/app/frontend/GitFileService.ts(202,20): error TS2339: Property 'fs' does not exist on type 'Window & typeof globalThis'.
|
|
125
|
+
src/app/frontend/GitFileService.ts(221,20): error TS2339: Property 'fs' does not exist on type 'Window & typeof globalThis'.
|
|
126
|
+
src/app/frontend/GitFileService.ts(242,20): error TS2339: Property 'fs' does not exist on type 'Window & typeof globalThis'.
|
|
127
|
+
src/app/frontend/GitFileService.ts(265,22): error TS2339: Property 'fs' does not exist on type 'Window & typeof globalThis'.
|
|
128
|
+
src/app/frontend/GitHubAuthService.ts(166,51): error TS2345: Argument of type 'string | null' is not assignable to parameter of type 'string'.
|
|
129
|
+
Type 'null' is not assignable to type 'string'.
|
|
130
|
+
src/app/frontend/testPage/ProjectsTree.tsx(116,17): error TS2322: Type '{ name: string; isFile: false; level: number; isSelected: false; exists: true; isExpanded: boolean; onClick: () => Promise<void>; }' is not assignable to type 'IntrinsicAttributes & { name: string; isFile: boolean; level: number; isSelected: boolean; exists?: boolean | undefined; onClick: () => void; }'.
|
|
131
|
+
Property 'isExpanded' does not exist on type 'IntrinsicAttributes & { name: string; isFile: boolean; level: number; isSelected: boolean; exists?: boolean | undefined; onClick: () => void; }'.
|
|
132
|
+
src/app/frontend/testPage/ProjectsTree.tsx(136,31): error TS2322: Type '{ name: string; isFile: false; level: number; isSelected: false; exists: true; isExpanded: any; onClick: () => any; }' is not assignable to type 'IntrinsicAttributes & { name: string; isFile: boolean; level: number; isSelected: boolean; exists?: boolean | undefined; onClick: () => void; }'.
|
|
133
|
+
Property 'isExpanded' does not exist on type 'IntrinsicAttributes & { name: string; isFile: boolean; level: number; isSelected: boolean; exists?: boolean | undefined; onClick: () => void; }'.
|
|
134
|
+
src/app/frontend/testPage/ProjectsTree.tsx(205,35): error TS2322: Type '{ name: string; isFile: false; level: number; isSelected: false; exists: true; isExpanded: any; onClick: () => any; }' is not assignable to type 'IntrinsicAttributes & { name: string; isFile: boolean; level: number; isSelected: boolean; exists?: boolean | undefined; onClick: () => void; }'.
|
|
135
|
+
Property 'isExpanded' does not exist on type 'IntrinsicAttributes & { name: string; isFile: boolean; level: number; isSelected: boolean; exists?: boolean | undefined; onClick: () => void; }'.
|
|
136
|
+
src/app/frontend/testPage/ProjectsTree.tsx(274,33): error TS2322: Type '{ name: string; isFile: false; level: number; isSelected: false; exists: true; isExpanded: any; onClick: () => any; }' is not assignable to type 'IntrinsicAttributes & { name: string; isFile: boolean; level: number; isSelected: boolean; exists?: boolean | undefined; onClick: () => void; }'.
|
|
137
|
+
Property 'isExpanded' does not exist on type 'IntrinsicAttributes & { name: string; isFile: boolean; level: number; isSelected: boolean; exists?: boolean | undefined; onClick: () => void; }'.
|
|
138
|
+
src/app/frontend/testPage/TestPage.tsx(57,48): error TS2345: Argument of type 'string' is not assignable to parameter of type 'IRunTime'.
|
|
139
|
+
src/app/frontend/testPage/TestPage.tsx(73,18): error TS2345: Argument of type 'string' is not assignable to parameter of type 'SetStateAction<null>'.
|
|
140
|
+
src/app/frontend/testPage/TestPage.tsx(89,9): error TS2322: Type '{ route: "logs" | "results" | "types" | "lint" | "coverage"; setRoute: Dispatch<SetStateAction<string>>; navigate: NavigateFunction; ... 7 more ...; isWebSocketConnected: boolean; }' is not assignable to type 'IntrinsicAttributes & TestPageViewProps'.
|
|
141
|
+
Property 'route' does not exist on type 'IntrinsicAttributes & TestPageViewProps'.
|
|
142
|
+
src/app/frontend/testPage/TestPageView.test/implementation.ts(39,20): error TS2322: Type '(props: IInput) => { summary: any; nodeLogs: any; webLogs: any; pureLogs: any; config: any; loading: boolean; error: string | null; projectName: string; activeTab: string; setActiveTab: (tab: string) => void; container: HTMLDivElement; reactElement: React.DetailedReactHTMLElement<...>; domRoot: ReactDom.Root; }' is not assignable to type '(props: IProjectPageViewProps) => ISelection'.
|
|
102
143
|
Property 'htmlElement' is missing in type '{ summary: any; nodeLogs: any; webLogs: any; pureLogs: any; config: any; loading: boolean; error: string | null; projectName: string; activeTab: string; setActiveTab: (tab: string) => void; container: HTMLDivElement; reactElement: React.DetailedReactHTMLElement<...>; domRoot: ReactDom.Root; }' but required in type 'ISelection'.
|
|
103
|
-
src/
|
|
144
|
+
src/app/frontend/testPage/TestPageView.test/implementation.ts(44,48): error TS2769: No overload matches this call.
|
|
104
145
|
The last overload gave the following error.
|
|
105
146
|
Argument of type 'IProjectPageViewProps' is not assignable to parameter of type 'string | FunctionComponent<{}> | ComponentClass<{}, any>'.
|
|
106
|
-
src/
|
|
147
|
+
src/app/frontend/testPage/TestPageView.test/implementation.ts(55,23): error TS2322: Type '(props: IInput) => { errorCounts: { runTimeErrors: number; typeErrors: number; staticErrors: number; }; summary: any; nodeLogs: any; webLogs: any; pureLogs: any; config: any; loading: boolean; ... 6 more ...; domRoot: ReactDom.Root; }' is not assignable to type '(props: IProjectPageViewProps) => ISelection'.
|
|
107
148
|
Property 'htmlElement' is missing in type '{ errorCounts: { runTimeErrors: number; typeErrors: number; staticErrors: number; }; summary: any; nodeLogs: any; webLogs: any; pureLogs: any; config: any; loading: boolean; error: string | null; ... 5 more ...; domRoot: ReactDom.Root; }' but required in type 'ISelection'.
|
|
108
|
-
src/
|
|
149
|
+
src/app/frontend/testPage/TestPageView.test/implementation.ts(59,48): error TS2769: No overload matches this call.
|
|
109
150
|
The last overload gave the following error.
|
|
110
151
|
Argument of type 'IProjectPageViewProps' is not assignable to parameter of type 'string | FunctionComponent<{}> | ComponentClass<{}, any>'.
|
|
111
|
-
src/
|
|
112
|
-
Property 'htmlElement' is missing in type '{ logs: {
|
|
113
|
-
src/
|
|
152
|
+
src/app/frontend/testPage/TestPageView.test/implementation.ts(75,21): error TS2322: Type '(props: IInput) => { logs: { "tests.json": string; "stdout.log": string; }; summary: any; nodeLogs: any; webLogs: any; pureLogs: any; config: any; loading: boolean; error: string | null; projectName: string; ... 4 more ...; domRoot: ReactDom.Root; }' is not assignable to type '(props: IProjectPageViewProps) => ISelection'.
|
|
153
|
+
Property 'htmlElement' is missing in type '{ logs: { "tests.json": string; "stdout.log": string; }; summary: any; nodeLogs: any; webLogs: any; pureLogs: any; config: any; loading: boolean; error: string | null; projectName: string; activeTab: string; setActiveTab: (tab: string) => void; container: HTMLDivElement; reactElement: React.DetailedReactHTMLElement<...' but required in type 'ISelection'.
|
|
154
|
+
src/app/frontend/testPage/TestPageView.test/implementation.ts(79,48): error TS2769: No overload matches this call.
|
|
114
155
|
The last overload gave the following error.
|
|
115
156
|
Argument of type 'IProjectPageViewProps' is not assignable to parameter of type 'string | FunctionComponent<{}> | ComponentClass<{}, any>'.
|
|
116
|
-
src/
|
|
157
|
+
src/app/frontend/testPage/TestPageView.test/implementation.ts(97,5): error TS2322: Type '(tabName: string) => (selection: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => { reactElement: React.ReactElement<any, string | React.JSXElementConstructor<any>>; activeTab: string; htmlElement: HTMLElement; domRoot: ReactDom.Root; }>' is not assignable to type '(Iw_0: string) => (zel: ISelection, tr: ITTestResourceConfiguration, utils: PM) => Promise<(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<...>>'.
|
|
117
158
|
Call signature return types '(selection: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => { reactElement: ReactElement<any, string | JSXElementConstructor<...>>; activeTab: string; htmlElement: HTMLElement; domRoot: Root; }>' and '(zel: ISelection, tr: ITTestResourceConfiguration, utils: PM) => Promise<(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<...>>' are incompatible.
|
|
118
159
|
Type 'Promise<(sel: ISelection) => { reactElement: ReactElement<any, string | JSXElementConstructor<any>>; activeTab: string; htmlElement: HTMLElement; domRoot: Root; }>' is not assignable to type 'Promise<(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>>'.
|
|
119
160
|
Type '(sel: ISelection) => { reactElement: React.ReactElement<any, string | React.JSXElementConstructor<any>>; activeTab: string; htmlElement: HTMLElement; domRoot: ReactDom.Root; }' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
120
161
|
Type '{ reactElement: ReactElement<any, string | JSXElementConstructor<any>>; activeTab: string; htmlElement: HTMLElement; domRoot: Root; }' is missing the following properties from type 'Promise<(sel: ISelection) => ISelection>': then, catch, finally, [Symbol.toStringTag]
|
|
121
|
-
src/
|
|
162
|
+
src/app/frontend/testPage/TestPageView.test/implementation.ts(119,7): error TS2322: Type '(selection: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>' is not assignable to type '(zel: ISelection, tr: ITTestResourceConfiguration, utils: PM) => Promise<(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<...>>'.
|
|
122
163
|
Type 'Promise<(sel: ISelection) => ISelection>' is not assignable to type 'Promise<(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>>'.
|
|
123
164
|
Type '(sel: ISelection) => ISelection' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
124
165
|
Type 'ISelection' is missing the following properties from type 'Promise<(sel: ISelection) => ISelection>': then, catch, finally, [Symbol.toStringTag]
|
|
125
|
-
src/
|
|
126
|
-
src/
|
|
166
|
+
src/app/frontend/testPage/TestPageView.test/implementation.ts(125,34): error TS2339: Property 'container' does not exist on type 'ISelection'.
|
|
167
|
+
src/app/frontend/testPage/TestPageView.test/implementation.ts(134,5): error TS2322: Type '(name: string) => (ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(It_0: string) => (ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<...>'.
|
|
127
168
|
Call signature return types '(ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' and '(ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>' are incompatible.
|
|
128
169
|
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
129
170
|
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' provides no match for the signature '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM): Promise<(sel: ISelection) => ISelection>'.
|
|
130
|
-
src/
|
|
171
|
+
src/app/frontend/testPage/TestPageView.test/implementation.ts(142,13): error TS2322: Type '(ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
131
172
|
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
132
173
|
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' provides no match for the signature '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM): Promise<(sel: ISelection) => ISelection>'.
|
|
133
|
-
src/
|
|
134
|
-
src/
|
|
174
|
+
src/app/frontend/testPage/TestPageView.test/implementation.ts(143,28): error TS2339: Property 'container' does not exist on type 'ISelection'.
|
|
175
|
+
src/app/frontend/testPage/TestPageView.test/implementation.ts(147,5): error TS2322: Type '(tabName: string) => (ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(It_0: string) => (ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<...>'.
|
|
135
176
|
Call signature return types '(ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' and '(ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>' are incompatible.
|
|
136
177
|
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
137
178
|
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' provides no match for the signature '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM): Promise<(sel: ISelection) => ISelection>'.
|
|
138
|
-
src/
|
|
139
|
-
src/
|
|
179
|
+
src/app/frontend/testPage/TestPageView.test/implementation.ts(152,26): error TS2339: Property 'activeTab' does not exist on type 'ISelection'.
|
|
180
|
+
src/app/frontend/testPage/TestPageView.test/implementation.ts(156,13): error TS2322: Type '(ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
140
181
|
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
141
182
|
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' provides no match for the signature '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM): Promise<(sel: ISelection) => ISelection>'.
|
|
142
|
-
src/
|
|
143
|
-
src/
|
|
183
|
+
src/app/frontend/testPage/TestPageView.test/implementation.ts(158,28): error TS2339: Property 'container' does not exist on type 'ISelection'.
|
|
184
|
+
src/app/frontend/testPage/TestPageView.test/implementation.ts(163,13): error TS2322: Type '(ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
144
185
|
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
145
186
|
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' provides no match for the signature '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM): Promise<(sel: ISelection) => ISelection>'.
|
|
146
|
-
src/
|
|
147
|
-
src/
|
|
148
|
-
src/
|
|
187
|
+
src/app/frontend/testPage/TestPageView.test/implementation.ts(165,17): error TS2339: Property 'testsExist' does not exist on type 'ISelection'.
|
|
188
|
+
src/app/frontend/testPage/TestPageView.test/implementation.ts(166,35): error TS2339: Property 'container' does not exist on type 'ISelection'.
|
|
189
|
+
src/app/frontend/testPage/TestPageView.test/implementation.ts(175,13): error TS2322: Type '(ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
149
190
|
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
150
191
|
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' provides no match for the signature '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM): Promise<(sel: ISelection) => ISelection>'.
|
|
151
|
-
src/
|
|
152
|
-
src/
|
|
192
|
+
src/app/frontend/testPage/TestPageView.test/implementation.ts(177,26): error TS2339: Property 'container' does not exist on type 'ISelection'.
|
|
193
|
+
src/app/frontend/testPage/TestPageView.test/implementation.ts(182,13): error TS2322: Type '(ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
153
194
|
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
154
195
|
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' provides no match for the signature '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM): Promise<(sel: ISelection) => ISelection>'.
|
|
155
|
-
src/
|
|
156
|
-
src/
|
|
196
|
+
src/app/frontend/testPage/TestPageView.test/implementation.ts(184,32): error TS2339: Property 'container' does not exist on type 'ISelection'.
|
|
197
|
+
src/app/frontend/testPage/TestPageView.test/implementation.ts(191,13): error TS2322: Type '(ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
157
198
|
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
158
199
|
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' provides no match for the signature '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM): Promise<(sel: ISelection) => ISelection>'.
|
|
159
|
-
src/
|
|
160
|
-
src/
|
|
200
|
+
src/app/frontend/testPage/TestPageView.test/implementation.ts(193,32): error TS2339: Property 'container' does not exist on type 'ISelection'.
|
|
201
|
+
src/app/frontend/testPage/TestPageView.test/implementation.ts(200,13): error TS2322: Type '(ssel: ISelection, utils: IPM) => Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
161
202
|
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
162
203
|
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' provides no match for the signature '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM): Promise<(sel: ISelection) => ISelection>'.
|
|
163
|
-
src/
|
|
164
|
-
src/
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
src/
|
|
175
|
-
src/
|
|
176
|
-
src/
|
|
177
|
-
src/
|
|
178
|
-
src/
|
|
179
|
-
src/components/pure/TestPageView.tsx(149,21): error TS18046: 'output' is of type 'unknown'.
|
|
180
|
-
src/components/pure/TestPageView.tsx(156,46): error TS2339: Property 'errors' does not exist on type 'string'.
|
|
181
|
-
src/components/pure/TestPageView.tsx(160,48): error TS2339: Property 'warnings' does not exist on type 'string'.
|
|
182
|
-
src/components/pure/TestPageView.tsx(1178,11): error TS2322: Type '{ testName: string; testsExist: boolean; runTimeErrors: number; typeErrors: number; staticErrors: number; variant: "compact"; className: string; }' is not assignable to type 'IntrinsicAttributes & TestStatusBadgeProps'.
|
|
183
|
-
Property 'className' does not exist on type 'IntrinsicAttributes & TestStatusBadgeProps'.
|
|
184
|
-
src/components/stateful/FileTree.tsx(2,10): error TS2459: Module '"./TextEditorPage"' declares 'FileType' locally, but it is not exported.
|
|
185
|
-
src/components/stateful/FileTree.tsx(53,12): error TS18046: 'dirFiles' is of type 'unknown'.
|
|
186
|
-
src/components/stateful/ProjectsPage.tsx(98,7): error TS2322: Type 'Record<string, ISummary>' is not assignable to type 'TestSummary'.
|
|
187
|
-
'string' index signatures are incompatible.
|
|
188
|
-
Type 'ISummary' has no properties in common with type '{ testsExist?: boolean | undefined; runTimeErrors?: number | undefined; typeErrors?: number | undefined; staticErrors?: number | undefined; }'.
|
|
189
|
-
src/components/stateful/ProjectsPage.tsx(99,7): error TS2322: Type 'Record<string, object>' is not assignable to type 'ProjectConfig'.
|
|
190
|
-
'string' index signatures are incompatible.
|
|
191
|
-
Property 'tests' is missing in type '{}' but required in type '{ tests: [string, string][]; }'.
|
|
192
|
-
src/components/stateful/SingleProcessPage.tsx(4,35): error TS2306: File '/Users/adam/Code/testeranto/src/components/pure/SingleProcessView.tsx' is not a module.
|
|
193
|
-
src/components/stateful/TestPage.tsx(80,24): error TS18046: 'output' is of type 'unknown'.
|
|
194
|
-
src/components/stateful/TestPage.tsx(88,27): error TS18046: 'output' is of type 'unknown'.
|
|
195
|
-
src/components/stateful/TestPage.tsx(162,9): error TS2322: Type '{}' is not assignable to type 'string'.
|
|
196
|
-
src/components/stateful/TestPage.tsx(163,9): error TS2322: Type '{}' is not assignable to type 'string'.
|
|
197
|
-
src/components/stateful/TestPage.tsx(228,13): error TS2322: Type '{ errors: never[]; warnings: never[]; }' is not assignable to type 'string'.
|
|
198
|
-
src/components/stateful/TestPage.tsx(233,11): error TS2322: Type '{ errors: never[]; warnings: never[]; }' is not assignable to type 'string'.
|
|
199
|
-
src/components/stateful/TestPage.tsx(236,18): error TS2345: Argument of type 'string' is not assignable to parameter of type 'SetStateAction<null>'.
|
|
200
|
-
src/components/stateful/TestPage.tsx(252,9): error TS2322: Type '{ route: "coverage" | "results" | "logs" | "types" | "lint"; setRoute: Dispatch<SetStateAction<string>>; navigate: NavigateFunction; ... 6 more ...; errorCounts: { ...; }; }' is not assignable to type 'IntrinsicAttributes & TestPageViewProps'.
|
|
201
|
-
Property 'route' does not exist on type 'IntrinsicAttributes & TestPageViewProps'.
|
|
202
|
-
src/components/stateful/TextEditorPage.tsx(110,11): error TS2322: Type 'string | undefined' is not assignable to type 'string | null'.
|
|
203
|
-
Type 'undefined' is not assignable to type 'string | null'.
|
|
204
|
-
src/components/SunriseAnimation.test/interface.ts(2,10): error TS2305: Module '"../../CoreTypes"' has no exported member 'ITestInterface'.
|
|
205
|
-
src/components/SunriseAnimation.test/interface.ts(5,34): error TS2307: Cannot find module './SunriseAnimation' or its corresponding type declarations.
|
|
206
|
-
src/components/SunriseAnimation.test/interface.ts(7,14): error TS1214: Identifier expected. 'interface' is a reserved word in strict mode. Modules are automatically in strict mode.
|
|
204
|
+
src/app/frontend/testPage/TestPageView.test/implementation.ts(202,33): error TS2339: Property 'container' does not exist on type 'ISelection'.
|
|
205
|
+
src/app/frontend/testPage/TestPageView.test/index.tsx(19,3): error TS2345: Argument of type 'ITestImplementation<{ iinput: IProjectPageViewProps; isubject: ISubject; istore: ISelection; iselection: ISelection; given: (props: IProjectPageViewProps) => ISelection; when: (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<...>; then: (sel: ISelection, tr: ITTestResourceConfiguration, util...' is not assignable to parameter of type 'ITestImplementation<I, O, { whens: TestWhenImplementation<{ iinput: IProjectPageViewProps; isubject: ISubject; istore: ISelection; iselection: ISelection; given: (props: IProjectPageViewProps) => ISelection; when: (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<...>; then: (sel: ISelection,...'.
|
|
206
|
+
Type 'ITestImplementation<{ iinput: IProjectPageViewProps; isubject: ISubject; istore: ISelection; iselection: ISelection; given: (props: IProjectPageViewProps) => ISelection; when: (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<...>; then: (sel: ISelection, tr: ITTestResourceConfiguration, util...' is not assignable to type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, "whens">'.
|
|
207
|
+
The types returned by 'thens.RendersNavBar(...)' are incompatible between these types.
|
|
208
|
+
Type '(ssel: ISelection, utils: PM) => (sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>' is not assignable to type '(ssel: HTMLElement, utils: PM) => any'.
|
|
209
|
+
Types of parameters 'ssel' and 'ssel' are incompatible.
|
|
210
|
+
Type 'HTMLElement' is missing the following properties from type 'ISelection': htmlElement, reactElement, domRoot
|
|
211
|
+
src/app/frontend/testPage/TestPageView.tsx(72,39): error TS2339: Property 'metafile' does not exist on type 'string'.
|
|
212
|
+
src/app/frontend/testPage/TestPageView.tsx(82,36): error TS18046: 'output' is of type 'unknown'.
|
|
213
|
+
src/app/frontend/testPage/TestPageView.tsx(83,11): error TS18046: 'output' is of type 'unknown'.
|
|
214
|
+
src/app/frontend/testPage/TestPageView.tsx(86,21): error TS18046: 'output' is of type 'unknown'.
|
|
215
|
+
src/app/frontend/testPage/TestPageView.tsx(93,46): error TS2339: Property 'errors' does not exist on type 'string'.
|
|
216
|
+
src/app/frontend/testPage/TestPageView.tsx(99,48): error TS2339: Property 'warnings' does not exist on type 'string'.
|
|
217
|
+
src/app/frontend/testPage/TestPageView_utils.tsx(66,21): error TS2339: Property 'status' does not exist on type '{ name: string; whens: { name: string; error?: string | undefined; features?: string[] | undefined; artifacts?: string[] | undefined; }[]; thens: { name: string; error?: string | undefined; features?: string[] | undefined; artifacts?: string[] | undefined; }[]; features?: string[] | undefined; artifacts?: string[] |...'.
|
|
218
|
+
src/app/frontend/testPage/TestPageView_utils.tsx(131,24): error TS2339: Property 'status' does not exist on type '{ name: string; error?: string | undefined; features?: string[] | undefined; artifacts?: string[] | undefined; }'.
|
|
219
|
+
src/app/frontend/testPage/TestPageView_utils.tsx(192,24): error TS2339: Property 'status' does not exist on type '{ name: string; error?: string | undefined; features?: string[] | undefined; artifacts?: string[] | undefined; }'.
|
|
207
220
|
src/lib/abstractBase.test/adapter.ts(7,3): error TS2719: Type '(subject: {}, initializer: (c?: any) => () => () => { testStore: { value: string; }; }, testResource: import("/Users/adam/Code/testeranto/src/lib/index").ITTestResourceConfiguration, initialValues: any, pm: import("/Users/adam/Code/testeranto/src/lib/types").IPM) => Promise<...>' is not assignable to type '(subject: {}, initializer: (c?: any) => () => () => { testStore: { value: string; }; }, testResource: import("/Users/adam/Code/testeranto/src/lib/index").ITTestResourceConfiguration, initialValues: any, pm: import("/Users/adam/Code/testeranto/src/lib/types").IPM) => Promise<...>'. Two different types with this name exist, but they are unrelated.
|
|
208
221
|
Type 'Promise<() => { testStore: { value: string; }; }>' is not assignable to type 'Promise<{ testStore: { value: string; }; error?: Error | undefined; }>'.
|
|
209
222
|
Type '() => { testStore: { value: string; }; }' is not assignable to type '{ testStore: { value: string; }; error?: Error | undefined; }'.
|
|
@@ -217,69 +230,63 @@ src/lib/abstractBase.test/implementation.ts(11,26): error TS2322: Type '{ testSt
|
|
|
217
230
|
Type '{ testStore: { value: string; }; testSelection: { selected: boolean; }; }' provides no match for the signature '(): { testStore: { value: string; }; }'.
|
|
218
231
|
src/lib/abstractBase.test/implementation.ts(15,28): error TS2322: Type '{ testStore: { value: string; }; testSelection: { selected: boolean; }; }' is not assignable to type '() => { testStore: { value: string; }; }'.
|
|
219
232
|
Type '{ testStore: { value: string; }; testSelection: { selected: boolean; }; }' provides no match for the signature '(): { testStore: { value: string; }; }'.
|
|
233
|
+
src/lib/abstractBase.test/MockGiven.ts(18,50): error TS2554: Expected 5 arguments, but got 6.
|
|
220
234
|
src/lib/abstractBase.test/MockGiven.ts(30,20): error TS2349: This expression is not callable.
|
|
221
235
|
Type 'unknown' has no call signatures.
|
|
222
236
|
src/lib/abstractBase.test/types.ts(13,17): error TS2707: Generic type 'Ibdd_out' requires between 0 and 4 type arguments.
|
|
237
|
+
src/lib/BaseGiven.ts(63,10): error TS2551: Property 'fails' does not exist on type 'BaseGiven<I>'. Did you mean 'fail'?
|
|
238
|
+
src/lib/BaseGiven.ts(118,10): error TS2551: Property 'fails' does not exist on type 'BaseGiven<I>'. Did you mean 'fail'?
|
|
239
|
+
src/lib/BaseGiven.ts(149,12): error TS2551: Property 'fails' does not exist on type 'BaseGiven<I>'. Did you mean 'fail'?
|
|
240
|
+
src/lib/BaseGiven.ts(236,16): error TS2551: Property 'fails' does not exist on type 'BaseGiven<I>'. Did you mean 'fail'?
|
|
241
|
+
src/lib/BaseGiven.ts(259,14): error TS2551: Property 'fails' does not exist on type 'BaseGiven<I>'. Did you mean 'fail'?
|
|
242
|
+
src/lib/BaseSuite.test/mock.ts(25,7): error TS2554: Expected 5 arguments, but got 6.
|
|
223
243
|
src/lib/BaseSuite.test/mock.ts(39,9): error TS2416: Property 'andWhen' in type 'MockWhen' is not assignable to the same property in base type 'BaseWhen<I>'.
|
|
224
244
|
Types of parameters 'whenCB' and 'whenCB' are incompatible.
|
|
225
|
-
Type '(s: TestSelection) => Promise<BaseSuite<any, any>>' is not assignable to type '
|
|
226
|
-
|
|
227
|
-
Type 'TestStore' is not assignable to type 'TestSelection'.
|
|
228
|
-
Types of property 'testSelection' are incompatible.
|
|
229
|
-
Type 'boolean | undefined' is not assignable to type 'boolean'.
|
|
230
|
-
Type 'undefined' is not assignable to type 'boolean'.
|
|
231
|
-
src/lib/BaseSuite.test/mock.ts(51,5): error TS2741: Property 'testStore' is missing in type 'TestSelection' but required in type 'TestStore'.
|
|
232
|
-
src/lib/BaseSuite.test/mock.ts(86,11): error TS2322: Type 'MockWhen' is not assignable to type 'BaseWhen<I>'.
|
|
245
|
+
Type '(s: TestSelection) => Promise<BaseSuite<any, any>>' is not assignable to type 'Promise<BaseSuite<any, any>>'.
|
|
246
|
+
src/lib/BaseSuite.test/mock.ts(90,11): error TS2322: Type 'MockWhen' is not assignable to type 'BaseWhen<I>'.
|
|
233
247
|
Types of property 'andWhen' are incompatible.
|
|
234
248
|
Types of parameters 'whenCB' and 'whenCB' are incompatible.
|
|
235
|
-
Type '(s: TestSelection) => Promise<BaseSuite<any, any>>' is not assignable to type '
|
|
236
|
-
|
|
237
|
-
Type 'TestStore' is not assignable to type 'TestSelection'.
|
|
238
|
-
Types of property 'testSelection' are incompatible.
|
|
239
|
-
Type 'boolean | undefined' is not assignable to type 'boolean'.
|
|
240
|
-
Type 'undefined' is not assignable to type 'boolean'.
|
|
241
|
-
src/lib/BaseSuite.test/mock.ts(87,13): error TS2322: Type 'Promise<{ testSelection: boolean; }>' is not assignable to type '(s: TestSelection) => Promise<BaseSuite<any, any>>'.
|
|
249
|
+
Type '(s: TestSelection) => Promise<BaseSuite<any, any>>' is not assignable to type 'Promise<BaseSuite<any, any>>'.
|
|
250
|
+
src/lib/BaseSuite.test/mock.ts(91,13): error TS2322: Type 'Promise<{ testSelection: boolean; }>' is not assignable to type '(s: TestSelection) => Promise<BaseSuite<any, any>>'.
|
|
242
251
|
Type 'Promise<{ testSelection: boolean; }>' provides no match for the signature '(s: TestSelection): Promise<BaseSuite<any, any>>'.
|
|
243
|
-
src/lib/BaseSuite.test/mock.ts(
|
|
244
|
-
src/lib/BaseSuite.test/test.ts(
|
|
245
|
-
src/lib/BaseSuite.test/test.ts(
|
|
246
|
-
src/lib/BaseSuite.test/test.ts(
|
|
247
|
-
src/lib/BaseSuite.test/test.ts(
|
|
248
|
-
src/lib/BaseSuite.test/test.ts(
|
|
249
|
-
src/lib/BaseSuite.test/test.ts(
|
|
252
|
+
src/lib/BaseSuite.test/mock.ts(96,29): error TS2511: Cannot create an instance of an abstract class.
|
|
253
|
+
src/lib/BaseSuite.test/test.ts(86,13): error TS2339: Property 'AddFeature' does not exist on type 'WhenSpecification<I, O>'.
|
|
254
|
+
src/lib/BaseSuite.test/test.ts(90,14): error TS2339: Property 'FeatureCountMatches' does not exist on type 'ThenSpecification<I, O>'.
|
|
255
|
+
src/lib/BaseSuite.test/test.ts(97,13): error TS2339: Property 'RunSuiteWithError' does not exist on type 'WhenSpecification<I, O>'.
|
|
256
|
+
src/lib/BaseSuite.test/test.ts(98,13): error TS2339: Property 'ErrorCountMatches' does not exist on type 'ThenSpecification<I, O>'.
|
|
257
|
+
src/lib/BaseSuite.test/test.ts(98,40): error TS2339: Property 'FailedFlagSet' does not exist on type 'ThenSpecification<I, O>'.
|
|
258
|
+
src/lib/BaseSuite.test/test.ts(142,56): error TS2322: Type '(suite: MockSuite) => MockSuite' is not assignable to type '(zel: TestSelection, tr: ITTestResourceConfiguration, utils: PM) => Promise<(x: TestSelection) => (store: TestStore) => Promise<...>>'.
|
|
259
|
+
Types of parameters 'suite' and 'zel' are incompatible.
|
|
260
|
+
Type 'TestSelection' is missing the following properties from type 'MockSuite': name, givens, store, testResourceConfiguration, and 11 more.
|
|
261
|
+
src/lib/BaseSuite.test/test.ts(147,56): error TS2322: Type '(suite: MockSuite) => MockSuite' is not assignable to type '(zel: TestSelection, tr: ITTestResourceConfiguration, utils: PM) => Promise<(x: TestSelection) => (store: TestStore) => Promise<...>>'.
|
|
250
262
|
Types of parameters 'suite' and 'zel' are incompatible.
|
|
251
263
|
Type 'TestSelection' is missing the following properties from type 'MockSuite': name, givens, store, testResourceConfiguration, and 11 more.
|
|
252
|
-
src/lib/BaseSuite.test/test.ts(
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
src/lib/BaseSuite.test/test.ts(
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
src/lib/BaseSuite.test/test.ts(
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
src/lib/BaseSuite.test/test.ts(
|
|
262
|
-
src/lib/BaseSuite.test/test.ts(
|
|
263
|
-
src/lib/BaseSuite.test/test.ts(
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
src/lib/BaseSuite.test/test.ts(
|
|
268
|
-
src/lib/BaseSuite.test/test.ts(
|
|
269
|
-
|
|
270
|
-
Type 'Promise<
|
|
271
|
-
Type 'Promise<
|
|
272
|
-
src/lib/BaseSuite.test/test.ts(
|
|
273
|
-
src/lib/BaseSuite.test/test.ts(255,5): error TS2322: Type '(feature: string) => ((ssel: TestSelection, utils: IPM) => (store: TestStore) => Promise<TestSelection>)' is not assignable to type '(feature: string) => (ssel: TestSelection, utils: PM) => (s: TestSelection) => Promise<BaseSuite<any, any>>'.
|
|
274
|
-
Call signature return types '(ssel: TestSelection, utils: IPM) => (store: TestStore) => Promise<TestSelection>' and '(ssel: TestSelection, utils: PM) => (s: TestSelection) => Promise<BaseSuite<any, any>>' are incompatible.
|
|
275
|
-
Type '(store: TestStore) => Promise<TestSelection>' is not assignable to type '(s: TestSelection) => Promise<BaseSuite<any, any>>'.
|
|
276
|
-
Types of parameters 'store' and 's' are incompatible.
|
|
277
|
-
Property 'testStore' is missing in type 'TestSelection' but required in type 'TestStore'.
|
|
278
|
-
src/lib/BaseSuite.test/test.ts(406,22): error TS2339: Property 'index' does not exist on type '() => Promise<TestStore>'.
|
|
279
|
-
src/lib/BaseSuite.test/test.ts(409,19): error TS2339: Property 'store' does not exist on type '() => Promise<TestStore>'.
|
|
280
|
-
src/lib/BaseSuite.test/test.ts(450,3): error TS2322: Type '(store: I["istore"]) => I["istore"]' is not assignable to type '(store: TestStore, key: string, pm: IPM) => Promise<unknown>'.
|
|
264
|
+
src/lib/BaseSuite.test/test.ts(174,30): error TS2345: Argument of type 'Promise<unknown>' is not assignable to parameter of type 'string'.
|
|
265
|
+
src/lib/BaseSuite.test/test.ts(181,15): error TS2339: Property 'specs' does not exist on type 'MockSuite'.
|
|
266
|
+
src/lib/BaseSuite.test/test.ts(181,38): error TS2339: Property 'specs' does not exist on type 'MockSuite'.
|
|
267
|
+
src/lib/BaseSuite.test/test.ts(188,15): error TS2339: Property 'testJobs' does not exist on type 'MockSuite'.
|
|
268
|
+
src/lib/BaseSuite.test/test.ts(188,41): error TS2339: Property 'testJobs' does not exist on type 'MockSuite'.
|
|
269
|
+
src/lib/BaseSuite.test/test.ts(206,32): error TS2511: Cannot create an instance of an abstract class.
|
|
270
|
+
src/lib/BaseSuite.test/test.ts(220,32): error TS2511: Cannot create an instance of an abstract class.
|
|
271
|
+
src/lib/BaseSuite.test/test.ts(234,32): error TS2511: Cannot create an instance of an abstract class.
|
|
272
|
+
src/lib/BaseSuite.test/test.ts(247,32): error TS2511: Cannot create an instance of an abstract class.
|
|
273
|
+
src/lib/BaseSuite.test/test.ts(251,5): error TS2353: Object literal may only specify known properties, and 'FeatureCountMatches' does not exist in type 'TestThenImplementation<I, O>'.
|
|
274
|
+
src/lib/BaseSuite.test/test.ts(261,32): error TS2511: Cannot create an instance of an abstract class.
|
|
275
|
+
src/lib/BaseSuite.test/test.ts(275,32): error TS2511: Cannot create an instance of an abstract class.
|
|
276
|
+
src/lib/BaseSuite.test/test.ts(287,32): error TS2511: Cannot create an instance of an abstract class.
|
|
277
|
+
src/lib/BaseSuite.test/test.ts(298,32): error TS2511: Cannot create an instance of an abstract class.
|
|
278
|
+
src/lib/BaseSuite.test/test.ts(320,22): error TS2339: Property 'index' does not exist on type '() => Promise<TestStore>'.
|
|
279
|
+
src/lib/BaseSuite.test/test.ts(323,19): error TS2339: Property 'store' does not exist on type '() => Promise<TestStore>'.
|
|
280
|
+
src/lib/BaseSuite.test/test.ts(331,3): error TS2322: Type '(store: I["istore"], whenCB: (s: TestSelection) => Promise<BaseSuite<any, any>>, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<I["istore"]>' is not assignable to type '(store: TestStore, whenCB: (x: TestSelection) => (store: TestStore) => Promise<TestSelection>, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<...>'.
|
|
281
|
+
Types of parameters 'whenCB' and 'whenCB' are incompatible.
|
|
282
|
+
Type '(x: TestSelection) => (store: TestStore) => Promise<TestSelection>' is not assignable to type '(s: TestSelection) => Promise<BaseSuite<any, any>>'.
|
|
283
|
+
Type '(store: TestStore) => Promise<TestSelection>' is not assignable to type 'Promise<BaseSuite<any, any>>'.
|
|
284
|
+
src/lib/BaseSuite.test/test.ts(368,3): error TS2322: Type '(store: I["istore"]) => I["istore"]' is not assignable to type '(store: TestStore, key: string, pm: IPM) => Promise<unknown>'.
|
|
281
285
|
Type 'TestStore' is missing the following properties from type 'Promise<unknown>': then, catch, finally, [Symbol.toStringTag]
|
|
282
|
-
src/lib/
|
|
286
|
+
src/lib/BaseSuite.ts(72,26): error TS2339: Property 'name' does not exist on type 'never'.
|
|
287
|
+
src/lib/BaseSuite.ts(173,29): error TS2551: Property 'fails' does not exist on type 'BaseGiven<I>'. Did you mean 'fail'?
|
|
288
|
+
src/lib/BaseSuite.ts(179,19): error TS2551: Property 'fails' does not exist on type 'BaseGiven<I>'. Did you mean 'fail'?
|
|
289
|
+
src/lib/BaseSuite.ts(180,31): error TS2551: Property 'fails' does not exist on type 'BaseGiven<I>'. Did you mean 'fail'?
|
|
283
290
|
src/lib/index.ts(42,12): error TS2349: This expression is not callable.
|
|
284
291
|
Type 'unknown' has no call signatures.
|
|
285
292
|
src/lib/index.ts(50,12): error TS2349: This expression is not callable.
|
|
@@ -303,49 +310,42 @@ src/lib/pmProxy.test/implementation.ts(56,5): error TS2322: Type '(method: strin
|
|
|
303
310
|
src/lib/pmProxy.test/implementation.ts(67,9): error TS2322: Type '(path: string, content: string, testName?: string) => Promise<any>' is not assignable to type '((x: any) => Promise<boolean>) | (() => Promise<boolean>) | ((x: any) => any)'.
|
|
304
311
|
Type '(path: string, content: string, testName?: string) => Promise<any>' is not assignable to type '(x: any) => Promise<boolean>'.
|
|
305
312
|
Target signature provides too few arguments. Expected 2 or more, but got 1.
|
|
306
|
-
src/lib/pmProxy.test/implementation.ts(
|
|
307
|
-
src/lib/pmProxy.test/implementation.ts(
|
|
308
|
-
src/lib/pmProxy.test/
|
|
309
|
-
Type '
|
|
310
|
-
Types of
|
|
311
|
-
Type '{
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
src/lib/pmProxy.test/
|
|
316
|
-
Types of property 'givens' are incompatible.
|
|
317
|
-
Type '{ [x: string]: (...Iw: any) => string; }' is not assignable to type 'TestGivenImplementation<I, any>'.
|
|
318
|
-
'string' index signatures are incompatible.
|
|
319
|
-
Type '(...Iw: any) => string' is not assignable to type '(...Ig: any) => [string, string]'.
|
|
320
|
-
Type 'string' is not assignable to type '[string, string]'.
|
|
321
|
-
src/lib/pmProxy.test/mockPM.ts(23,3): error TS2416: Property 'launchSideCar' in type 'MockPM' is not assignable to the same property in base type 'MockPMBase'.
|
|
313
|
+
src/lib/pmProxy.test/implementation.ts(102,15): error TS2554: Expected 1 arguments, but got 3.
|
|
314
|
+
src/lib/pmProxy.test/implementation.ts(114,17): error TS2322: Type '"screen.png"' is not assignable to type '`${string}.webm`'.
|
|
315
|
+
src/lib/pmProxy.test/index.ts(17,3): error TS2345: Argument of type 'ITestImplementation<I, any, M>' is not assignable to parameter of type 'ITestImplementation<I, any, object>'.
|
|
316
|
+
Type 'ITestImplementation<I, any, M>' is not assignable to type 'Omit<{ suites: TestSuiteImplementation<any>; givens: TestGivenImplementation<I, any>; whens: TestWhenImplementation<I, any>; thens: TestThenImplementation<...>; }, never>'.
|
|
317
|
+
Types of property 'givens' are incompatible.
|
|
318
|
+
Type '{ [x: string]: (...Iw: any) => string; }' is not assignable to type 'TestGivenImplementation<I, any>'.
|
|
319
|
+
'string' index signatures are incompatible.
|
|
320
|
+
Type '(...Iw: any) => string' is not assignable to type '(...Ig: any) => [string, string]'.
|
|
321
|
+
Type 'string' is not assignable to type '[string, string]'.
|
|
322
|
+
src/lib/pmProxy.test/mockPM.ts(24,3): error TS2416: Property 'launchSideCar' in type 'MockPM' is not assignable to the same property in base type 'MockPMBase'.
|
|
322
323
|
Type '(n: number) => Promise<[number, any]>' is not assignable to type '(n: number, testName: string, projectName: string) => Promise<void>'.
|
|
323
324
|
Type 'Promise<[number, any]>' is not assignable to type 'Promise<void>'.
|
|
324
325
|
Type '[number, any]' is not assignable to type 'void'.
|
|
325
|
-
src/lib/pmProxy.test/
|
|
326
|
-
|
|
327
|
-
src/lib/
|
|
326
|
+
src/lib/pmProxy.test/mockPMBase.ts(8,14): error TS2720: Class 'MockPMBase' incorrectly implements class 'PM_Base'. Did you mean to extend 'PM_Base' and inherit its members as a subclass?
|
|
327
|
+
Type 'MockPMBase' is missing the following properties from type 'PM_Base': mode, projectName, mapping
|
|
328
|
+
src/lib/pmProxy.test/types.ts(20,17): error TS2707: Generic type 'Ibdd_out' requires between 0 and 4 type arguments.
|
|
329
|
+
src/lib/Tiposkripto.test/MockTiposkripto.ts(41,7): error TS2345: 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 & { ...; }'.
|
|
328
330
|
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
|
|
329
|
-
src/lib/Tiposkripto.test/MockTiposkripto.ts(
|
|
330
|
-
src/lib/Tiposkripto.test/MockTiposkripto.ts(
|
|
331
|
-
src/lib/Tiposkripto.test/MockTiposkripto.ts(
|
|
332
|
-
src/lib/Tiposkripto.test/MockTiposkripto.ts(
|
|
333
|
-
src/lib/Tiposkripto.test/MockTiposkripto.ts(
|
|
334
|
-
src/lib/Tiposkripto.test/MockTiposkripto.ts(
|
|
335
|
-
src/lib/Tiposkripto.test/MockTiposkripto.ts(
|
|
336
|
-
src/lib/Tiposkripto.test/MockTiposkripto.ts(
|
|
337
|
-
src/lib/Tiposkripto.test/MockTiposkripto.ts(
|
|
338
|
-
src/lib/Tiposkripto.test/MockTiposkripto.ts(
|
|
339
|
-
src/lib/Tiposkripto.test/MockTiposkripto.ts(
|
|
340
|
-
src/lib/Tiposkripto.test/MockTiposkripto.ts(
|
|
341
|
-
src/lib/Tiposkripto.test/MockTiposkripto.ts(
|
|
342
|
-
src/lib/Tiposkripto.test/MockTiposkripto.ts(
|
|
331
|
+
src/lib/Tiposkripto.test/MockTiposkripto.ts(52,47): error TS2339: Property 'suites' does not exist on type 'ITestImplementation<I, O, M>'.
|
|
332
|
+
src/lib/Tiposkripto.test/MockTiposkripto.ts(53,45): error TS2339: Property 'givens' does not exist on type 'ITestImplementation<I, O, M>'.
|
|
333
|
+
src/lib/Tiposkripto.test/MockTiposkripto.ts(54,44): error TS2339: Property 'whens' does not exist on type 'ITestImplementation<I, O, M>'.
|
|
334
|
+
src/lib/Tiposkripto.test/MockTiposkripto.ts(55,44): error TS2339: Property 'thens' does not exist on type 'ITestImplementation<I, O, M>'.
|
|
335
|
+
src/lib/Tiposkripto.test/MockTiposkripto.ts(60,53): error TS2339: Property 'givens' does not exist on type 'ITestImplementation<I, O, M>'.
|
|
336
|
+
src/lib/Tiposkripto.test/MockTiposkripto.ts(132,35): error TS2339: Property 'whens' does not exist on type 'ITestImplementation<I, O, M>'.
|
|
337
|
+
src/lib/Tiposkripto.test/MockTiposkripto.ts(133,45): error TS2339: Property 'whens' does not exist on type 'ITestImplementation<I, O, M>'.
|
|
338
|
+
src/lib/Tiposkripto.test/MockTiposkripto.ts(139,35): error TS2339: Property 'thens' does not exist on type 'ITestImplementation<I, O, M>'.
|
|
339
|
+
src/lib/Tiposkripto.test/MockTiposkripto.ts(140,45): error TS2339: Property 'thens' does not exist on type 'ITestImplementation<I, O, M>'.
|
|
340
|
+
src/lib/Tiposkripto.test/MockTiposkripto.ts(147,9): error TS2345: Argument of type '(name: string, tests: Record<string, any>, features: any[]) => { name: string; tests: Record<string, any>; features: any[]; }' is not assignable to parameter of type 'SuiteSpecification<I, O>'.
|
|
341
|
+
src/lib/Tiposkripto.test/MockTiposkripto.ts(156,28): error TS2339: Property 'tests' does not exist on type 'BaseSuite<I, O>'.
|
|
342
|
+
src/lib/Tiposkripto.test/MockTiposkripto.ts(156,50): error TS2339: Property 'tests' does not exist on type 'BaseSuite<I, O>'.
|
|
343
|
+
src/lib/Tiposkripto.test/MockTiposkripto.ts(157,51): error TS2339: Property 'tests' does not exist on type 'BaseSuite<I, O>'.
|
|
344
|
+
src/lib/Tiposkripto.test/MockTiposkripto.ts(158,32): error TS2339: Property 'tests' does not exist on type 'BaseSuite<I, O>'.
|
|
343
345
|
src/lib/Tiposkripto.test/Tiposkripto.adapter.ts(24,26): error TS2554: Expected 1 arguments, but got 2.
|
|
344
346
|
src/lib/Tiposkripto.test/Tiposkripto.adapter.ts(27,26): error TS2554: Expected 1 arguments, but got 2.
|
|
345
347
|
src/lib/Tiposkripto.test/Tiposkripto.adapter.ts(29,25): error TS2739: Type 'Tiposkripto<any, any, any>' is missing the following properties from type 'Promise<unknown>': then, catch, finally, [Symbol.toStringTag]
|
|
346
|
-
src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(
|
|
347
|
-
src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(42,11): error TS2322: Type 'never[]' is not assignable to type 'number'.
|
|
348
|
-
src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(57,32): error TS2322: Type 'ITestImplementation<I, O, M>' is not assignable to type 'ITestImplementation<any, any>'.
|
|
348
|
+
src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(63,7): error TS2322: Type 'ITestImplementation<I, O, M>' is not assignable to type 'ITestImplementation<any, any>'.
|
|
349
349
|
Type 'ITestImplementation<I, O, M>' is not assignable to type '{ whens: TestWhenImplementation<any, any>; }'.
|
|
350
350
|
Types of property 'whens' are incompatible.
|
|
351
351
|
Type '{ addArtifact: (artifact: Promise<any>) => (builder: Tiposkripto<any, any, any>) => Tiposkripto<any, any, any>; setTestJobs: (jobs: ITestJob[]) => (builder: Tiposkripto<...>) => Tiposkripto<...>; modifySpecs: (modifier: (specs: any[]) => any[]) => (builder: Tiposkripto<...>) => Tiposkripto<...>; modifyJobs: (modifie...' is not assignable to type 'TestWhenImplementation<any, any>'.
|
|
@@ -353,48 +353,37 @@ src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(57,32): error TS2322: Typ
|
|
|
353
353
|
Type '(artifact: Promise<any>) => (builder: Tiposkripto<any, any, any>) => Tiposkripto<any, any, any>' is not assignable to type '(...Iw: any) => (zel: any, tr: ITTestResourceConfiguration, utils: PM) => Promise<any>'.
|
|
354
354
|
Call signature return types '(builder: Tiposkripto<any, any, any>) => Tiposkripto<any, any, any>' and '(zel: any, tr: ITTestResourceConfiguration, utils: PM) => Promise<any>' are incompatible.
|
|
355
355
|
Type 'Tiposkripto<any, any, any>' is missing the following properties from type 'Promise<any>': then, catch, finally, [Symbol.toStringTag]
|
|
356
|
-
src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(
|
|
357
|
-
src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(72,11): error TS2322: Type 'never[]' is not assignable to type 'number'.
|
|
358
|
-
src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(82,11): error TS2322: Type 'never[]' is not assignable to type 'number'.
|
|
359
|
-
src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(109,5): error TS2322: Type '(config: string) => (builder: Tiposkripto<any, any, any>) => Promise<IFinalResults>' is not assignable to type '(config: string) => (builder: Tiposkripto<any, any, any>) => Tiposkripto<any, any, any>'.
|
|
356
|
+
src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(118,5): error TS2322: Type '(config: string) => (builder: Tiposkripto<any, any, any>) => Promise<IFinalResults>' is not assignable to type '(config: string) => (builder: Tiposkripto<any, any, any>) => Tiposkripto<any, any, any>'.
|
|
360
357
|
Call signature return types '(builder: Tiposkripto<any, any, any>) => Promise<IFinalResults>' and '(builder: Tiposkripto<any, any, any>) => Tiposkripto<any, any, any>' are incompatible.
|
|
361
358
|
Type 'Promise<IFinalResults>' is missing the following properties from type 'Tiposkripto<any, any, any>': receiveTestResourceConfig, specs, assertThis, testResourceRequirement, and 16 more.
|
|
362
|
-
src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(
|
|
359
|
+
src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(123,32): error TS2322: Type '(builder: any, utils: any) => MockTiposkripto<any, any, any>' is not assignable to type '(builder: Tiposkripto<any, any, any>) => Tiposkripto<any, any, any>'.
|
|
363
360
|
Target signature provides too few arguments. Expected 2 or more, but got 1.
|
|
364
|
-
src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(
|
|
361
|
+
src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(236,30): error TS2322: Type '(builder: any) => Promise<any>' is not assignable to type '(builder: Tiposkripto<any, any, any>) => Tiposkripto<any, any, any>'.
|
|
365
362
|
Type 'Promise<any>' is missing the following properties from type 'Tiposkripto<any, any, any>': receiveTestResourceConfig, specs, assertThis, testResourceRequirement, and 16 more.
|
|
366
|
-
src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(
|
|
363
|
+
src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(240,32): error TS2322: Type '(builder: any) => Promise<any>' is not assignable to type '(builder: Tiposkripto<any, any, any>) => Tiposkripto<any, any, any>'.
|
|
367
364
|
Type 'Promise<any>' is missing the following properties from type 'Tiposkripto<any, any, any>': receiveTestResourceConfig, specs, assertThis, testResourceRequirement, and 16 more.
|
|
368
|
-
src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(
|
|
365
|
+
src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(250,41): error TS2322: Type '(builder: any) => Promise<any>' is not assignable to type '(builder: Tiposkripto<any, any, any>) => Tiposkripto<any, any, any>'.
|
|
369
366
|
Type 'Promise<any>' is missing the following properties from type 'Tiposkripto<any, any, any>': receiveTestResourceConfig, specs, assertThis, testResourceRequirement, and 16 more.
|
|
370
|
-
src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(
|
|
367
|
+
src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(256,5): error TS2322: Type '(expectedCount: number) => (builder: any) => Promise<any>' is not assignable to type '(expectedCount: number) => (builder: Tiposkripto<any, any, any>) => Tiposkripto<any, any, any>'.
|
|
371
368
|
Call signature return types '(builder: any) => Promise<any>' and '(builder: Tiposkripto<any, any, any>) => Tiposkripto<any, any, any>' are incompatible.
|
|
372
369
|
Type 'Promise<any>' is missing the following properties from type 'Tiposkripto<any, any, any>': receiveTestResourceConfig, specs, assertThis, testResourceRequirement, and 16 more.
|
|
373
|
-
src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(
|
|
370
|
+
src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(265,38): error TS2322: Type '(builder: any) => Promise<any>' is not assignable to type '(builder: Tiposkripto<any, any, any>) => Tiposkripto<any, any, any>'.
|
|
374
371
|
Type 'Promise<any>' is missing the following properties from type 'Tiposkripto<any, any, any>': receiveTestResourceConfig, specs, assertThis, testResourceRequirement, and 16 more.
|
|
375
|
-
src/lib/Tiposkripto.test/Tiposkripto.specification.ts(
|
|
376
|
-
src/lib/Tiposkripto.test/Tiposkripto.specification.ts(
|
|
377
|
-
src/lib/Tiposkripto.test/Tiposkripto.specification.ts(
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
Type '(artifact: Promise<any>) => (builder: Tiposkripto<any, any, any>) => Tiposkripto<any, any, any>' is not assignable to type '(...Iw: any) => (zel: any, tr: ITTestResourceConfiguration, utils: PM) => Promise<any>'.
|
|
383
|
-
Call signature return types '(builder: Tiposkripto<any, any, any>) => Tiposkripto<any, any, any>' and '(zel: any, tr: ITTestResourceConfiguration, utils: PM) => Promise<any>' are incompatible.
|
|
384
|
-
Type 'Tiposkripto<any, any, any>' is missing the following properties from type 'Promise<any>': then, catch, finally, [Symbol.toStringTag]
|
|
385
|
-
src/lib/Tiposkripto.ts(206,7): error TS2345: Argument of type 'Record<string, any>' is not assignable to parameter of type 'SuiteSpecification<I, O>'.
|
|
386
|
-
src/lib/Tiposkripto.ts(269,15): error TS2554: Expected 1 arguments, but got 3.
|
|
387
|
-
src/mothership/test.ts(64,7): error TS2554: Expected 2 arguments, but got 3.
|
|
388
|
-
src/mothership/test.ts(70,13): error TS2322: Type '(x: any) => any' is not assignable to type 'string'.
|
|
389
|
-
src/Node.ts(34,7): error TS2345: 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 & { ...; }'.
|
|
372
|
+
src/lib/Tiposkripto.test/Tiposkripto.specification.ts(20,26): error TS2554: Expected 4 arguments, but got 3.
|
|
373
|
+
src/lib/Tiposkripto.test/Tiposkripto.specification.ts(25,35): error TS2554: Expected 4 arguments, but got 3.
|
|
374
|
+
src/lib/Tiposkripto.test/Tiposkripto.specification.ts(72,35): error TS2554: Expected 4 arguments, but got 3.
|
|
375
|
+
src/lib/Tiposkripto.test/Tiposkripto.specification.ts(77,34): error TS2554: Expected 4 arguments, but got 3.
|
|
376
|
+
src/lib/Tiposkripto.ts(221,7): error TS2345: Argument of type 'Record<string, any>' is not assignable to parameter of type 'SuiteSpecification<I, O>'.
|
|
377
|
+
src/lib/Tiposkripto.ts(281,15): error TS2554: Expected 1 arguments, but got 3.
|
|
378
|
+
src/Node.ts(33,7): error TS2345: 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 & { ...; }'.
|
|
390
379
|
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
|
|
391
|
-
src/Node.ts(
|
|
392
|
-
src/PM/__tests__/nodeSidecar.testeranto.ts(
|
|
393
|
-
src/PM/__tests__/nodeSidecar.testeranto.ts(
|
|
394
|
-
src/PM/__tests__/nodeSidecar.testeranto.ts(
|
|
395
|
-
src/PM/__tests__/nodeSidecar.testeranto.ts(
|
|
396
|
-
src/PM/__tests__/nodeSidecar.testeranto.ts(
|
|
397
|
-
src/PM/__tests__/nodeSidecar.testeranto.ts(
|
|
380
|
+
src/Node.ts(55,12): error TS2304: Cannot find name 'Testeranto'.
|
|
381
|
+
src/PM/__tests__/nodeSidecar.testeranto.ts(57,13): error TS2322: Type '(x: any) => any' is not assignable to type 'string'.
|
|
382
|
+
src/PM/__tests__/nodeSidecar.testeranto.ts(98,29): error TS2454: Variable 'callbackFn' is used before being assigned.
|
|
383
|
+
src/PM/__tests__/nodeSidecar.testeranto.ts(129,18): error TS2339: Property 'removeListenerCalled' does not exist on type 'PM'.
|
|
384
|
+
src/PM/__tests__/nodeSidecar.testeranto.ts(138,7): error TS2739: Type '{ beforeEach: (subject: unknown, initializer: (c?: any) => unknown, testResource: ITTestResourceConfiguration, initialValues: any, pm: IPM) => Promise<unknown>; andWhen: (store: unknown, whenCB: unknown, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<...>; }' is missing the following properties from type 'ITestAdapter<Ibdd_in_any>': assertThis, butThen, afterAll, afterEach, beforeAll
|
|
385
|
+
src/PM/__tests__/nodeSidecar.testeranto.ts(141,5): error TS18046: 'sidecar' is of type 'unknown'.
|
|
386
|
+
src/PM/__tests__/nodeSidecar.testeranto.ts(150,13): error TS18046: 'whenCB' is of type 'unknown'.
|
|
398
387
|
src/PM/__tests__/pureSidecar.testeranto.ts(53,43): error TS2304: Cannot find name 'I'.
|
|
399
388
|
src/PM/__tests__/pureSidecar.testeranto.ts(54,13): error TS2322: Type '(x: any) => any' is not assignable to type 'string'.
|
|
400
389
|
src/PM/__tests__/pureSidecar.testeranto.ts(69,7): error TS2322: Type '(event: string, callback: Function) => void' is not assignable to type '{ (event: "beforeExit", listener: BeforeExitListener): Process; (event: "disconnect", listener: DisconnectListener): Process; (event: "exit", listener: ExitListener): Process; (event: "rejectionHandled", listener: RejectionHandledListener): Process; (event: "uncaughtException", listener: UncaughtExceptionListener): ...'.
|
|
@@ -415,88 +404,63 @@ src/PM/__tests__/webSidecar.testeranto.ts(94,38): error TS2322: Type 'boolean' i
|
|
|
415
404
|
src/PM/__tests__/webSidecar.testeranto.ts(109,18): error TS2339: Property 'removeListenerCalled' does not exist on type 'PM'.
|
|
416
405
|
src/PM/__tests__/webSidecar.testeranto.ts(118,20): error TS2304: Cannot find name 'IPartialNodeAdapter'.
|
|
417
406
|
src/PM/__tests__/webSidecar.testeranto.ts(118,40): error TS2304: Cannot find name 'I'.
|
|
418
|
-
src/
|
|
419
|
-
Type 'Map<string, { child?: ChildProcess | undefined; status: "error" | "running" | "exited"; exitCode?: number | undefined; error?: string | undefined; command: string; pid?: number | undefined; timestamp: string; }>' is not assignable to type 'Map<string, { child?: ChildProcess | undefined; promise?: Promise<any> | undefined; status: "error" | "running" | "exited" | "completed"; exitCode?: number | undefined; ... 7 more ...; platform?: "node" | ... 4 more ... | undefined; }>'.
|
|
420
|
-
Type '{ child?: ChildProcess | undefined; status: "error" | "running" | "exited"; exitCode?: number | undefined; error?: string | undefined; command: string; pid?: number | undefined; timestamp: string; }' is missing the following properties from type '{ child?: ChildProcess | undefined; promise?: Promise<any> | undefined; status: "error" | "running" | "exited" | "completed"; exitCode?: number | undefined; ... 7 more ...; platform?: "node" | ... 4 more ... | undefined; }': type, category
|
|
421
|
-
src/PM/main.ts(234,13): error TS2367: This comparison appears to be unintentional because the types 'IRunTime' and '"pitono"' have no overlap.
|
|
422
|
-
src/PM/main.ts(246,13): error TS2367: This comparison appears to be unintentional because the types 'IRunTime' and '"pitono"' have no overlap.
|
|
423
|
-
src/PM/main.ts(286,13): error TS2367: This comparison appears to be unintentional because the types 'IRunTime' and '"pitono"' have no overlap.
|
|
424
|
-
src/PM/main.ts(356,9): error TS2367: This comparison appears to be unintentional because the types 'IRunTime' and '"pitono"' have no overlap.
|
|
425
|
-
src/PM/main.ts(364,11): error TS2367: This comparison appears to be unintentional because the types 'IRunTime' and '"pitono"' have no overlap.
|
|
426
|
-
src/PM/main.ts(379,11): error TS2367: This comparison appears to be unintentional because the types 'IRunTime' and '"pitono"' have no overlap.
|
|
427
|
-
src/PM/main.ts(958,37): error TS2345: Argument of type '"pitono"' is not assignable to parameter of type 'IRunTime'.
|
|
428
|
-
src/PM/main.ts(969,38): error TS2345: Argument of type '"pitono"' is not assignable to parameter of type 'IRunTime'.
|
|
429
|
-
src/PM/main.ts(1079,9): error TS2532: Object is possibly 'undefined'.
|
|
430
|
-
src/PM/main.ts(1118,11): error TS2322: Type 'string' is not assignable to type 'null'.
|
|
431
|
-
src/PM/PM_WithEslintAndTsc.ts(180,7): error TS2741: Property 'runTimeTests' is missing in type '{ typeErrors: undefined; staticErrors: undefined; runTimeErrors: undefined; prompt: undefined; failingFeatures: {}; }' but required in type '{ runTimeTests: number | "?" | undefined; runTimeErrors: number | "?" | undefined; typeErrors: number | "?" | undefined; staticErrors: number | "?" | undefined; prompt: string | undefined; failingFeatures: object | undefined; }'.
|
|
432
|
-
src/PM/PM_WithWebSocket.ts(166,21): error TS2322: Type 'number | null' is not assignable to type 'number | undefined'.
|
|
433
|
-
Type 'null' is not assignable to type 'number | undefined'.
|
|
434
|
-
src/PM/PM_WithWebSocket.ts(234,46): error TS2339: Property 'stdin' does not exist on type 'Promise<any> | ChildProcess'.
|
|
435
|
-
Property 'stdin' does not exist on type 'Promise<any>'.
|
|
436
|
-
src/PM/PM_WithWebSocket.ts(236,28): error TS2339: Property 'stdin' does not exist on type 'Promise<any> | ChildProcess'.
|
|
437
|
-
Property 'stdin' does not exist on type 'Promise<any>'.
|
|
438
|
-
src/PM/PM_WithWebSocket.ts(242,46): error TS2339: Property 'stdin' does not exist on type 'Promise<any> | ChildProcess'.
|
|
439
|
-
Property 'stdin' does not exist on type 'Promise<any>'.
|
|
440
|
-
src/PM/PM_WithWebSocket.ts(255,28): error TS2339: Property 'kill' does not exist on type 'Promise<any> | ChildProcess'.
|
|
441
|
-
Property 'kill' does not exist on type 'Promise<any>'.
|
|
442
|
-
src/PM/PM_WithWebSocket.ts(323,11): error TS2322: Type 'string' is not assignable to type 'null'.
|
|
443
|
-
src/PM/utils.ts(58,16): error TS2367: This comparison appears to be unintentional because the types '"golang" | "python"' and '"pitono"' have no overlap.
|
|
444
|
-
src/PM/web.ts(51,12): error TS2339: Property 'mainFrame' does not exist on type 'string | Page'.
|
|
445
|
-
Property 'mainFrame' does not exist on type 'string'.
|
|
446
|
-
src/Pure.test.ts(58,5): error TS2322: 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; }'.
|
|
407
|
+
src/Pure.test.ts(67,5): error TS2322: 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; }'.
|
|
447
408
|
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 ... | { ...; }; befor...' is not assignable to type '() => { pm: IPM; config: {}; proxies: any; }'.
|
|
448
409
|
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 ... | { ...; }; befor...' provides no match for the signature '(): { pm: IPM; config: {}; proxies: any; }'.
|
|
449
|
-
src/Pure.test.ts(
|
|
450
|
-
Call signature return types '(store: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<{
|
|
451
|
-
Type 'Promise<{ pm: IPM; } | { largePayload: boolean; pm: IPM; }>' is not assignable to type 'Promise<(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }>'.
|
|
452
|
-
Type '{ pm: IPM; } | { largePayload: boolean; pm: IPM; }' is not assignable to type '(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
|
|
453
|
-
Type '{ pm: IPM; }' is not assignable to type '(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
|
|
454
|
-
Type '{ pm: IPM; }' provides no match for the signature '(store: { [key: string]: any; pm: IPM; }): { [key: string]: any; pm: IPM; }'.
|
|
455
|
-
src/Pure.test.ts(
|
|
456
|
-
Call signature return types '(store: { pm: IPM; }) => Promise<{ artifacts:
|
|
457
|
-
Type 'Promise<{ artifacts:
|
|
458
|
-
Type '{ artifacts:
|
|
459
|
-
Type '{ artifacts:
|
|
460
|
-
src/Pure.test.ts(
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
src/Pure.test.ts(135,31): error TS2339: Property 'specs' does not exist on type '{ pm: IPM; }'.
|
|
472
|
-
src/Pure.test.ts(141,32): error TS2322: Type '(store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
|
|
410
|
+
src/Pure.test.ts(100,5): error TS2322: Type '(proxyType: string) => (store: { artifacts: never[]; specs: never[]; pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<{ artifacts: never[]; specs: never[]; pm: IPM; } | { ...; }>' is not assignable to type '(Iw_0: string) => (zel: { artifacts: never[]; specs: never[]; pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { [key: string]: any; pm: IPM; }) => { ...; }>'.
|
|
411
|
+
Call signature return types '(store: { artifacts: never[]; specs: never[]; pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<{ artifacts: never[]; specs: never[]; pm: IPM; } | { ...; }>' and '(zel: { artifacts: never[]; specs: never[]; pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { [key: string]: any; pm: IPM; }) => { ...; }>' are incompatible.
|
|
412
|
+
Type 'Promise<{ artifacts: never[]; specs: never[]; pm: IPM; } | { largePayload: boolean; pm: IPM; artifacts: never[]; specs: never[]; }>' is not assignable to type 'Promise<(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }>'.
|
|
413
|
+
Type '{ artifacts: never[]; specs: never[]; pm: IPM; } | { largePayload: boolean; pm: IPM; artifacts: never[]; specs: never[]; }' is not assignable to type '(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
|
|
414
|
+
Type '{ artifacts: never[]; specs: never[]; pm: IPM; }' is not assignable to type '(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
|
|
415
|
+
Type '{ artifacts: never[]; specs: never[]; pm: IPM; }' provides no match for the signature '(store: { [key: string]: any; pm: IPM; }): { [key: string]: any; pm: IPM; }'.
|
|
416
|
+
src/Pure.test.ts(132,5): error TS2322: Type '(artifact: Promise<string>) => (store: { artifacts: never[]; specs: never[]; pm: IPM; }) => Promise<{ artifacts: Promise<string>[]; specs: never[]; pm: IPM; }>' is not assignable to type '(Iw_0: Promise<string>) => (zel: { artifacts: never[]; specs: never[]; pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { ...; }) => { ...; }>'.
|
|
417
|
+
Call signature return types '(store: { artifacts: never[]; specs: never[]; pm: IPM; }) => Promise<{ artifacts: Promise<string>[]; specs: never[]; pm: IPM; }>' and '(zel: { artifacts: never[]; specs: never[]; pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { [key: string]: any; pm: IPM; }) => { ...; }>' are incompatible.
|
|
418
|
+
Type 'Promise<{ artifacts: Promise<string>[]; specs: never[]; pm: IPM; }>' is not assignable to type 'Promise<(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }>'.
|
|
419
|
+
Type '{ artifacts: Promise<string>[]; specs: never[]; pm: IPM; }' is not assignable to type '(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
|
|
420
|
+
Type '{ artifacts: Promise<string>[]; specs: never[]; pm: IPM; }' provides no match for the signature '(store: { [key: string]: any; pm: IPM; }): { [key: string]: any; pm: IPM; }'.
|
|
421
|
+
src/Pure.test.ts(138,5): error TS2322: Type '(jobs: any[]) => (store: { artifacts: never[]; specs: never[]; pm: IPM; }) => Promise<{ testJobs: any[]; artifacts: never[]; specs: never[]; pm: IPM; }>' is not assignable to type '(Iw_0: any[]) => (zel: { artifacts: never[]; specs: never[]; pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { [key: string]: any; pm: IPM; }) => { ...; }>'.
|
|
422
|
+
Call signature return types '(store: { artifacts: never[]; specs: never[]; pm: IPM; }) => Promise<{ testJobs: any[]; artifacts: never[]; specs: never[]; pm: IPM; }>' and '(zel: { artifacts: never[]; specs: never[]; pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { [key: string]: any; pm: IPM; }) => { ...; }>' are incompatible.
|
|
423
|
+
Type 'Promise<{ testJobs: any[]; artifacts: never[]; specs: never[]; pm: IPM; }>' is not assignable to type 'Promise<(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }>'.
|
|
424
|
+
Type '{ testJobs: any[]; artifacts: never[]; specs: never[]; pm: IPM; }' is not assignable to type '(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
|
|
425
|
+
Type '{ testJobs: any[]; artifacts: never[]; specs: never[]; pm: IPM; }' provides no match for the signature '(store: { [key: string]: any; pm: IPM; }): { [key: string]: any; pm: IPM; }'.
|
|
426
|
+
src/Pure.test.ts(144,5): error TS2322: Type '(modifier: (specs: any) => any[]) => (store: { artifacts: never[]; specs: never[]; pm: IPM; }) => Promise<{ specs: any[]; artifacts: never[]; pm: IPM; }>' is not assignable to type '(Iw_0: (specs: any) => any[]) => (zel: { artifacts: never[]; specs: never[]; pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { [key: string]: any; pm: IPM; }) => { ...; }>'.
|
|
427
|
+
Call signature return types '(store: { artifacts: never[]; specs: never[]; pm: IPM; }) => Promise<{ specs: any[]; artifacts: never[]; pm: IPM; }>' and '(zel: { artifacts: never[]; specs: never[]; pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { [key: string]: any; pm: IPM; }) => { ...; }>' are incompatible.
|
|
428
|
+
Type 'Promise<{ specs: any[]; artifacts: never[]; pm: IPM; }>' is not assignable to type 'Promise<(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }>'.
|
|
429
|
+
Type '{ specs: any[]; artifacts: never[]; pm: IPM; }' is not assignable to type '(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
|
|
430
|
+
Type '{ specs: any[]; artifacts: never[]; pm: IPM; }' provides no match for the signature '(store: { [key: string]: any; pm: IPM; }): { [key: string]: any; pm: IPM; }'.
|
|
431
|
+
src/Pure.test.ts(153,32): error TS2322: Type '(store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(ssel: { artifacts: never[]; specs: never[]; pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
|
|
473
432
|
Target signature provides too few arguments. Expected 3 or more, but got 2.
|
|
474
|
-
src/Pure.test.ts(
|
|
433
|
+
src/Pure.test.ts(159,27): error TS2322: Type '(store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(ssel: { artifacts: never[]; specs: never[]; pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
|
|
475
434
|
Target signature provides too few arguments. Expected 3 or more, but got 2.
|
|
476
|
-
src/Pure.test.ts(
|
|
435
|
+
src/Pure.test.ts(162,24): error TS2322: Type '(store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(ssel: { artifacts: never[]; specs: never[]; pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
|
|
477
436
|
Target signature provides too few arguments. Expected 3 or more, but got 2.
|
|
478
|
-
src/Pure.test.ts(
|
|
437
|
+
src/Pure.test.ts(165,29): error TS2322: Type '(store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(ssel: { artifacts: never[]; specs: never[]; pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
|
|
479
438
|
Target signature provides too few arguments. Expected 3 or more, but got 2.
|
|
480
|
-
src/Pure.test.ts(
|
|
439
|
+
src/Pure.test.ts(168,30): error TS2322: Type '(store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(ssel: { artifacts: never[]; specs: never[]; pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
|
|
481
440
|
Target signature provides too few arguments. Expected 3 or more, but got 2.
|
|
482
|
-
src/Pure.test.ts(
|
|
483
|
-
Type '(store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
|
|
441
|
+
src/Pure.test.ts(171,5): error TS2322: Type '(expectedCount: number) => (store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(It_0: number) => (ssel: { artifacts: never[]; specs: never[]; pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
|
|
442
|
+
Type '(store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(ssel: { artifacts: never[]; specs: never[]; pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
|
|
484
443
|
Target signature provides too few arguments. Expected 3 or more, but got 2.
|
|
485
|
-
src/Pure.test.ts(
|
|
486
|
-
Type '(store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
|
|
444
|
+
src/Pure.test.ts(174,5): error TS2322: Type '(expectedPath: string) => (store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(It_0: string) => (ssel: { artifacts: never[]; specs: never[]; pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
|
|
445
|
+
Type '(store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(ssel: { artifacts: never[]; specs: never[]; pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
|
|
487
446
|
Target signature provides too few arguments. Expected 3 or more, but got 2.
|
|
488
|
-
src/Pure.test.ts(
|
|
447
|
+
src/Pure.test.ts(177,26): error TS2322: Type '(store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(ssel: { artifacts: never[]; specs: never[]; pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
|
|
489
448
|
Target signature provides too few arguments. Expected 3 or more, but got 2.
|
|
490
|
-
src/Pure.test.ts(
|
|
491
|
-
Type '(store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
|
|
449
|
+
src/Pure.test.ts(180,5): error TS2322: Type '(expectedError: string) => (store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(It_0: string) => (ssel: { artifacts: never[]; specs: never[]; pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
|
|
450
|
+
Type '(store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(ssel: { artifacts: never[]; specs: never[]; pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
|
|
492
451
|
Target signature provides too few arguments. Expected 3 or more, but got 2.
|
|
493
|
-
src/Pure.test.ts(
|
|
452
|
+
src/Pure.test.ts(183,33): error TS2322: Type '(store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(ssel: { artifacts: never[]; specs: never[]; pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
|
|
494
453
|
Target signature provides too few arguments. Expected 3 or more, but got 2.
|
|
495
|
-
src/Pure.test.ts(
|
|
454
|
+
src/Pure.test.ts(186,31): error TS2322: Type '(store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(ssel: { artifacts: never[]; specs: never[]; pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
|
|
496
455
|
Target signature provides too few arguments. Expected 3 or more, but got 2.
|
|
497
|
-
src/Pure.test.ts(
|
|
456
|
+
src/Pure.test.ts(189,29): error TS2322: Type '(store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(ssel: { artifacts: never[]; specs: never[]; pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
|
|
498
457
|
Target signature provides too few arguments. Expected 3 or more, but got 2.
|
|
499
|
-
src/Pure.test.ts(
|
|
458
|
+
src/Pure.test.ts(328,30): error TS2339: Property 'pm' does not exist on type '() => { pm: IPM; config: {}; proxies: any; }'.
|
|
459
|
+
src/Pure.test.ts(331,40): error TS2554: Expected 1 arguments, but got 3.
|
|
460
|
+
src/Pure.test.ts(334,3): error TS2719: Type '(store: { pm: import("/Users/adam/Code/testeranto/src/lib/types").IPM; artifacts?: any[] | undefined; testJobs?: any[] | undefined; specs?: any[] | undefined; largePayload?: boolean | undefined; }, thenCB: (store: { ...; }) => { ...; }, testResource: import("/Users/adam/Code/testeranto/src/lib/index").ITTestResource...' is not assignable to type '(store: { pm: import("/Users/adam/Code/testeranto/src/lib/types").IPM; artifacts?: any[] | undefined; testJobs?: any[] | undefined; specs?: any[] | undefined; largePayload?: boolean | undefined; }, thenCB: (store: { ...; }) => { ...; }, testResource: import("/Users/adam/Code/testeranto/src/lib/index").ITTestResource...'. Two different types with this name exist, but they are unrelated.
|
|
461
|
+
Type 'Promise<{ [key: string]: any; pm: IPM; }>' is not assignable to type 'Promise<{ artifacts: never[]; specs: never[]; pm: IPM; }>'.
|
|
462
|
+
Type '{ [key: string]: any; pm: IPM; }' is missing the following properties from type '{ artifacts: never[]; specs: never[]; pm: IPM; }': artifacts, specs
|
|
463
|
+
src/Pure.test.ts(335,40): error TS2554: Expected 1 arguments, but got 3.
|
|
500
464
|
src/Pure.ts(33,7): error TS2345: 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 & { ...; }'.
|
|
501
465
|
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
|
|
502
466
|
src/Pure.ts(42,9): error TS2416: Property 'receiveTestResourceConfig' in type 'PureTesteranto<I, O, M>' is not assignable to the same property in base type 'Tiposkripto<I, O, M>'.
|
|
@@ -504,35 +468,6 @@ src/Pure.ts(42,9): error TS2416: Property 'receiveTestResourceConfig' in type 'P
|
|
|
504
468
|
Type 'Promise<IFinalResults | { failed: boolean; fails: number; artifacts: never[]; features: never[]; }>' is not assignable to type 'Promise<IFinalResults>'.
|
|
505
469
|
Type 'IFinalResults | { failed: boolean; fails: number; artifacts: never[]; features: never[]; }' is not assignable to type 'IFinalResults'.
|
|
506
470
|
Type '{ failed: boolean; fails: number; artifacts: never[]; features: never[]; }' is missing the following properties from type 'IFinalResults': tests, runTimeTests
|
|
507
|
-
src/
|
|
508
|
-
src/ReportServer.test.ts/index.ts(117,3): error TS2719: Type '(store: import("http").Server<typeof import("http").IncomingMessage, typeof import("http").ServerResponse>, thenCB: import("http").Server<typeof import("http").IncomingMessage, typeof import("http").ServerResponse>, testResource: import("/Users/adam/Code/testeranto/src/lib/index").ITTestResourceConfiguration, pm: im...' is not assignable to type '(store: import("http").Server<typeof import("http").IncomingMessage, typeof import("http").ServerResponse>, thenCB: import("http").Server<typeof import("http").IncomingMessage, typeof import("http").ServerResponse>, testResource: import("/Users/adam/Code/testeranto/src/lib/index").ITTestResourceConfiguration, pm: im...'. Two different types with this name exist, but they are unrelated.
|
|
509
|
-
Type 'Promise<Server<typeof IncomingMessage, typeof ServerResponse>>' is not assignable to type 'Promise<number>'.
|
|
510
|
-
Type 'Server<typeof IncomingMessage, typeof ServerResponse>' is not assignable to type 'number'.
|
|
511
|
-
src/ReportServer.test.ts/index.ts(174,51): error TS2304: Cannot find name 'IProjectPageViewProps'.
|
|
512
|
-
src/ReportServer.test.ts/index.ts(180,14): error TS2304: Cannot find name 'IProjectPageViewProps'.
|
|
513
|
-
src/ReportServer.test.ts/index.ts(182,10): error TS2304: Cannot find name 'IProjectPageViewProps'.
|
|
514
|
-
src/ReportServer.test.ts/index.ts(190,3): error TS2345: Argument of type '(port: number) => void' is not assignable to parameter of type '(port: number) => Server<typeof IncomingMessage, typeof ServerResponse>'.
|
|
515
|
-
Type 'void' is not assignable to type 'Server<typeof IncomingMessage, typeof ServerResponse>'.
|
|
516
|
-
src/ReportServer.ts(8,20): error TS2345: Argument of type 'string | 3000' is not assignable to parameter of type 'number'.
|
|
517
|
-
Type 'string' is not assignable to type 'number'.
|
|
518
|
-
src/ReportServerLib.ts(111,33): error TS2339: Property 'status' does not exist on type 'Error'.
|
|
519
|
-
src/testeranto.ts(112,35): error TS2345: Argument of type '"pitono"' is not assignable to parameter of type 'IRunTime | undefined'.
|
|
520
|
-
src/testeranto.ts(134,53): error TS2367: This comparison appears to be unintentional because the types 'IRunTime' and '"pitono"' have no overlap.
|
|
521
|
-
src/utils.ts(148,10): error TS2339: Property 'golangEntryPoints' does not exist on type 'IRunnables'.
|
|
522
|
-
src/utils.ts(149,16): error TS2367: This comparison appears to be unintentional because the types '"python"' and '"pitono"' have no overlap.
|
|
523
|
-
src/utils.ts(151,10): error TS2551: Property 'pitonoEntryPoints' does not exist on type 'IRunnables'. Did you mean 'nodeEntryPoints'?
|
|
524
|
-
src/utils.ts(193,12): error TS2551: Property 'golangEntryPointSidecars' does not exist on type 'IRunnables'. Did you mean 'nodeEntryPointSidecars'?
|
|
525
|
-
src/utils.ts(196,22): error TS2367: This comparison appears to be unintentional because the types 'IRunTime' and '"pitono"' have no overlap.
|
|
526
|
-
src/utils.ts(199,12): error TS2551: Property 'pitonoEntryPointSidecars' does not exist on type 'IRunnables'. Did you mean 'nodeEntryPointSidecars'?
|
|
527
|
-
src/utils/api.ts(31,44): error TS2345: Argument of type 'string' is not assignable to parameter of type 'RuntimeName'.
|
|
528
|
-
src/utils/featureUtils.tsx(26,4): error TS2686: 'React' refers to a UMD global, but the current file is a module. Consider adding an import instead.
|
|
529
|
-
src/utils/featureUtils.tsx(28,8): error TS2686: 'React' refers to a UMD global, but the current file is a module. Consider adding an import instead.
|
|
530
|
-
src/utils/featureUtils.tsx(30,12): error TS2686: 'React' refers to a UMD global, but the current file is a module. Consider adding an import instead.
|
|
531
|
-
src/utils/featureUtils.tsx(34,11): error TS2686: 'React' refers to a UMD global, but the current file is a module. Consider adding an import instead.
|
|
532
|
-
src/utils/featureUtils.tsx(35,14): error TS2686: 'React' refers to a UMD global, but the current file is a module. Consider adding an import instead.
|
|
533
|
-
src/utils/makePrompt.ts(60,31): error TS2345: Argument of type 'IRunTime' is not assignable to parameter of type 'RuntimeName'.
|
|
534
|
-
Type '"golang"' is not assignable to type 'RuntimeName'.
|
|
535
|
-
src/Web.ts(43,7): error TS2345: 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 & { ...; }'.
|
|
471
|
+
src/Web.ts(34,7): error TS2345: 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 & { ...; }'.
|
|
536
472
|
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
|
|
537
|
-
src/Web.ts(92,12): error TS2552: Cannot find name 'Testeranto'. Did you mean 'WebTesteranto'?
|
|
538
473
|
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
|