testeranto 0.189.0 → 0.198.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.vscode/settings.json +7 -2
- package/ALL_LICENSES.txt +11246 -0
- package/LICENSE +21 -0
- package/default-project.json +44 -0
- package/design-editor/DesignEditor.tsx +251 -0
- package/design-editor/index.ts +2 -0
- package/design-editor/server.ts +121 -0
- package/design-editor/types.ts +16 -0
- package/designs/default-project.json +210 -0
- package/dist/common/design-editor/DesignEditor.js +242 -0
- package/dist/common/design-editor/index.js +18 -0
- package/dist/common/design-editor/server.js +98 -0
- package/dist/common/src/App.js +40 -6
- package/dist/common/src/Node.js +3 -2
- package/dist/common/src/PM/PM_WithEslintAndTsc.js +8 -1
- package/dist/common/src/PM/base.js +1 -0
- package/dist/common/src/PM/main.js +371 -5
- package/dist/common/src/PM/node.js +4 -2
- package/dist/common/src/PM/pure.js +15 -57
- package/dist/common/src/PM/web.js +5 -3
- package/dist/common/src/Pure.js +2 -2
- package/dist/common/src/Pure.test.js +46 -78
- package/dist/common/src/ReportServer.js +8 -2
- package/dist/common/src/Web.js +2 -2
- package/dist/common/src/build.js +1 -1
- package/dist/common/src/components/DesignEditorPage.js +205 -0
- package/dist/common/src/components/pure/AppFrame.js +62 -13
- package/dist/common/src/components/pure/ModalContent.test/implementation.js +13 -11
- package/dist/common/src/components/pure/ModalContent.test/index.js +48 -2
- package/dist/common/src/components/pure/ModalContent.test/specification.js +2 -2
- package/dist/common/src/components/pure/NavBar.js +9 -10
- package/dist/common/src/components/pure/ProcessManager.js +112 -0
- package/dist/common/src/components/pure/ProcessManagerView.js +237 -0
- package/dist/common/src/components/pure/ProjectPageView.test/implementation.js +134 -106
- package/dist/common/src/components/pure/ProjectsPageView.js +18 -12
- package/dist/common/src/components/pure/SettingsButton.js +4 -74
- package/dist/common/src/components/pure/SingleProcessView.js +214 -0
- package/dist/common/src/components/pure/TestPageView.js +457 -78
- package/dist/common/src/components/pure/TestPageView.test/implementation.js +90 -135
- package/dist/common/src/components/stateful/FeaturesReporter.js +1 -1
- package/dist/common/src/components/stateful/FileTree.js +40 -0
- package/dist/common/src/components/stateful/ProcessManagerPage.js +112 -0
- package/dist/common/src/components/stateful/ProjectPage.js +6 -5
- package/dist/common/src/components/stateful/ProjectsPage.js +32 -6
- package/dist/common/src/components/stateful/SettingsPage.js +72 -0
- package/dist/common/src/components/stateful/SingleProcessPage.js +147 -0
- package/dist/common/src/components/stateful/TestPage.js +104 -8
- package/dist/common/src/components/stateful/TextEditorPage.js +154 -0
- package/dist/common/src/esbuildConfigs/inputFilesPlugin.js +3 -4
- package/dist/common/src/lib/{abstractBase.js → BaseGiven.js} +14 -91
- package/dist/common/src/lib/BaseSuite.js +6 -3
- package/dist/common/src/lib/BaseSuite.test/mock.js +25 -34
- package/dist/common/src/lib/BaseSuite.test/test.js +33 -31
- package/dist/common/src/lib/BaseThen.js +64 -0
- package/dist/common/src/lib/BaseWhen.js +45 -0
- package/dist/common/src/lib/Tiposkripto.js +149 -0
- package/dist/common/src/lib/{core.test/MockCore.js → Tiposkripto.test/MockTiposkripto.js} +5 -8
- package/dist/common/src/lib/{core.test/core.test.adapter.js → Tiposkripto.test/Tiposkripto.adapter.js} +10 -8
- package/dist/common/src/lib/{classBuilder.test/classBuilder.test.implementation.js → Tiposkripto.test/Tiposkripto.implementation.js} +44 -61
- package/dist/common/src/lib/Tiposkripto.test/Tiposkripto.js +11 -0
- package/dist/common/src/lib/{classBuilder.test/classBuilder.test.specification.js → Tiposkripto.test/Tiposkripto.specification.js} +13 -9
- package/dist/common/src/lib/abstractBase.test/MockGiven.js +10 -3
- package/dist/common/src/lib/abstractBase.test/MockThen.js +6 -3
- package/dist/common/src/lib/abstractBase.test/MockWhen.js +10 -3
- package/dist/common/src/lib/abstractBase.test/adapter.js +18 -6
- package/dist/common/src/lib/abstractBase.test/implementation.js +3 -3
- package/dist/common/src/lib/index.js +11 -14
- package/dist/common/src/lib/mocks.test.js +10 -8
- package/dist/common/src/lib/pmProxy.js +37 -14
- package/dist/common/src/lib/pmProxy.test/adapter.js +12 -2
- package/dist/common/src/lib/pmProxy.test/implementation.js +73 -43
- package/dist/common/src/lib/pmProxy.test/specification.js +3 -0
- package/dist/common/src/run.js +15 -4
- package/dist/common/src/utils/api.js +44 -33
- package/dist/common/src/utils/logFiles.js +48 -22
- package/dist/common/src/utils/makePrompt.js +5 -4
- package/dist/common/testeranto.config.js +19 -41
- package/dist/common/tsconfig.common.tsbuildinfo +1 -1
- package/dist/module/design-editor/DesignEditor.js +206 -0
- package/dist/module/design-editor/index.js +2 -0
- package/dist/module/design-editor/server.js +92 -0
- package/dist/module/src/App.js +40 -6
- package/dist/module/src/Node.js +3 -2
- package/dist/module/src/PM/PM_WithEslintAndTsc.js +8 -1
- package/dist/module/src/PM/base.js +1 -0
- package/dist/module/src/PM/main.js +371 -5
- package/dist/module/src/PM/node.js +4 -2
- package/dist/module/src/PM/pure.js +15 -57
- package/dist/module/src/PM/web.js +5 -3
- package/dist/module/src/Pure.js +2 -2
- package/dist/module/src/Pure.test.js +46 -78
- package/dist/module/src/ReportServer.js +8 -2
- package/dist/module/src/Web.js +2 -2
- package/dist/module/src/build.js +1 -1
- package/dist/module/src/components/DesignEditorPage.js +168 -0
- package/dist/module/src/components/pure/AppFrame.js +30 -11
- package/dist/module/src/components/pure/ModalContent.test/implementation.js +13 -11
- package/dist/module/src/components/pure/ModalContent.test/index.js +48 -2
- package/dist/module/src/components/pure/ModalContent.test/specification.js +2 -2
- package/dist/module/src/components/pure/NavBar.js +10 -11
- package/dist/module/src/components/pure/ProcessManager.js +75 -0
- package/dist/module/src/components/pure/ProcessManagerView.js +200 -0
- package/dist/module/src/components/pure/ProjectPageView.test/implementation.js +134 -106
- package/dist/module/src/components/pure/ProjectsPageView.js +20 -14
- package/dist/module/src/components/pure/SettingsButton.js +5 -42
- package/dist/module/src/components/pure/SingleProcessView.js +214 -0
- package/dist/module/src/components/pure/TestPageView.js +425 -76
- package/dist/module/src/components/pure/TestPageView.test/implementation.js +90 -135
- package/dist/module/src/components/stateful/FeaturesReporter.js +1 -1
- package/dist/module/src/components/stateful/FileTree.js +33 -0
- package/dist/module/src/components/stateful/ProcessManagerPage.js +75 -0
- package/dist/module/src/components/stateful/ProjectPage.js +6 -5
- package/dist/module/src/components/stateful/ProjectsPage.js +32 -6
- package/dist/module/src/components/stateful/SettingsPage.js +35 -0
- package/dist/module/src/components/stateful/SingleProcessPage.js +110 -0
- package/dist/module/src/components/stateful/TestPage.js +104 -8
- package/dist/module/src/components/stateful/TextEditorPage.js +117 -0
- package/dist/module/src/esbuildConfigs/inputFilesPlugin.js +3 -4
- package/dist/module/src/lib/{abstractBase.js → BaseGiven.js} +14 -89
- package/dist/module/src/lib/BaseSuite.js +6 -3
- package/dist/module/src/lib/BaseSuite.test/mock.js +22 -31
- package/dist/module/src/lib/BaseSuite.test/test.js +33 -31
- package/dist/module/src/lib/BaseThen.js +60 -0
- package/dist/module/src/lib/BaseWhen.js +41 -0
- package/dist/module/src/lib/Tiposkripto.js +146 -0
- package/dist/module/src/lib/{core.test/MockCore.js → Tiposkripto.test/MockTiposkripto.js} +3 -6
- package/dist/module/src/lib/{core.test/core.test.adapter.js → Tiposkripto.test/Tiposkripto.adapter.js} +10 -8
- package/dist/module/src/lib/{classBuilder.test/classBuilder.test.implementation.js → Tiposkripto.test/Tiposkripto.implementation.js} +44 -58
- package/dist/module/src/lib/Tiposkripto.test/Tiposkripto.js +6 -0
- package/dist/module/src/lib/{classBuilder.test/classBuilder.test.specification.js → Tiposkripto.test/Tiposkripto.specification.js} +12 -8
- package/dist/module/src/lib/abstractBase.test/MockGiven.js +9 -2
- package/dist/module/src/lib/abstractBase.test/MockThen.js +5 -2
- package/dist/module/src/lib/abstractBase.test/MockWhen.js +9 -2
- package/dist/module/src/lib/abstractBase.test/adapter.js +18 -6
- package/dist/module/src/lib/abstractBase.test/implementation.js +3 -3
- package/dist/module/src/lib/index.js +11 -14
- package/dist/module/src/lib/mocks.test.js +11 -5
- package/dist/module/src/lib/pmProxy.js +37 -14
- package/dist/module/src/lib/pmProxy.test/adapter.js +12 -2
- package/dist/module/src/lib/pmProxy.test/implementation.js +73 -43
- package/dist/module/src/lib/pmProxy.test/specification.js +3 -0
- package/dist/module/src/run.js +15 -4
- package/dist/module/src/utils/api.js +45 -34
- package/dist/module/src/utils/logFiles.js +45 -20
- package/dist/module/src/utils/makePrompt.js +5 -4
- package/dist/module/testeranto.config.js +19 -41
- package/dist/module/tsconfig.module.tsbuildinfo +1 -1
- package/dist/prebuild/App.css +54 -513
- package/dist/prebuild/App.js +5291 -1921
- package/dist/prebuild/ReportServer.mjs +104 -6
- package/dist/prebuild/build.mjs +8 -5
- package/dist/prebuild/run.mjs +414 -51
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/design-editor/DesignEditor.d.ts +18 -0
- package/dist/types/design-editor/server.d.ts +1 -0
- package/dist/types/{Node.d.ts → src/Node.d.ts} +2 -2
- package/dist/types/src/PM/__tests__/nodeSidecar.testeranto.d.ts +2 -0
- package/dist/types/src/PM/__tests__/pureSidecar.testeranto.d.ts +2 -0
- package/dist/types/src/PM/__tests__/webSidecar.testeranto.d.ts +2 -0
- package/dist/types/{PM → src/PM}/index.d.ts +1 -1
- package/dist/types/{PM → src/PM}/main.d.ts +19 -0
- package/dist/types/{PM → src/PM}/pure.d.ts +7 -7
- package/dist/types/{Pure.d.ts → src/Pure.d.ts} +2 -2
- package/dist/types/src/Pure.test.d.ts +2 -0
- package/dist/types/src/ReportServer.test.ts/index.d.ts +2 -0
- package/dist/types/{Types.d.ts → src/Types.d.ts} +3 -1
- package/dist/types/{Web.d.ts → src/Web.d.ts} +2 -2
- package/dist/types/src/components/DesignEditorPage.d.ts +1 -0
- package/dist/types/{components → src/components}/pure/AppFrame.d.ts +3 -1
- package/dist/types/src/components/pure/AppFrame.test/index.d.ts +3 -0
- package/dist/types/src/components/pure/FeaturesReporterView.test/index.d.ts +2 -0
- package/dist/types/src/components/pure/ModalContent.test/index.d.ts +2 -0
- package/dist/types/{components → src/components}/pure/NavBar.d.ts +4 -0
- package/dist/types/src/components/pure/ProcessManager.d.ts +8 -0
- package/dist/types/src/components/pure/ProcessManagerView.d.ts +20 -0
- package/dist/types/src/components/pure/ProjectPageView.test/index.d.ts +2 -0
- package/dist/types/{components → src/components}/pure/ProjectsPageView.d.ts +1 -1
- package/dist/types/src/components/pure/SettingsButton.d.ts +2 -0
- package/dist/types/{components → src/components}/pure/TestPageView.test/implementation.d.ts +3 -2
- package/dist/types/src/components/pure/TestPageView.test/index.d.ts +3 -0
- package/dist/types/src/components/stateful/FileTree.d.ts +8 -0
- package/dist/types/src/components/stateful/ProcessManagerPage.d.ts +2 -0
- package/dist/types/src/components/stateful/SettingsPage.d.ts +2 -0
- package/dist/types/src/components/stateful/SingleProcessPage.d.ts +2 -0
- package/dist/types/src/components/stateful/TextEditorPage.d.ts +1 -0
- package/dist/types/src/lib/BaseGiven.d.ts +44 -0
- package/dist/types/{lib → src/lib}/BaseSuite.d.ts +12 -7
- package/dist/types/{lib → src/lib}/BaseSuite.test/mock.d.ts +6 -4
- package/dist/types/src/lib/BaseSuite.test/node.test.d.ts +2 -0
- package/dist/types/src/lib/BaseSuite.test/pure.test.d.ts +2 -0
- package/dist/types/src/lib/BaseSuite.test/web.test.d.ts +2 -0
- package/dist/types/src/lib/BaseThen.d.ts +27 -0
- package/dist/types/src/lib/BaseWhen.d.ts +27 -0
- package/dist/types/src/lib/Tiposkripto.d.ts +35 -0
- package/dist/types/{lib/core.test/MockCore.d.ts → src/lib/Tiposkripto.test/MockTiposkripto.d.ts} +3 -3
- package/dist/types/{lib/core.test/core.test.adapter.d.ts → src/lib/Tiposkripto.test/Tiposkripto.adapter.d.ts} +1 -1
- package/dist/types/src/lib/Tiposkripto.test/Tiposkripto.d.ts +2 -0
- package/dist/types/{lib/core.test/core.test.implementation.d.ts → src/lib/Tiposkripto.test/Tiposkripto.implementation.d.ts} +1 -1
- package/dist/types/{lib/core.test/core.test.specification.d.ts → src/lib/Tiposkripto.test/Tiposkripto.specification.d.ts} +1 -1
- package/dist/types/{lib/classBuilder.test/classBuilder.test.types.d.ts → src/lib/Tiposkripto.test/Tiposkripto.types.d.ts} +11 -9
- package/dist/types/{lib → src/lib}/abstractBase.test/MockGiven.d.ts +3 -1
- package/dist/types/{lib → src/lib}/abstractBase.test/MockThen.d.ts +1 -1
- package/dist/types/{lib → src/lib}/abstractBase.test/MockWhen.d.ts +1 -1
- package/dist/types/src/lib/abstractBase.test/index.d.ts +2 -0
- package/dist/types/{lib → src/lib}/abstractBase.test/types.d.ts +3 -3
- package/dist/types/{lib → src/lib}/index.d.ts +2 -2
- package/dist/types/{lib → src/lib}/pmProxy.test/index.d.ts +1 -2
- package/dist/types/{lib → src/lib}/pmProxy.test/mockPMBase.d.ts +1 -1
- package/dist/types/{lib → src/lib}/types.d.ts +3 -1
- package/dist/types/src/mothership/test.d.ts +2 -0
- package/dist/types/src/utils/logFiles.d.ts +71 -0
- package/dist/types/tsconfig.types.tsbuildinfo +1 -1
- package/docs/test-page-components.md +91 -0
- package/package.json +29 -10
- package/src/App.tsx +38 -5
- package/src/Node.ts +3 -2
- package/src/PM/PM_WithEslintAndTsc.ts +9 -4
- package/src/PM/base.ts +1 -0
- package/src/PM/index.ts +1 -1
- package/src/PM/main.ts +425 -9
- package/src/PM/node.ts +5 -2
- package/src/PM/pure.ts +23 -61
- package/src/PM/web.ts +7 -3
- package/src/Pure.test.ts +63 -99
- package/src/Pure.ts +3 -2
- package/src/README.md +20 -1
- package/src/ReportServer.ts +10 -3
- package/src/Types.ts +5 -3
- package/src/Web.ts +2 -2
- package/src/app.scss +169 -0
- package/src/build.ts +5 -1
- package/src/components/DesignEditorPage.tsx +202 -0
- package/src/components/pure/AppFrame.tsx +121 -16
- package/src/components/pure/ModalContent.test/implementation.tsx +14 -12
- package/src/components/pure/ModalContent.test/index.tsx +58 -6
- package/src/components/pure/ModalContent.test/specification.ts +2 -2
- package/src/components/pure/NavBar.tsx +31 -15
- package/src/components/pure/ProcessManager.tsx +117 -0
- package/src/components/pure/ProcessManagerView.tsx +414 -0
- package/src/components/pure/ProjectPageView.test/implementation.tsx +136 -106
- package/src/components/pure/ProjectPageView.test/index.tsx +0 -2
- package/src/components/pure/ProjectsPageView.tsx +41 -31
- package/src/components/pure/SettingsButton.tsx +7 -62
- package/src/components/pure/SingleProcessView.tsx +235 -0
- package/src/components/pure/TestPageView.test/implementation.ts +115 -147
- package/src/components/pure/TestPageView.test/specification.ts +0 -1
- package/src/components/pure/TestPageView.tsx +821 -100
- package/src/components/stateful/FeaturesReporter.tsx +1 -1
- package/src/components/stateful/FileTree.tsx +66 -0
- package/src/components/stateful/ProcessManagerPage.tsx +108 -0
- package/src/components/stateful/ProjectPage.tsx +6 -5
- package/src/components/stateful/ProjectsPage.tsx +36 -7
- package/src/components/stateful/SettingsPage.tsx +82 -0
- package/src/components/stateful/SingleProcessPage.tsx +155 -0
- package/src/components/stateful/TestPage.tsx +128 -20
- package/src/components/stateful/TextEditorPage.tsx +170 -0
- package/src/esbuildConfigs/inputFilesPlugin.ts +3 -4
- package/src/lib/BaseGiven.ts +193 -0
- package/src/lib/BaseSuite.test/mock.ts +28 -42
- package/src/lib/BaseSuite.test/test.ts +38 -42
- package/src/lib/BaseSuite.ts +20 -4
- package/src/lib/BaseThen.ts +108 -0
- package/src/lib/BaseWhen.ts +91 -0
- package/src/lib/{core.test/MockCore.ts → Tiposkripto.test/MockTiposkripto.ts} +4 -7
- package/src/lib/{core.test/core.test.adapter.ts → Tiposkripto.test/Tiposkripto.adapter.ts} +12 -11
- package/src/lib/{classBuilder.test/classBuilder.test.implementation.ts → Tiposkripto.test/Tiposkripto.implementation.ts} +75 -78
- package/src/lib/Tiposkripto.test/Tiposkripto.specification.ts +109 -0
- package/src/lib/Tiposkripto.test/Tiposkripto.ts +15 -0
- package/src/lib/{classBuilder.test/classBuilder.test.types.ts → Tiposkripto.test/Tiposkripto.types.ts} +12 -9
- package/src/lib/Tiposkripto.ts +325 -0
- package/src/lib/abstractBase.test/MockGiven.ts +12 -2
- package/src/lib/abstractBase.test/MockThen.ts +7 -2
- package/src/lib/abstractBase.test/MockWhen.ts +10 -2
- package/src/lib/abstractBase.test/adapter.ts +20 -6
- package/src/lib/abstractBase.test/implementation.ts +6 -6
- package/src/lib/abstractBase.test/types.ts +3 -3
- package/src/lib/index.ts +26 -20
- package/src/lib/mocks.test.ts +10 -9
- package/src/lib/pmProxy.test/adapter.ts +10 -2
- package/src/lib/pmProxy.test/implementation.ts +108 -57
- package/src/lib/pmProxy.test/mockPMBase.ts +1 -1
- package/src/lib/pmProxy.test/specification.ts +11 -0
- package/src/lib/pmProxy.ts +40 -15
- package/src/lib/types.ts +3 -1
- package/src/run.ts +19 -4
- package/src/style.scss +3 -502
- package/src/templates/frontpage.html +317 -40
- package/src/templates/frontpage.md +79 -0
- package/src/themes.scss +40 -8
- package/src/utils/api.ts +47 -44
- package/src/utils/logFiles.ts +57 -23
- package/src/utils/makePrompt.ts +5 -4
- package/stargazers.txt +15 -0
- package/stargzers.js +68 -0
- package/testeranto/App.css +54 -513
- package/testeranto/App.js +5291 -1921
- package/testeranto/bundles/node/core/src/lib/BaseSuite.test/node.test.mjs +1146 -46
- package/testeranto/bundles/pure/core/src/lib/BaseSuite.test/pure.test.mjs +1016 -72
- package/testeranto/bundles/web/core/src/lib/BaseSuite.test/web.test.mjs +1004 -86
- package/testeranto/metafiles/node/core.json +990 -0
- package/testeranto/{bundles/pure/core/metafile.json → metafiles/pure/core.json} +153 -309
- package/testeranto/{bundles/web/core/metafile.json → metafiles/web/core.json} +1075 -1825
- package/testeranto/reports/core/config.json +8 -64
- package/testeranto/reports/core/src/Pure.test/pure/prompt.txt +1 -1
- package/testeranto/reports/core/src/Pure.test/pure/type_errors.txt +63 -103
- package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/error.log +61 -50
- package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/prompt.txt +1 -1
- package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/tests.json +24 -32
- package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/type_errors.txt +17 -41
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/error.log +22 -33
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/info.log +0 -2
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/lint_errors.txt +13 -2
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/prompt.txt +1 -1
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/tests.json +30 -41
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/type_errors.txt +31 -77
- package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/lint_errors.txt +47 -0
- package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/prompt.txt +2 -3
- package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/tests.json +17 -29
- package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/type_errors.txt +84 -96
- package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/prompt.txt +3 -2
- package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/tests.json +7 -9
- package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/type_errors.txt +42 -99
- package/testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/prompt.txt +1 -1
- package/testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/type_errors.txt +42 -99
- package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/prompt.txt +1 -1
- package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/tests.json +7 -9
- package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/type_errors.txt +41 -98
- package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/exit.log +1 -0
- package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/prompt.txt +17 -0
- package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/stderr.log +18 -0
- package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/type_errors.txt +32 -0
- package/testeranto/reports/core/src/lib/pmProxy.test/index/node/exit.log +1 -1
- package/testeranto/reports/core/src/lib/pmProxy.test/index/node/lint_errors.txt +6 -14
- package/testeranto/reports/core/src/lib/pmProxy.test/index/node/prompt.txt +3 -3
- package/testeranto/reports/core/src/lib/pmProxy.test/index/node/stderr.log +66 -0
- package/testeranto/reports/core/src/lib/pmProxy.test/index/node/stdout.log +10 -0
- package/testeranto/reports/core/src/lib/pmProxy.test/index/node/type_errors.txt +21 -52
- package/testeranto/reports/core/summary.json +22 -71
- package/testeranto.config.ts +21 -45
- package/tsc.log +289 -449
- package/tsconfig.json +3 -2
- package/CNAME +0 -1
- package/README.html +0 -302
- package/dist/common/src/PM/layers/base/PM_Base.js +0 -1
- package/dist/common/src/PM/layers/base/components/PageOperations.js +0 -1
- package/dist/common/src/PM/layers/base/components/PageOperations.testeranto.js +0 -1
- package/dist/common/src/PM/layers/linting/components/Linter.js +0 -1
- package/dist/common/src/PM/layers/linting/components/TypeChecker.js +0 -1
- package/dist/common/src/PM/layers/main/components/SidecarManager.js +0 -1
- package/dist/common/src/PM/layers/main/components/TestRunner.js +0 -1
- package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.adapter.js +0 -19
- package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.implementation.js +0 -113
- package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.mock.js +0 -46
- package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.node.js +0 -12
- package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.pure.js +0 -12
- package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.specification.js +0 -18
- package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.web.js +0 -12
- package/dist/common/src/lib/basebuilder.js +0 -96
- package/dist/common/src/lib/classBuilder.js +0 -36
- package/dist/common/src/lib/classBuilder.test/classBuilder.test.adapter.js +0 -23
- package/dist/common/src/lib/classBuilder.test/classBuilder.test.js +0 -12
- package/dist/common/src/lib/classBuilder.test/mock.js +0 -17
- package/dist/common/src/lib/core.js +0 -47
- package/dist/common/src/lib/core.test/core.test.implementation.js +0 -121
- package/dist/common/src/lib/core.test/core.test.js +0 -63
- package/dist/common/src/lib/core.test/core.test.specification.js +0 -53
- package/dist/common/src/lib/core.test/core.test.types.js +0 -2
- package/dist/module/src/PM/layers/base/PM_Base.js +0 -1
- package/dist/module/src/PM/layers/base/components/PageOperations.js +0 -1
- package/dist/module/src/PM/layers/base/components/PageOperations.testeranto.js +0 -1
- package/dist/module/src/PM/layers/linting/components/Linter.js +0 -1
- package/dist/module/src/PM/layers/linting/components/TypeChecker.js +0 -1
- package/dist/module/src/PM/layers/main/components/SidecarManager.js +0 -1
- package/dist/module/src/PM/layers/main/components/TestRunner.js +0 -1
- package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.adapter.js +0 -16
- package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.implementation.js +0 -110
- package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.mock.js +0 -42
- package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.node.js +0 -7
- package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.pure.js +0 -7
- package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.specification.js +0 -14
- package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.web.js +0 -7
- package/dist/module/src/lib/basebuilder.js +0 -92
- package/dist/module/src/lib/classBuilder.js +0 -32
- package/dist/module/src/lib/classBuilder.test/classBuilder.test.adapter.js +0 -20
- package/dist/module/src/lib/classBuilder.test/classBuilder.test.js +0 -7
- package/dist/module/src/lib/classBuilder.test/mock.js +0 -14
- package/dist/module/src/lib/core.js +0 -44
- package/dist/module/src/lib/core.test/core.test.implementation.js +0 -118
- package/dist/module/src/lib/core.test/core.test.js +0 -58
- package/dist/module/src/lib/core.test/core.test.specification.js +0 -49
- package/dist/module/src/lib/core.test/core.test.types.js +0 -1
- package/dist/types/PM/__tests__/nodeSidecar.testeranto.d.ts +0 -16
- package/dist/types/PM/__tests__/pureSidecar.testeranto.d.ts +0 -16
- package/dist/types/PM/__tests__/webSidecar.testeranto.d.ts +0 -16
- package/dist/types/PM/layers/base/components/PageOperations.testeranto.d.ts +0 -0
- package/dist/types/PM/layers/linting/components/Linter.d.ts +0 -0
- package/dist/types/PM/layers/linting/components/TypeChecker.d.ts +0 -0
- package/dist/types/PM/layers/main/components/SidecarManager.d.ts +0 -0
- package/dist/types/PM/layers/main/components/TestRunner.d.ts +0 -0
- package/dist/types/Pure.test.d.ts +0 -47
- package/dist/types/ReportServer.test.ts/index.d.ts +0 -29
- package/dist/types/components/pure/AppFrame.test/index.d.ts +0 -5
- package/dist/types/components/pure/FeaturesReporterView.test/index.d.ts +0 -2
- package/dist/types/components/pure/ModalContent.test/index.d.ts +0 -2
- package/dist/types/components/pure/ProjectPageView.test/index.d.ts +0 -2
- package/dist/types/components/pure/SettingsButton.d.ts +0 -3
- package/dist/types/components/pure/TestPageView.test/index.d.ts +0 -32
- package/dist/types/lib/BaseSuite.test/node.test.d.ts +0 -3
- package/dist/types/lib/BaseSuite.test/pure.test.d.ts +0 -3
- package/dist/types/lib/BaseSuite.test/web.test.d.ts +0 -3
- package/dist/types/lib/abstractBase.d.ts +0 -70
- package/dist/types/lib/abstractBase.test/index.d.ts +0 -3
- package/dist/types/lib/baseBuilder.test/baseBuilder.test.adapter.d.ts +0 -3
- package/dist/types/lib/baseBuilder.test/baseBuilder.test.implementation.d.ts +0 -3
- package/dist/types/lib/baseBuilder.test/baseBuilder.test.mock.d.ts +0 -15
- package/dist/types/lib/baseBuilder.test/baseBuilder.test.node.d.ts +0 -3
- package/dist/types/lib/baseBuilder.test/baseBuilder.test.pure.d.ts +0 -3
- package/dist/types/lib/baseBuilder.test/baseBuilder.test.specification.d.ts +0 -3
- package/dist/types/lib/baseBuilder.test/baseBuilder.test.types.d.ts +0 -22
- package/dist/types/lib/baseBuilder.test/baseBuilder.test.web.d.ts +0 -3
- package/dist/types/lib/basebuilder.d.ts +0 -23
- package/dist/types/lib/classBuilder.d.ts +0 -15
- package/dist/types/lib/classBuilder.test/classBuilder.test.adapter.d.ts +0 -3
- package/dist/types/lib/classBuilder.test/classBuilder.test.d.ts +0 -3
- package/dist/types/lib/classBuilder.test/classBuilder.test.implementation.d.ts +0 -3
- package/dist/types/lib/classBuilder.test/classBuilder.test.specification.d.ts +0 -3
- package/dist/types/lib/classBuilder.test/mock.d.ts +0 -14
- package/dist/types/lib/core.d.ts +0 -12
- package/dist/types/lib/core.test/core.test.d.ts +0 -3
- package/dist/types/lib/core.test/core.test.types.d.ts +0 -46
- package/dist/types/lib/mocks.test.d.ts +0 -2
- package/dist/types/mothership/test.d.ts +0 -19
- package/dist/types/utils/logFiles.d.ts +0 -7
- package/docs.html +0 -590
- package/example.css +0 -351
- package/index.html +0 -138
- package/scripts/compile-docs.js +0 -150
- package/smil30/SMIL-anim.mod.xsd +0 -163
- package/smil30/SMIL-control.mod.xsd +0 -73
- package/smil30/SMIL-layout.mod.xsd +0 -149
- package/smil30/SMIL-link.mod.xsd +0 -145
- package/smil30/SMIL-media.mod.xsd +0 -1646
- package/smil30/SMIL-metainformation.mod.xsd +0 -45
- package/smil30/SMIL-smiltext.mod.xsd +0 -353
- package/smil30/SMIL-state.mod.xsd +0 -133
- package/smil30/SMIL-struct.mod.xsd +0 -70
- package/smil30/SMIL-timing.mod.xsd +0 -105
- package/smil30/SMIL-transition.mod.xsd +0 -229
- package/smil30/SMIL.xsd +0 -63
- package/smil30/its.xsd +0 -42
- package/smil30/smil-attribs-1.mod.xsd +0 -610
- package/smil30/smil-datatypes-1.mod.xsd +0 -72
- package/smil30/smil-framework-1.mod.xsd +0 -45
- package/smil30/xml.xsd +0 -16
- package/src/App.scss +0 -123
- package/src/PM/layers/base/PM_Base.ts +0 -0
- package/src/PM/layers/base/components/PageOperations.testeranto.ts +0 -0
- package/src/PM/layers/base/components/PageOperations.ts +0 -0
- package/src/PM/layers/linting/components/Linter.ts +0 -0
- package/src/PM/layers/linting/components/TypeChecker.ts +0 -0
- package/src/PM/layers/main/components/SidecarManager.ts +0 -0
- package/src/PM/layers/main/components/TestRunner.ts +0 -0
- package/src/fonts.scss +0 -55
- package/src/lib/abstractBase.ts +0 -332
- package/src/lib/baseBuilder.test/baseBuilder.test.adapter.ts +0 -22
- package/src/lib/baseBuilder.test/baseBuilder.test.implementation.ts +0 -138
- package/src/lib/baseBuilder.test/baseBuilder.test.mock.ts +0 -90
- package/src/lib/baseBuilder.test/baseBuilder.test.node.ts +0 -16
- package/src/lib/baseBuilder.test/baseBuilder.test.pure.ts +0 -16
- package/src/lib/baseBuilder.test/baseBuilder.test.specification.ts +0 -35
- package/src/lib/baseBuilder.test/baseBuilder.test.types.ts +0 -36
- package/src/lib/baseBuilder.test/baseBuilder.test.web.ts +0 -16
- package/src/lib/basebuilder.ts +0 -192
- package/src/lib/classBuilder.test/classBuilder.test.adapter.ts +0 -25
- package/src/lib/classBuilder.test/classBuilder.test.specification.ts +0 -104
- package/src/lib/classBuilder.test/classBuilder.test.ts +0 -14
- package/src/lib/classBuilder.test/mock.ts +0 -83
- package/src/lib/classBuilder.ts +0 -122
- package/src/lib/core.test/core.test.implementation.ts +0 -155
- package/src/lib/core.test/core.test.specification.ts +0 -113
- package/src/lib/core.test/core.test.ts +0 -72
- package/src/lib/core.test/core.test.types.ts +0 -68
- package/src/lib/core.ts +0 -141
- package/style.css +0 -12175
- package/testeranto/bundles/node/core/chunk-JBB5E3XJ.mjs +0 -258
- package/testeranto/bundles/node/core/chunk-L67RWZ4W.mjs +0 -899
- package/testeranto/bundles/node/core/chunk-ZQRRQYS4.mjs +0 -92
- package/testeranto/bundles/node/core/metafile.json +0 -5735
- package/testeranto/bundles/node/core/src/lib/baseBuilder.test/baseBuilder.test.node.mjs +0 -247
- package/testeranto/bundles/node/core/src/lib/classBuilder.test/classBuilder.test.mjs +0 -423
- package/testeranto/bundles/node/core/src/lib/core.test/core.test.mjs +0 -505
- package/testeranto/bundles/node/core/src/lib/pmProxy.test/index.mjs +0 -4804
- package/testeranto/bundles/node/core/src/mothership/test.mjs +0 -24588
- package/testeranto/bundles/pure/core/chunk-KHJ35R7C.mjs +0 -997
- package/testeranto/bundles/pure/core/src/Pure.test.mjs +0 -428
- package/testeranto/bundles/pure/core/src/lib/baseBuilder.test/baseBuilder.test.pure.mjs +0 -235
- 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-BADF3AZF.mjs +0 -108
- package/testeranto/bundles/web/core/chunk-BXV27S2S.mjs +0 -6252
- package/testeranto/bundles/web/core/chunk-EIYZKF2C.mjs +0 -223
- package/testeranto/bundles/web/core/chunk-FNXFUNA7.mjs +0 -28528
- package/testeranto/bundles/web/core/chunk-LU364HVS.mjs +0 -3311
- package/testeranto/bundles/web/core/chunk-QWII7WIM.mjs +0 -2281
- package/testeranto/bundles/web/core/chunk-VAYOSMXI.mjs +0 -21775
- package/testeranto/bundles/web/core/src/components/pure/AppFrame.test/index.css +0 -12105
- package/testeranto/bundles/web/core/src/components/pure/AppFrame.test/index.html +0 -15
- package/testeranto/bundles/web/core/src/components/pure/AppFrame.test/index.mjs +0 -517
- package/testeranto/bundles/web/core/src/components/pure/FeaturesReporterView.test/index.html +0 -15
- package/testeranto/bundles/web/core/src/components/pure/FeaturesReporterView.test/index.mjs +0 -166
- package/testeranto/bundles/web/core/src/components/pure/ModalContent.test/index.css +0 -12105
- package/testeranto/bundles/web/core/src/components/pure/ModalContent.test/index.html +0 -15
- package/testeranto/bundles/web/core/src/components/pure/ModalContent.test/index.mjs +0 -93
- package/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.css +0 -12105
- package/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.html +0 -15
- package/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs +0 -343
- package/testeranto/bundles/web/core/src/components/pure/TestPageView.test/index.css +0 -12105
- package/testeranto/bundles/web/core/src/components/pure/TestPageView.test/index.html +0 -15
- package/testeranto/bundles/web/core/src/components/pure/TestPageView.test/index.mjs +0 -483
- package/testeranto/bundles/web/core/src/lib/baseBuilder.test/baseBuilder.test.web.html +0 -15
- package/testeranto/bundles/web/core/src/lib/baseBuilder.test/baseBuilder.test.web.mjs +0 -256
- package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/debug.log +0 -0
- package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/error.log +0 -22
- package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/exit.log +0 -1
- package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/info.log +0 -4
- package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/lint_errors.txt +0 -2
- package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/prompt.txt +0 -18
- package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/tests.json +0 -57
- package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/type_errors.txt +0 -55
- package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/warn.log +0 -0
- package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/suite-0/given-basicRender/then-4/butThen/features-reporter.png +0 -0
- package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/debug.log +0 -0
- package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/error.log +0 -0
- package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/exit.log +0 -0
- package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/info.log +0 -4
- package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/message.txt +0 -17
- package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/prompt.txt +0 -15
- package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/suite-0/given-basicRender/then-2/butThen/modal-content.png +0 -0
- package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/tests.json +0 -42
- package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/type_errors.txt +0 -65
- package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/warn.log +0 -0
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/suite-0/given-basicRender/then-6/butThen/happy-state.png +0 -0
- package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/suite-0/given-errorHandling/then-1/butThen/error-state.png +0 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/exit.log +0 -1
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/lint_errors.txt +0 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/message.txt +0 -17
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/prompt.txt +0 -17
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/stderr.log +0 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/stdout.log +0 -2
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/suite-0/given-testInitialization/then-0/butThen/hello.txt +0 -1
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/suite-0/given-testInitialization/then-1/butThen/artifact_test.txt +0 -1
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/tests.json +0 -71
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/type_errors.txt +0 -65
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/exit.log +0 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/lint_errors.txt +0 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/message.txt +0 -17
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/prompt.txt +0 -17
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/type_errors.txt +0 -65
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/debug.log +0 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/error.log +0 -1
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/exit.log +0 -1
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/info.log +0 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/lint_errors.txt +0 -0
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/message.txt +0 -17
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/prompt.txt +0 -17
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/suite-0/given-testInitialization/then-0/butThen/hello.txt +0 -1
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/suite-0/given-testInitialization/then-1/butThen/artifact_test.txt +0 -1
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/tests.json +0 -71
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/type_errors.txt +0 -65
- package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/warn.log +0 -0
- package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/exit.log +0 -1
- package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/lint_errors.txt +0 -0
- package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/message.txt +0 -17
- package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/prompt.txt +0 -17
- package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/stderr.log +0 -0
- package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/stdout.log +0 -619
- package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/tests.json +0 -165
- package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/type_errors.txt +0 -140
- package/testeranto/reports/core/src/lib/core.test/core.test/node/exit.log +0 -1
- package/testeranto/reports/core/src/lib/core.test/core.test/node/lint_errors.txt +0 -21
- package/testeranto/reports/core/src/lib/core.test/core.test/node/message.txt +0 -17
- package/testeranto/reports/core/src/lib/core.test/core.test/node/prompt.txt +0 -19
- package/testeranto/reports/core/src/lib/core.test/core.test/node/stderr.log +0 -0
- package/testeranto/reports/core/src/lib/core.test/core.test/node/type_errors.txt +0 -64
- package/testeranto/reports/core/src/lib/pmProxy.test/index/node/tests.json +0 -162
- package/testeranto/reports/core/src/mothership/test/node/exit.log +0 -1
- package/testeranto/reports/core/src/mothership/test/node/lint_errors.txt +0 -0
- package/testeranto/reports/core/src/mothership/test/node/message.txt +0 -17
- package/testeranto/reports/core/src/mothership/test/node/prompt.txt +0 -14
- package/testeranto/reports/core/src/mothership/test/node/stderr.log +0 -27
- package/testeranto/reports/core/src/mothership/test/node/stdout.log +0 -8
- package/testeranto/reports/core/src/mothership/test/node/tests.json +0 -36
- package/testeranto/reports/core/src/mothership/test/node/type_errors.txt +0 -38
- package/videos/download-smil-xsd.sh +0 -29
- package/videos/project0/index.md +0 -72
- package/videos/project0/narration.json +0 -7
- package/videos/project0/narration.ssml +0 -58
- package/videos/project0/package.json +0 -21
- package/videos/project0/presentation.smil +0 -25
- package/videos/project0/smil30/SMIL-anim.mod.xsd +0 -163
- package/videos/project0/smil30/SMIL-anim.mod.xsd.1 +0 -163
- package/videos/project0/smil30/SMIL-anim.mod.xsd.2 +0 -163
- package/videos/project0/smil30/SMIL-control.mod.xsd +0 -73
- package/videos/project0/smil30/SMIL-control.mod.xsd.1 +0 -73
- package/videos/project0/smil30/SMIL-control.mod.xsd.2 +0 -73
- package/videos/project0/smil30/SMIL-layout.mod.xsd +0 -149
- package/videos/project0/smil30/SMIL-layout.mod.xsd.1 +0 -149
- package/videos/project0/smil30/SMIL-layout.mod.xsd.2 +0 -149
- package/videos/project0/smil30/SMIL-link.mod.xsd +0 -145
- package/videos/project0/smil30/SMIL-link.mod.xsd.1 +0 -145
- package/videos/project0/smil30/SMIL-link.mod.xsd.2 +0 -145
- package/videos/project0/smil30/SMIL-media.mod.xsd +0 -1646
- package/videos/project0/smil30/SMIL-media.mod.xsd.1 +0 -1646
- package/videos/project0/smil30/SMIL-media.mod.xsd.2 +0 -1646
- package/videos/project0/smil30/SMIL-metainformation.mod.xsd +0 -45
- package/videos/project0/smil30/SMIL-metainformation.mod.xsd.1 +0 -45
- package/videos/project0/smil30/SMIL-metainformation.mod.xsd.2 +0 -45
- package/videos/project0/smil30/SMIL-smiltext.mod.xsd +0 -353
- package/videos/project0/smil30/SMIL-smiltext.mod.xsd.1 +0 -353
- package/videos/project0/smil30/SMIL-smiltext.mod.xsd.2 +0 -353
- package/videos/project0/smil30/SMIL-state.mod.xsd +0 -133
- package/videos/project0/smil30/SMIL-state.mod.xsd.1 +0 -133
- package/videos/project0/smil30/SMIL-state.mod.xsd.2 +0 -133
- package/videos/project0/smil30/SMIL-struct.mod.xsd +0 -70
- package/videos/project0/smil30/SMIL-struct.mod.xsd.1 +0 -70
- package/videos/project0/smil30/SMIL-struct.mod.xsd.2 +0 -70
- package/videos/project0/smil30/SMIL-timing.mod.xsd +0 -105
- package/videos/project0/smil30/SMIL-timing.mod.xsd.1 +0 -105
- package/videos/project0/smil30/SMIL-timing.mod.xsd.2 +0 -105
- package/videos/project0/smil30/SMIL-transition.mod.xsd +0 -229
- package/videos/project0/smil30/SMIL-transition.mod.xsd.1 +0 -229
- package/videos/project0/smil30/SMIL-transition.mod.xsd.2 +0 -229
- package/videos/project0/smil30/SMIL.xsd +0 -63
- package/videos/project0/smil30/SMIL.xsd.1 +0 -63
- package/videos/project0/smil30/SMIL.xsd.2 +0 -63
- package/videos/project0/smil30/its.xsd +0 -42
- package/videos/project0/smil30/its.xsd.1 +0 -42
- package/videos/project0/smil30/its.xsd.2 +0 -42
- package/videos/project0/smil30/smil-attribs-1.mod.xsd +0 -610
- package/videos/project0/smil30/smil-attribs-1.mod.xsd.1 +0 -610
- package/videos/project0/smil30/smil-attribs-1.mod.xsd.2 +0 -610
- package/videos/project0/smil30/smil-datatypes-1.mod.xsd +0 -72
- package/videos/project0/smil30/smil-datatypes-1.mod.xsd.1 +0 -72
- package/videos/project0/smil30/smil-datatypes-1.mod.xsd.2 +0 -72
- package/videos/project0/smil30/smil-framework-1.mod.xsd +0 -45
- package/videos/project0/smil30/smil-framework-1.mod.xsd.1 +0 -45
- package/videos/project0/smil30/smil-framework-1.mod.xsd.2 +0 -45
- package/videos/project0/smil30/smil-profile-model-1.mod.xsd +0 -1331
- package/videos/project0/smil30/smil-profile-model-1.mod.xsd.1 +0 -1331
- package/videos/project0/smil30/smil-qname-1.mod.xsd +0 -121
- package/videos/project0/smil30/smil-qname-1.mod.xsd.1 +0 -121
- package/videos/project0/smil30/xml.xsd +0 -16
- package/videos/project0/smil30/xml.xsd.1 +0 -16
- package/videos/project0/smil30/xml.xsd.2 +0 -16
- package/videos/project0/smil30.xsd +0 -137
- package/videos/project0/src/audio/metadata.json +0 -5
- package/videos/project0/src/audio/narration.mp3 +0 -0
- package/videos/project0/src/motion-canvas.d.ts +0 -1
- package/videos/project0/src/project.meta +0 -31
- package/videos/project0/src/project.ts +0 -13
- package/videos/project0/src/scenes/example.meta +0 -5
- package/videos/project0/src/scenes/scene1.meta +0 -3
- package/videos/project0/src/scenes/scene1.tsx +0 -129
- package/videos/project0/src/scenes/scene2.tsx +0 -132
- package/videos/project0/src/scenes/scene3.meta +0 -26
- package/videos/project0/src/scenes/scene3.tsx +0 -188
- package/videos/project0/tsconfig.json +0 -4
- package/videos/project0/vite.config.ts +0 -10
- package/videos/trash/output/project.mp4 +0 -0
- package/videos/trash/text.mp4 +0 -0
- package/videos/trash/video/project.tsx +0 -549
- package/videos/trash/video/render.ts +0 -15
- package/videos/trash/vite.config.ts +0 -10
- package/videos/tts.js +0 -109
- /package/dist/common/{src/lib/baseBuilder.test/baseBuilder.test.types.js → design-editor/types.js} +0 -0
- /package/dist/common/src/lib/{classBuilder.test/classBuilder.test.types.js → Tiposkripto.test/Tiposkripto.types.js} +0 -0
- /package/dist/module/{src/lib/baseBuilder.test/baseBuilder.test.types.js → design-editor/types.js} +0 -0
- /package/dist/module/src/lib/{classBuilder.test/classBuilder.test.types.js → Tiposkripto.test/Tiposkripto.types.js} +0 -0
- /package/dist/types/{App.d.ts → src/App.d.ts} +0 -0
- /package/dist/types/{CoreTypes.d.ts → src/CoreTypes.d.ts} +0 -0
- /package/dist/types/{Init.d.ts → src/Init.d.ts} +0 -0
- /package/dist/types/{NodeSidecar.d.ts → src/NodeSidecar.d.ts} +0 -0
- /package/dist/types/{PM → src/PM}/PM_WithEslintAndTsc.d.ts +0 -0
- /package/dist/types/{PM → src/PM}/base.d.ts +0 -0
- /package/dist/types/{PM → src/PM}/node.d.ts +0 -0
- /package/dist/types/{PM → src/PM}/nodeSidecar.d.ts +0 -0
- /package/dist/types/{PM → src/PM}/pureSidecar.d.ts +0 -0
- /package/dist/types/{PM → src/PM}/sidecar.d.ts +0 -0
- /package/dist/types/{PM → src/PM}/types.d.ts +0 -0
- /package/dist/types/{PM → src/PM}/web.d.ts +0 -0
- /package/dist/types/{PM → src/PM}/webSidecar.d.ts +0 -0
- /package/dist/types/{PureSidecar.d.ts → src/PureSidecar.d.ts} +0 -0
- /package/dist/types/{ReportServer.d.ts → src/ReportServer.d.ts} +0 -0
- /package/dist/types/{ReportServerLib.d.ts → src/ReportServerLib.d.ts} +0 -0
- /package/dist/types/{WebSidecar.d.ts → src/WebSidecar.d.ts} +0 -0
- /package/dist/types/{build.d.ts → src/build.d.ts} +0 -0
- /package/dist/types/{components → src/components}/SunriseAnimation.d.ts +0 -0
- /package/dist/types/{components → src/components}/SunriseAnimation.test/implementation.d.ts +0 -0
- /package/dist/types/{components → src/components}/SunriseAnimation.test/index.d.ts +0 -0
- /package/dist/types/{components → src/components}/SunriseAnimation.test/interface.d.ts +0 -0
- /package/dist/types/{components → src/components}/SunriseAnimation.test/specification.d.ts +0 -0
- /package/dist/types/{components → src/components}/SunriseAnimation.test/types.d.ts +0 -0
- /package/dist/types/{components → src/components}/TestStatusBadge.d.ts +0 -0
- /package/dist/types/{components → src/components}/pure/AppFrame.test/implementation.d.ts +0 -0
- /package/dist/types/{components → src/components}/pure/AppFrame.test/specification.d.ts +0 -0
- /package/dist/types/{components → src/components}/pure/AppFrame.test/types.d.ts +0 -0
- /package/dist/types/{components → src/components}/pure/FeaturesReporterView.d.ts +0 -0
- /package/dist/types/{components → src/components}/pure/FeaturesReporterView.test/implementation.d.ts +0 -0
- /package/dist/types/{components → src/components}/pure/FeaturesReporterView.test/specification.d.ts +0 -0
- /package/dist/types/{components → src/components}/pure/FeaturesReporterView.test/types.d.ts +0 -0
- /package/dist/types/{components → src/components}/pure/ModalContent.d.ts +0 -0
- /package/dist/types/{components → src/components}/pure/ModalContent.test/implementation.d.ts +0 -0
- /package/dist/types/{components → src/components}/pure/ModalContent.test/specification.d.ts +0 -0
- /package/dist/types/{components → src/components}/pure/ModalContent.test/types.d.ts +0 -0
- /package/dist/types/{components → src/components}/pure/ProjectPageView.d.ts +0 -0
- /package/dist/types/{components → src/components}/pure/ProjectPageView.test/implementation.d.ts +0 -0
- /package/dist/types/{components → src/components}/pure/ProjectPageView.test/specification.d.ts +0 -0
- /package/dist/types/{components → src/components}/pure/ProjectPageView.test/types.d.ts +0 -0
- /package/dist/types/{PM/layers/base/PM_Base.d.ts → src/components/pure/SingleProcessView.d.ts} +0 -0
- /package/dist/types/{components → src/components}/pure/TestPageView.d.ts +0 -0
- /package/dist/types/{components → src/components}/pure/TestPageView.test/specification.d.ts +0 -0
- /package/dist/types/{components → src/components}/pure/TestPageView.test/types.d.ts +0 -0
- /package/dist/types/{components → src/components}/pure/ThemeCard.d.ts +0 -0
- /package/dist/types/{components → src/components}/stateful/FeaturesReporter.d.ts +0 -0
- /package/dist/types/{components → src/components}/stateful/ProjectPage.d.ts +0 -0
- /package/dist/types/{components → src/components}/stateful/ProjectsPage.d.ts +0 -0
- /package/dist/types/{components → src/components}/stateful/TestPage.d.ts +0 -0
- /package/dist/types/{defaultConfig.d.ts → src/defaultConfig.d.ts} +0 -0
- /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/consoleDetectorPlugin.d.ts +0 -0
- /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/eslint-formatter-testeranto.d.ts +0 -0
- /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/featuresPlugin.d.ts +0 -0
- /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/index.d.ts +0 -0
- /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/inputFilesPlugin.d.ts +0 -0
- /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/nativeImportDetectorPlugin.d.ts +0 -0
- /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/node.d.ts +0 -0
- /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/pure.d.ts +0 -0
- /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/rebuildPlugin.d.ts +0 -0
- /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/web.d.ts +0 -0
- /package/dist/types/{init-docs.d.ts → src/init-docs.d.ts} +0 -0
- /package/dist/types/{lib → src/lib}/BaseSuite.test/test.d.ts +0 -0
- /package/dist/types/{lib → src/lib}/Sidecar.d.ts +0 -0
- /package/dist/types/{lib → src/lib}/abstractBase.test/adapter.d.ts +0 -0
- /package/dist/types/{lib → src/lib}/abstractBase.test/implementation.d.ts +0 -0
- /package/dist/types/{lib → src/lib}/abstractBase.test/specification.d.ts +0 -0
- /package/dist/types/{PM/layers/base/components/PageOperations.d.ts → src/lib/mocks.test.d.ts} +0 -0
- /package/dist/types/{lib → src/lib}/pmProxy.d.ts +0 -0
- /package/dist/types/{lib → src/lib}/pmProxy.test/adapter.d.ts +0 -0
- /package/dist/types/{lib → src/lib}/pmProxy.test/implementation.d.ts +0 -0
- /package/dist/types/{lib → src/lib}/pmProxy.test/mockPM.d.ts +0 -0
- /package/dist/types/{lib → src/lib}/pmProxy.test/specification.d.ts +0 -0
- /package/dist/types/{lib → src/lib}/pmProxy.test/types.d.ts +0 -0
- /package/dist/types/{mothership → src/mothership}/index.d.ts +0 -0
- /package/dist/types/{run.d.ts → src/run.d.ts} +0 -0
- /package/dist/types/{types → src/types}/features.d.ts +0 -0
- /package/dist/types/{utils → src/utils}/api.d.ts +0 -0
- /package/dist/types/{utils → src/utils}/buildTemplates.d.ts +0 -0
- /package/dist/types/{utils → src/utils}/featureUtils.d.ts +0 -0
- /package/dist/types/{utils → src/utils}/makePrompt.d.ts +0 -0
- /package/dist/types/{utils → src/utils}/queue.d.ts +0 -0
- /package/dist/types/{utils.d.ts → src/utils.d.ts} +0 -0
- /package/dist/types/{web.html.d.ts → src/web.html.d.ts} +0 -0
- /package/testeranto/reports/core/src/{components/pure/ModalContent.test/index/web → lib/TipoSkripto.test/TipoSkripto/node}/lint_errors.txt +0 -0
- /package/testeranto/reports/core/src/{components/pure/AppFrame.test/index/web → lib/TipoSkripto.test/TipoSkripto/node}/message.txt +0 -0
- /package/testeranto/reports/core/src/lib/{core.test/core.test → TipoSkripto.test/TipoSkripto}/node/stdout.log +0 -0
package/tsc.log
CHANGED
|
@@ -1,32 +1,35 @@
|
|
|
1
1
|
$ /Users/adam/Code/testeranto/node_modules/.bin/tsc --noEmit
|
|
2
|
-
|
|
2
|
+
node_modules/testeranto-react/src/react-dom/component/dynamic.ts(33,14): error TS2322: Type '(testInput: typeof Component) => { beforeAll: (subject: typeof Component, artificer: ITTestResourceConfiguration) => Promise<{ htmlElement: HTMLElement; }>; ... 5 more ...; assertThis: (x: (s: ISelection) => ISelection) => (s: ISelection) => ISelection; }' is not assignable to type '(testInput: typeof Component) => ITestAdapter<I>'.
|
|
3
3
|
Call signature return types '{ beforeAll: (subject: typeof Component, artificer: ITTestResourceConfiguration) => Promise<{ htmlElement: HTMLElement; }>; ... 5 more ...; assertThis: (x: (s: ISelection) => ISelection) => (s: ISelection) => ISelection; }' and 'ITestAdapter<I>' are incompatible.
|
|
4
4
|
The types returned by 'beforeAll(...)' are incompatible between these types.
|
|
5
5
|
Type 'Promise<{ htmlElement: HTMLElement; }>' is not assignable to type 'Promise<ISubject>'.
|
|
6
6
|
Property 'domRoot' is missing in type '{ htmlElement: HTMLElement; }' but required in type 'ISubject'.
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
src/
|
|
14
|
-
src/
|
|
15
|
-
src/
|
|
7
|
+
node_modules/testeranto-react/src/react-dom/component/dynamic.ts(47,45): error TS2339: Property 'subject' does not exist on type 'Readonly<{}>'.
|
|
8
|
+
node_modules/testeranto-react/src/react-dom/component/dynamic.ts(114,9): error TS2554: Expected 1 arguments, but got 3.
|
|
9
|
+
node_modules/testeranto-react/src/react-dom/jsx/dynamic.ts(4,39): error TS2459: Module '"testeranto/src/lib"' declares 'IPM' locally, but it is not exported.
|
|
10
|
+
node_modules/testeranto-react/src/react-dom/jsx/dynamic.ts(29,5): error TS2719: Type '(subject: HTMLElement, initializer: (c?: any) => unknown, testResource: import("/Users/adam/Code/testeranto/src/lib/index").ITTestResourceConfiguration, initialValues: any, pm: import("/Users/adam/Code/testeranto/src/lib/types").IPM) => Promise<...>' is not assignable to type '(subject: HTMLElement, initializer: (c?: any) => unknown, testResource: import("/Users/adam/Code/testeranto/src/lib/index").ITTestResourceConfiguration, initialValues: any, pm: import("/Users/adam/Code/testeranto/src/lib/types").IPM) => Promise<...>'. Two different types with this name exist, but they are unrelated.
|
|
11
|
+
Type 'Promise<unknown>' is not assignable to type 'Promise<HTMLElement>'.
|
|
12
|
+
Type 'unknown' is not assignable to type 'HTMLElement'.
|
|
13
|
+
node_modules/testeranto-react/src/react-dom/jsx/dynamic.ts(42,17): error TS2551: Property 'container' does not exist on type 'HTMLElement'. Did you mean 'contains'?
|
|
14
|
+
node_modules/testeranto-react/src/react-dom/jsx/dynamic.ts(43,15): error TS2339: Property 'domRoot' does not exist on type 'HTMLElement'.
|
|
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
|
+
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/App.tsx(49,18): error TS2339: Property 'render' does not exist on type 'typeof import("/Users/adam/Code/testeranto/node_modules/@types/react-dom/client")'.
|
|
18
|
+
src/components/DesignEditorPage.tsx(97,19): error TS2339: Property 'showOpenFilePicker' does not exist on type 'Window & typeof globalThis'.
|
|
16
19
|
src/components/pure/AppFrame.test/implementation.tsx(19,19): error TS2322: Type '(children: React.ReactNode) => () => (selection: ISelection) => { children: React.ReactNode; htmlElement: HTMLElement; reactElement: React.ReactElement; domRoot: HTMLElement | null; container?: HTMLElement; testId?: string; }' is not assignable to type '(Ig_0: ReactNode) => (s: ISelection) => ISelection'.
|
|
17
20
|
Call signature return types '() => (selection: ISelection) => { children: ReactNode; htmlElement: HTMLElement; reactElement: ReactElement<any, string | JSXElementConstructor<any>>; domRoot: HTMLElement | null; container?: HTMLElement | undefined; testId?: string | undefined; }' and '(s: ISelection) => ISelection' are incompatible.
|
|
18
21
|
Type '(selection: ISelection) => { children: React.ReactNode; htmlElement: HTMLElement; reactElement: React.ReactElement; domRoot: HTMLElement | null; container?: HTMLElement; testId?: string; }' is not assignable to type 'ISelection'.
|
|
19
22
|
src/components/pure/AppFrame.test/index.tsx(19,3): error TS2345: Argument of type 'ITestImplementation<I, O>' is not assignable to parameter of type 'ITestImplementation<I, O, { whens: TestWhenImplementation<I, O>; }>'.
|
|
20
23
|
Type 'ITestImplementation<I, O>' is not assignable to type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, "whens">'.
|
|
21
24
|
The types returned by 'givens.Default(...)' are incompatible between these types.
|
|
22
|
-
Type '(s: import("/Users/adam/Code/testeranto/src/components/pure/AppFrame.test/types").ISelection) => import("/Users/adam/Code/testeranto/src/components/pure/AppFrame.test/types").ISelection' is not assignable to type '(s: import("/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic").ISelection) => import("/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic").ISelection'.
|
|
25
|
+
Type '(s: import("/Users/adam/Code/testeranto/src/components/pure/AppFrame.test/types").ISelection) => import("/Users/adam/Code/testeranto/src/components/pure/AppFrame.test/types").ISelection' is not assignable to type '(s: import("/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic").ISelection) => import("/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic").ISelection'.
|
|
23
26
|
Types of parameters 's' and 's' are incompatible.
|
|
24
|
-
Type 'import("/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic").ISelection' is not assignable to type 'import("/Users/adam/Code/testeranto/src/components/pure/AppFrame.test/types").ISelection'.
|
|
27
|
+
Type 'import("/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic").ISelection' is not assignable to type 'import("/Users/adam/Code/testeranto/src/components/pure/AppFrame.test/types").ISelection'.
|
|
25
28
|
Types of property 'domRoot' are incompatible.
|
|
26
29
|
Type 'Root' is missing the following properties from type 'HTMLElement': accessKey, accessKeyLabel, autocapitalize, autocorrect, and 314 more.
|
|
27
|
-
src/components/pure/FeaturesReporterView.test/implementation.tsx(18,13): error TS2322: Type '"test"' is not assignable to type '"
|
|
28
|
-
src/components/pure/FeaturesReporterView.test/implementation.tsx(23,17): error TS2322: Type '"given"' is not assignable to type '"
|
|
29
|
-
src/components/pure/FeaturesReporterView.test/implementation.tsx(28,21): error TS2322: Type '"then"' is not assignable to type '"
|
|
30
|
+
src/components/pure/FeaturesReporterView.test/implementation.tsx(18,13): error TS2322: Type '"test"' is not assignable to type '"project" | "file"'.
|
|
31
|
+
src/components/pure/FeaturesReporterView.test/implementation.tsx(23,17): error TS2322: Type '"given"' is not assignable to type '"project" | "file"'.
|
|
32
|
+
src/components/pure/FeaturesReporterView.test/implementation.tsx(28,21): error TS2322: Type '"then"' is not assignable to type '"project" | "file"'.
|
|
30
33
|
src/components/pure/FeaturesReporterView.test/implementation.tsx(60,9): error TS2322: Type '({ htmlElement }: IInput & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IInput & { container?: HTMLElement | undefined; }) => IInput & { container?: HTMLElement | undefined; }'.
|
|
31
34
|
Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IInput & { container?: HTMLElement | undefined; }'.
|
|
32
35
|
Property 'treeData' is missing in type 'Promise<{ htmlElement: any; }>' but required in type 'IInput'.
|
|
@@ -50,143 +53,114 @@ src/components/pure/FeaturesReporterView.test/implementation.tsx(92,18): error T
|
|
|
50
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; }'.
|
|
51
54
|
Type '({ htmlElement }: { htmlElement: any; }, pm: any) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IInput & { container?: HTMLElement | undefined; }) => IInput & { container?: HTMLElement | undefined; }'.
|
|
52
55
|
Target signature provides too few arguments. Expected 2 or more, but got 1.
|
|
53
|
-
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-react/src/react-dom/component/dynamic").I, import("/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types").O>'.
|
|
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>'.
|
|
54
57
|
Types of parameters 'Suite' and 'Suite' are incompatible.
|
|
55
|
-
Type 'import("/Users/adam/Code/testeranto/src/Types").SuiteSpecification<import("/Users/adam/Code/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>'.
|
|
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>'.
|
|
56
59
|
Types of property 'Default' are incompatible.
|
|
57
|
-
Type '(name: string, givens: import("/Users/adam/Code/testeranto/src/lib/
|
|
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<...>'.
|
|
58
61
|
Types of parameters 'givens' and 'givens' are incompatible.
|
|
59
|
-
Type 'import("/Users/adam/Code/testeranto/src/lib/
|
|
60
|
-
Type 'import("/Users/adam/Code/testeranto/src/components/pure/FeaturesReporterView.test/types").I' is not assignable to type 'import("/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic").I'.
|
|
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'.
|
|
61
64
|
Types of property 'iinput' are incompatible.
|
|
62
65
|
Property 'prototype' is missing in type 'IInput' but required in type 'typeof Component'.
|
|
63
|
-
src/components/pure/ModalContent.test/implementation.tsx(
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
src/components/pure/ModalContent.test/implementation.tsx(29,9): error TS2322: Type '({ htmlElement }: IModalContentProps & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IModalContentProps & { container?: HTMLElement | undefined; }) => IModalContentProps & { container?: HTMLElement | undefined; }'.
|
|
68
|
-
Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IModalContentProps & { container?: HTMLElement | undefined; }'.
|
|
69
|
-
Type 'Promise<{ htmlElement: any; }>' is missing the following properties from type 'IModalContentProps': theme, handleThemeChange
|
|
70
|
-
src/components/pure/ModalContent.test/implementation.tsx(29,18): error TS2339: Property 'htmlElement' does not exist on type 'IModalContentProps & { container?: HTMLElement | undefined; }'.
|
|
71
|
-
src/components/pure/ModalContent.test/implementation.tsx(35,5): error TS2322: Type '(name: string) => ({ htmlElement }: { htmlElement: any; }, pm: any) => Promise<{ htmlElement: any; }>' is not assignable to type '(...args: any[]) => (state: IModalContentProps & { container?: HTMLElement | undefined; }) => IModalContentProps & { container?: HTMLElement | undefined; }'.
|
|
72
|
-
Type '({ htmlElement }: { htmlElement: any; }, pm: any) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IModalContentProps & { container?: HTMLElement | undefined; }) => IModalContentProps & { container?: HTMLElement | undefined; }'.
|
|
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; }'.
|
|
73
70
|
Target signature provides too few arguments. Expected 2 or more, but got 1.
|
|
74
|
-
src/components/pure/ModalContent.test/index.tsx(
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
src/components/pure/
|
|
85
|
-
src/components/pure/ProjectPageView.test/implementation.tsx(
|
|
86
|
-
src/components/pure/ProjectPageView.test/implementation.tsx(
|
|
87
|
-
src/components/pure/ProjectPageView.test/implementation.tsx(
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
src/components/pure/ProjectPageView.test/implementation.tsx(
|
|
91
|
-
|
|
92
|
-
Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
93
|
-
Type 'Promise<{ htmlElement: any; }>' is missing the following properties from type 'IProjectPageViewProps': summary, nodeLogs, webLogs, pureLogs, and 6 more.
|
|
94
|
-
src/components/pure/ProjectPageView.test/implementation.tsx(122,18): error TS2339: Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
95
|
-
src/components/pure/ProjectPageView.test/implementation.tsx(130,9): error TS2322: Type '({ htmlElement }: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
96
|
-
Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
97
|
-
Type 'Promise<{ htmlElement: any; }>' is missing the following properties from type 'IProjectPageViewProps': summary, nodeLogs, webLogs, pureLogs, and 6 more.
|
|
98
|
-
src/components/pure/ProjectPageView.test/implementation.tsx(130,18): error TS2339: Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
99
|
-
src/components/pure/ProjectPageView.test/implementation.tsx(138,9): error TS2322: Type '({ htmlElement }: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
100
|
-
Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
101
|
-
Type 'Promise<{ htmlElement: any; }>' is missing the following properties from type 'IProjectPageViewProps': summary, nodeLogs, webLogs, pureLogs, and 6 more.
|
|
102
|
-
src/components/pure/ProjectPageView.test/implementation.tsx(138,18): error TS2339: Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
103
|
-
src/components/pure/ProjectPageView.test/implementation.tsx(146,9): error TS2322: Type '({ htmlElement }: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
104
|
-
Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
105
|
-
Type 'Promise<{ htmlElement: any; }>' is missing the following properties from type 'IProjectPageViewProps': summary, nodeLogs, webLogs, pureLogs, and 6 more.
|
|
106
|
-
src/components/pure/ProjectPageView.test/implementation.tsx(146,18): error TS2339: Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
107
|
-
src/components/pure/ProjectPageView.test/implementation.tsx(149,24): error TS18046: 'el' is of type 'unknown'.
|
|
108
|
-
src/components/pure/ProjectPageView.test/implementation.tsx(156,9): error TS2322: Type '({ htmlElement }: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
109
|
-
Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
110
|
-
Type 'Promise<{ htmlElement: any; }>' is missing the following properties from type 'IProjectPageViewProps': summary, nodeLogs, webLogs, pureLogs, and 6 more.
|
|
111
|
-
src/components/pure/ProjectPageView.test/implementation.tsx(156,18): error TS2339: Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
112
|
-
src/components/pure/ProjectPageView.test/implementation.tsx(159,24): error TS18046: 'el' is of type 'unknown'.
|
|
113
|
-
src/components/pure/ProjectPageView.test/implementation.tsx(165,9): error TS2322: Type '({ htmlElement }: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
114
|
-
Type 'Promise<{ htmlElement: any; }>' is not assignable to type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
115
|
-
Type 'Promise<{ htmlElement: any; }>' is missing the following properties from type 'IProjectPageViewProps': summary, nodeLogs, webLogs, pureLogs, and 6 more.
|
|
116
|
-
src/components/pure/ProjectPageView.test/implementation.tsx(165,18): error TS2339: Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
117
|
-
src/components/pure/ProjectPageView.test/implementation.tsx(175,5): error TS2322: Type '(name: string) => ({ htmlElement }: { htmlElement: any; }, pm: any) => Promise<{ htmlElement: any; }>' is not assignable to type '(...args: any[]) => (state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { ...; }'.
|
|
118
|
-
Type '({ htmlElement }: { htmlElement: any; }, pm: any) => Promise<{ htmlElement: any; }>' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
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 & { ...; }'.
|
|
76
|
+
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/ProjectPageView.test/implementation.tsx(10,3): error TS2741: Property 'Navigation' is missing in type '{ Default: () => { summary: { "test-suite-1": { testsExist: boolean; runTimeErrors: number; typeErrors: number; staticErrors: number; }; "test-suite-2": { testsExist: boolean; runTimeErrors: number; typeErrors: number; staticErrors: number; }; }; ... 14 more ...; domRoot: any; }; WithError: () => { ...; }; }' but required in type '{ Default: (...args: any[]) => IProjectPageViewProps; WithError: (...args: any[]) => IProjectPageViewProps; Navigation: (...args: any[]) => IProjectPageViewProps; }'.
|
|
78
|
+
src/components/pure/ProjectPageView.test/implementation.tsx(138,37): error TS2339: Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
79
|
+
src/components/pure/ProjectPageView.test/implementation.tsx(147,37): error TS2339: Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
80
|
+
src/components/pure/ProjectPageView.test/implementation.tsx(156,37): error TS2339: Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
81
|
+
src/components/pure/ProjectPageView.test/implementation.tsx(165,37): error TS2339: Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
82
|
+
src/components/pure/ProjectPageView.test/implementation.tsx(174,37): error TS2339: Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
83
|
+
src/components/pure/ProjectPageView.test/implementation.tsx(177,24): error TS18046: 'el' is of type 'unknown'.
|
|
84
|
+
src/components/pure/ProjectPageView.test/implementation.tsx(185,37): error TS2339: Property 'htmlElement' does not exist on type 'IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
85
|
+
src/components/pure/ProjectPageView.test/implementation.tsx(188,24): error TS18046: 'el' is of type 'unknown'.
|
|
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 & { ...; }'.
|
|
88
|
+
Type '(state: any, pm: any) => Promise<any>' is not assignable to type '(state: IProjectPageViewProps & { container?: HTMLElement | undefined; }) => IProjectPageViewProps & { container?: HTMLElement | undefined; }'.
|
|
119
89
|
Target signature provides too few arguments. Expected 2 or more, but got 1.
|
|
120
|
-
src/components/pure/ProjectPageView.test/index.tsx(
|
|
121
|
-
src/components/pure/ProjectPageView.test/index.tsx(18,3): error TS2345: Argument of type 'import("/Users/adam/Code/testeranto/src/CoreTypes").ITestSpecification<import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types").I, import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types").O>' is not assignable to parameter of type 'import("/Users/adam/Code/testeranto/src/CoreTypes").ITestSpecification<import("/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic").I, import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types").O>'.
|
|
90
|
+
src/components/pure/ProjectPageView.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/ProjectPageView.test/types").I, import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types").O>' is not assignable to parameter of type 'import("/Users/adam/Code/testeranto/src/CoreTypes").ITestSpecification<import("/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic").I, import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types").O>'.
|
|
122
91
|
Types of parameters 'Suite' and 'Suite' are incompatible.
|
|
123
|
-
Type 'import("/Users/adam/Code/testeranto/src/Types").SuiteSpecification<import("/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic").I, import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types").O>' is not assignable to type 'import("/Users/adam/Code/testeranto/src/Types").SuiteSpecification<import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types").I, import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types").O>'.
|
|
92
|
+
Type 'import("/Users/adam/Code/testeranto/src/Types").SuiteSpecification<import("/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic").I, import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types").O>' is not assignable to type 'import("/Users/adam/Code/testeranto/src/Types").SuiteSpecification<import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types").I, import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types").O>'.
|
|
124
93
|
Types of property 'Default' are incompatible.
|
|
125
|
-
Type '(name: string, givens: import("/Users/adam/Code/testeranto/src/lib/
|
|
94
|
+
Type '(name: string, givens: import("/Users/adam/Code/testeranto/src/lib/BaseGiven").IGivens<import("/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic").I>) => import("/Users/adam/Code/testeranto/src/lib/BaseSuite").BaseSuite<...>' is not assignable to type '(name: string, givens: import("/Users/adam/Code/testeranto/src/lib/BaseGiven").IGivens<import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types").I>) => import("/Users/adam/Code/testeranto/src/lib/BaseSuite").BaseSuite<...>'.
|
|
126
95
|
Types of parameters 'givens' and 'givens' are incompatible.
|
|
127
|
-
Type 'import("/Users/adam/Code/testeranto/src/lib/
|
|
128
|
-
Type 'import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types").I' is not assignable to type 'import("/Users/adam/Code/testeranto-react/src/react-dom/component/dynamic").I'.
|
|
96
|
+
Type 'import("/Users/adam/Code/testeranto/src/lib/BaseGiven").IGivens<import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types").I>' is not assignable to type 'import("/Users/adam/Code/testeranto/src/lib/BaseGiven").IGivens<import("/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic").I>'.
|
|
97
|
+
Type 'import("/Users/adam/Code/testeranto/src/components/pure/ProjectPageView.test/types").I' is not assignable to type 'import("/Users/adam/Code/testeranto/node_modules/testeranto-react/src/react-dom/component/dynamic").I'.
|
|
129
98
|
Types of property 'iinput' are incompatible.
|
|
130
99
|
Property 'prototype' is missing in type 'IProjectPageViewProps' but required in type 'typeof Component'.
|
|
131
|
-
src/components/pure/TestPageView.test/implementation.ts(
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
src/components/pure/TestPageView.test/implementation.ts(
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
src/components/pure/TestPageView.test/implementation.ts(
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
src/components/pure/TestPageView.test/implementation.ts(
|
|
153
|
-
|
|
154
|
-
Type '
|
|
155
|
-
Type '
|
|
156
|
-
src/components/pure/TestPageView.test/implementation.ts(
|
|
157
|
-
src/components/pure/TestPageView.test/implementation.ts(
|
|
158
|
-
|
|
159
|
-
Type 'Promise<ISelection
|
|
160
|
-
|
|
161
|
-
src/components/pure/TestPageView.test/implementation.ts(
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
src/components/pure/TestPageView.test/implementation.ts(
|
|
165
|
-
src/components/pure/TestPageView.test/implementation.ts(
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
src/components/pure/TestPageView.test/implementation.ts(
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
src/components/pure/TestPageView.test/implementation.ts(
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
src/components/pure/TestPageView.test/implementation.ts(
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
src/components/pure/TestPageView.test/implementation.ts(
|
|
188
|
-
|
|
189
|
-
|
|
100
|
+
src/components/pure/TestPageView.test/implementation.ts(7,39): error TS2459: Module '"../../../lib"' declares 'IPM' locally, but it is not exported.
|
|
101
|
+
src/components/pure/TestPageView.test/implementation.ts(29,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
|
+
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/components/pure/TestPageView.test/implementation.ts(34,48): error TS2769: No overload matches this call.
|
|
104
|
+
The last overload gave the following error.
|
|
105
|
+
Argument of type 'IProjectPageViewProps' is not assignable to parameter of type 'string | FunctionComponent<{}> | ComponentClass<{}, any>'.
|
|
106
|
+
src/components/pure/TestPageView.test/implementation.ts(45,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
|
+
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/components/pure/TestPageView.test/implementation.ts(49,48): error TS2769: No overload matches this call.
|
|
109
|
+
The last overload gave the following error.
|
|
110
|
+
Argument of type 'IProjectPageViewProps' is not assignable to parameter of type 'string | FunctionComponent<{}> | ComponentClass<{}, any>'.
|
|
111
|
+
src/components/pure/TestPageView.test/implementation.ts(65,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'.
|
|
112
|
+
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'.
|
|
113
|
+
src/components/pure/TestPageView.test/implementation.ts(69,48): error TS2769: No overload matches this call.
|
|
114
|
+
The last overload gave the following error.
|
|
115
|
+
Argument of type 'IProjectPageViewProps' is not assignable to parameter of type 'string | FunctionComponent<{}> | ComponentClass<{}, any>'.
|
|
116
|
+
src/components/pure/TestPageView.test/implementation.ts(87,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
|
+
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
|
+
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
|
+
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
|
+
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/components/pure/TestPageView.test/implementation.ts(98,29): 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
|
+
Type 'Promise<(sel: ISelection) => ISelection>' is not assignable to type 'Promise<(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>>'.
|
|
123
|
+
Type '(sel: ISelection) => ISelection' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
124
|
+
Type 'ISelection' is missing the following properties from type 'Promise<(sel: ISelection) => ISelection>': then, catch, finally, [Symbol.toStringTag]
|
|
125
|
+
src/components/pure/TestPageView.test/implementation.ts(100,32): error TS2339: Property 'container' does not exist on type 'ISelection'.
|
|
126
|
+
src/components/pure/TestPageView.test/implementation.ts(109,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
|
+
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
|
+
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
129
|
+
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' provides no match for the signature '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM): Promise<(sel: ISelection) => ISelection>'.
|
|
130
|
+
src/components/pure/TestPageView.test/implementation.ts(113,26): 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
|
+
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
132
|
+
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' provides no match for the signature '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM): Promise<(sel: ISelection) => ISelection>'.
|
|
133
|
+
src/components/pure/TestPageView.test/implementation.ts(114,26): error TS2339: Property 'container' does not exist on type 'ISelection'.
|
|
134
|
+
src/components/pure/TestPageView.test/implementation.ts(118,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
|
+
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
|
+
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
137
|
+
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' provides no match for the signature '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM): Promise<(sel: ISelection) => ISelection>'.
|
|
138
|
+
src/components/pure/TestPageView.test/implementation.ts(120,24): error TS2339: Property 'activeTab' does not exist on type 'ISelection'.
|
|
139
|
+
src/components/pure/TestPageView.test/implementation.ts(123,29): 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
|
+
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
141
|
+
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' provides no match for the signature '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM): Promise<(sel: ISelection) => ISelection>'.
|
|
142
|
+
src/components/pure/TestPageView.test/implementation.ts(125,26): error TS2339: Property 'container' does not exist on type 'ISelection'.
|
|
143
|
+
src/components/pure/TestPageView.test/implementation.ts(129,29): 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
|
+
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
145
|
+
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' provides no match for the signature '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM): Promise<(sel: ISelection) => ISelection>'.
|
|
146
|
+
src/components/pure/TestPageView.test/implementation.ts(131,15): error TS2339: Property 'testsExist' does not exist on type 'ISelection'.
|
|
147
|
+
src/components/pure/TestPageView.test/implementation.ts(132,33): error TS2339: Property 'container' does not exist on type 'ISelection'.
|
|
148
|
+
src/components/pure/TestPageView.test/implementation.ts(137,22): 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
|
+
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
150
|
+
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' provides no match for the signature '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM): Promise<(sel: ISelection) => ISelection>'.
|
|
151
|
+
src/components/pure/TestPageView.test/implementation.ts(139,24): error TS2339: Property 'container' does not exist on type 'ISelection'.
|
|
152
|
+
src/components/pure/TestPageView.test/implementation.ts(143,28): 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
|
+
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
154
|
+
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' provides no match for the signature '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM): Promise<(sel: ISelection) => ISelection>'.
|
|
155
|
+
src/components/pure/TestPageView.test/implementation.ts(145,30): error TS2339: Property 'container' does not exist on type 'ISelection'.
|
|
156
|
+
src/components/pure/TestPageView.test/implementation.ts(149,28): 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
|
+
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
158
|
+
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' provides no match for the signature '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM): Promise<(sel: ISelection) => ISelection>'.
|
|
159
|
+
src/components/pure/TestPageView.test/implementation.ts(151,30): error TS2339: Property 'container' does not exist on type 'ISelection'.
|
|
160
|
+
src/components/pure/TestPageView.test/implementation.ts(155,37): 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
|
+
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' is not assignable to type '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM) => Promise<(sel: ISelection) => ISelection>'.
|
|
162
|
+
Type 'Promise<(sel: ISelection) => Promise<ISelection>>' provides no match for the signature '(sel: ISelection, tr: ITTestResourceConfiguration, utils: IPM): Promise<(sel: ISelection) => ISelection>'.
|
|
163
|
+
src/components/pure/TestPageView.test/implementation.ts(157,31): error TS2339: Property 'container' does not exist on type 'ISelection'.
|
|
190
164
|
src/components/pure/TestPageView.test/index.tsx(18,3): error TS2345: Argument of type 'ITestSpecification<{ iinput: any; isubject: any; istore: ISelection; iselection: ISelection; given: any; when: any; then: any; }, O>' is not assignable to parameter of type 'ITestSpecification<I, O>'.
|
|
191
165
|
Types of parameters 'Suite' and 'Suite' are incompatible.
|
|
192
166
|
Type 'SuiteSpecification<I, O>' is not assignable to type 'SuiteSpecification<{ iinput: any; isubject: any; istore: ISelection; iselection: ISelection; given: any; when: any; then: any; }, O>'.
|
|
@@ -197,230 +171,95 @@ src/components/pure/TestPageView.test/index.tsx(18,3): error TS2345: Argument of
|
|
|
197
171
|
Type '{ iinput: any; isubject: any; istore: ISelection; iselection: ISelection; given: any; when: any; then: any; }' is not assignable to type 'I'.
|
|
198
172
|
Types of property 'istore' are incompatible.
|
|
199
173
|
Type 'ISelection' is missing the following properties from type 'HTMLElement': accessKey, accessKeyLabel, autocapitalize, autocorrect, and 314 more.
|
|
200
|
-
src/components/pure/TestPageView.tsx(
|
|
174
|
+
src/components/pure/TestPageView.tsx(64,13): error TS18046: 'node' is of type 'unknown'.
|
|
175
|
+
src/components/pure/TestPageView.tsx(72,45): error TS18046: 'node' is of type 'unknown'.
|
|
176
|
+
src/components/pure/TestPageView.tsx(1011,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'.
|
|
201
177
|
Property 'className' does not exist on type 'IntrinsicAttributes & TestStatusBadgeProps'.
|
|
202
|
-
src/components/stateful/
|
|
178
|
+
src/components/stateful/FileTree.tsx(2,10): error TS2459: Module '"./TextEditorPage"' declares 'FileType' locally, but it is not exported.
|
|
179
|
+
src/components/stateful/FileTree.tsx(53,12): error TS18046: 'dirFiles' is of type 'unknown'.
|
|
180
|
+
src/components/stateful/ProjectsPage.tsx(95,7): error TS2322: Type 'Record<string, ISummary>' is not assignable to type 'TestSummary'.
|
|
203
181
|
'string' index signatures are incompatible.
|
|
204
182
|
Type 'ISummary' has no properties in common with type '{ testsExist?: boolean | undefined; runTimeErrors?: number | undefined; typeErrors?: number | undefined; staticErrors?: number | undefined; }'.
|
|
205
|
-
src/components/stateful/ProjectsPage.tsx(
|
|
183
|
+
src/components/stateful/ProjectsPage.tsx(96,7): error TS2322: Type 'Record<string, object>' is not assignable to type 'ProjectConfig'.
|
|
206
184
|
'string' index signatures are incompatible.
|
|
207
185
|
Property 'tests' is missing in type '{}' but required in type '{ tests: [string, string][]; }'.
|
|
208
|
-
src/components/stateful/
|
|
209
|
-
src/components/stateful/TestPage.tsx(
|
|
186
|
+
src/components/stateful/SingleProcessPage.tsx(4,35): error TS2306: File '/Users/adam/Code/testeranto/src/components/pure/SingleProcessView.tsx' is not a module.
|
|
187
|
+
src/components/stateful/TestPage.tsx(76,24): error TS18046: 'output' is of type 'unknown'.
|
|
188
|
+
src/components/stateful/TestPage.tsx(83,27): error TS18046: 'output' is of type 'unknown'.
|
|
189
|
+
src/components/stateful/TestPage.tsx(153,9): error TS2322: Type '{}' is not assignable to type 'string'.
|
|
190
|
+
src/components/stateful/TestPage.tsx(195,18): error TS2345: Argument of type 'string' is not assignable to parameter of type 'SetStateAction<null>'.
|
|
191
|
+
src/components/stateful/TestPage.tsx(211,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'.
|
|
210
192
|
Property 'route' does not exist on type 'IntrinsicAttributes & TestPageViewProps'.
|
|
193
|
+
src/components/stateful/TextEditorPage.tsx(110,11): error TS2322: Type 'string | undefined' is not assignable to type 'string | null'.
|
|
194
|
+
Type 'undefined' is not assignable to type 'string | null'.
|
|
211
195
|
src/components/SunriseAnimation.test/interface.ts(2,10): error TS2305: Module '"../../CoreTypes"' has no exported member 'ITestInterface'.
|
|
212
196
|
src/components/SunriseAnimation.test/interface.ts(5,34): error TS2307: Cannot find module './SunriseAnimation' or its corresponding type declarations.
|
|
213
197
|
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.
|
|
214
|
-
src/lib/abstractBase.test/adapter.ts(
|
|
215
|
-
Type '() => { testStore: { value: string; }; }' is not assignable to type '{ testStore: { value: string; }; error?: Error | undefined; }'.
|
|
216
|
-
|
|
217
|
-
src/lib/abstractBase.test/
|
|
198
|
+
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.
|
|
199
|
+
Type 'Promise<() => { testStore: { value: string; }; }>' is not assignable to type 'Promise<{ testStore: { value: string; }; error?: Error | undefined; }>'.
|
|
200
|
+
Type '() => { testStore: { value: string; }; }' is not assignable to type '{ testStore: { value: string; }; error?: Error | undefined; }'.
|
|
201
|
+
src/lib/abstractBase.test/adapter.ts(16,3): error TS2719: Type '(store: { testStore: { value: string; }; error?: Error | undefined; }, whenCB: (store: any) => (store: any) => any, testResource: import("/Users/adam/Code/testeranto/src/lib/index").ITTestResourceConfiguration, pm: import("/Users/adam/Code/testeranto/src/lib/types").IPM) => Promise<...>' is not assignable to type '(store: { testStore: { value: string; }; error?: Error | undefined; }, whenCB: (store: any) => (store: any) => any, testResource: import("/Users/adam/Code/testeranto/src/lib/index").ITTestResourceConfiguration, pm: import("/Users/adam/Code/testeranto/src/lib/types").IPM) => Promise<...>'. Two different types with this name exist, but they are unrelated.
|
|
202
|
+
Type 'Promise<(store: any) => any>' is not assignable to type 'Promise<{ testStore: { value: string; }; error?: Error | undefined; }>'.
|
|
203
|
+
Type '(store: any) => any' is not assignable to type '{ testStore: { value: string; }; error?: Error | undefined; }'.
|
|
204
|
+
src/lib/abstractBase.test/adapter.ts(19,3): error TS2719: Type '(store: { testStore: { value: string; }; error?: Error | undefined; }, thenCB: (store: any) => (store: any) => any, testResource: import("/Users/adam/Code/testeranto/src/lib/index").ITTestResourceConfiguration, pm: import("/Users/adam/Code/testeranto/src/lib/types").IPM) => Promise<...>' is not assignable to type '(store: { testStore: { value: string; }; error?: Error | undefined; }, thenCB: (store: any) => (store: any) => any, testResource: import("/Users/adam/Code/testeranto/src/lib/index").ITTestResourceConfiguration, pm: import("/Users/adam/Code/testeranto/src/lib/types").IPM) => Promise<...>'. Two different types with this name exist, but they are unrelated.
|
|
205
|
+
Type 'Promise<(store: any) => any>' is not assignable to type 'Promise<{ testSelection: { selected: boolean; }; }>'.
|
|
206
|
+
Type '(store: any) => any' is not assignable to type '{ testSelection: { selected: boolean; }; }'.
|
|
207
|
+
src/lib/abstractBase.test/implementation.ts(11,26): error TS2322: Type '{ testStore: { value: string; }; testSelection: { selected: boolean; }; }' is not assignable to type '() => { testStore: { value: string; }; }'.
|
|
218
208
|
Type '{ testStore: { value: string; }; testSelection: { selected: boolean; }; }' provides no match for the signature '(): { testStore: { value: string; }; }'.
|
|
219
|
-
src/lib/abstractBase.test/implementation.ts(15,
|
|
209
|
+
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; }; }'.
|
|
220
210
|
Type '{ testStore: { value: string; }; testSelection: { selected: boolean; }; }' provides no match for the signature '(): { testStore: { value: string; }; }'.
|
|
221
|
-
src/lib/abstractBase.test/
|
|
222
|
-
Call signature return types '(store: { testSelection: { selected: boolean; }; }) => { testStore: { value: string; }; testSelection: { selected: boolean; }; }' and '(zel: { testSelection: { selected: boolean; }; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: any) => any>' are incompatible.
|
|
223
|
-
Type '{ testStore: { value: string; }; testSelection: { selected: boolean; }; }' is missing the following properties from type 'Promise<(store: any) => any>': then, catch, finally, [Symbol.toStringTag]
|
|
224
|
-
src/lib/abstractBase.test/implementation.ts(32,5): error TS2322: Type '(expected: string) => (store: { testSelection: { selected: boolean; }; }) => { testSelection: { selected: boolean; }; }' is not assignable to type '(...It: any) => (ssel: { testSelection: { selected: boolean; }; }, utils: PM) => (store: any) => any'.
|
|
225
|
-
Call signature return types '(store: { testSelection: { selected: boolean; }; }) => { testSelection: { selected: boolean; }; }' and '(ssel: { testSelection: { selected: boolean; }; }, utils: PM) => (store: any) => any' are incompatible.
|
|
226
|
-
Type '{ testSelection: { selected: boolean; }; }' is not assignable to type '(store: any) => any'.
|
|
227
|
-
Type '{ testSelection: { selected: boolean; }; }' provides no match for the signature '(store: any): any'.
|
|
228
|
-
src/lib/abstractBase.test/implementation.ts(33,17): error TS2339: Property 'testStore' does not exist on type '{ testSelection: { selected: boolean; }; }'.
|
|
229
|
-
src/lib/abstractBase.test/implementation.ts(34,60): error TS2339: Property 'testStore' does not exist on type '{ testSelection: { selected: boolean; }; }'.
|
|
230
|
-
src/lib/abstractBase.test/implementation.ts(38,5): error TS2322: Type '(expected: string) => (store: { testSelection: { selected: boolean; }; }) => { testSelection: { selected: boolean; }; }' is not assignable to type '(...It: any) => (ssel: { testSelection: { selected: boolean; }; }, utils: PM) => (store: any) => any'.
|
|
231
|
-
Call signature return types '(store: { testSelection: { selected: boolean; }; }) => { testSelection: { selected: boolean; }; }' and '(ssel: { testSelection: { selected: boolean; }; }, utils: PM) => (store: any) => any' are incompatible.
|
|
232
|
-
Type '{ testSelection: { selected: boolean; }; }' is not assignable to type '(store: any) => any'.
|
|
233
|
-
Type '{ testSelection: { selected: boolean; }; }' provides no match for the signature '(store: any): any'.
|
|
234
|
-
src/lib/abstractBase.test/implementation.ts(39,18): error TS2339: Property 'error' does not exist on type '{ testSelection: { selected: boolean; }; }'.
|
|
235
|
-
src/lib/abstractBase.test/implementation.ts(39,34): error TS2339: Property 'error' does not exist on type '{ testSelection: { selected: boolean; }; }'.
|
|
236
|
-
src/lib/abstractBase.test/MockGiven.ts(24,12): error TS2349: This expression is not callable.
|
|
211
|
+
src/lib/abstractBase.test/MockGiven.ts(30,20): error TS2349: This expression is not callable.
|
|
237
212
|
Type 'unknown' has no call signatures.
|
|
238
213
|
src/lib/abstractBase.test/types.ts(13,17): error TS2707: Generic type 'Ibdd_out' requires between 0 and 4 type arguments.
|
|
239
|
-
src/lib/
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
src/lib/
|
|
246
|
-
src/lib/
|
|
247
|
-
src/lib/
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
src/lib/
|
|
251
|
-
|
|
252
|
-
src/lib/baseBuilder.test/baseBuilder.test.implementation.ts(37,11): error TS2322: Type 'never[]' is not assignable to type 'number'.
|
|
253
|
-
src/lib/baseBuilder.test/baseBuilder.test.implementation.ts(41,5): error TS2322: Type '(requirements: ITTestResourceRequest) => MockBaseBuilder<Ibdd_in_any, Ibdd_out_any, {}, {}, {}, {}>' is not assignable to type '() => () => BaseBuilder<any, any, any, any, any, any>'.
|
|
254
|
-
Target signature provides too few arguments. Expected 1 or more, but got 0.
|
|
255
|
-
src/lib/baseBuilder.test/baseBuilder.test.implementation.ts(60,32): error TS2322: Type '(builder: BaseBuilder<any, any, any, any, any, any>, utils: PM) => BaseBuilder<any, any, any, any, any, any>' is not assignable to type '(ssel: BaseBuilder<any, any, any, any, any, any>, utils: PM) => (store: any) => any'.
|
|
256
|
-
Type 'BaseBuilder<any, any, any, any, any, any>' is not assignable to type '(store: any) => any'.
|
|
257
|
-
Type 'BaseBuilder<any, any, any, any, any, any>' provides no match for the signature '(store: any): any'.
|
|
258
|
-
src/lib/baseBuilder.test/baseBuilder.test.implementation.ts(66,100): error TS2339: Property 'constructor' does not exist on type 'never'.
|
|
259
|
-
src/lib/baseBuilder.test/baseBuilder.test.implementation.ts(87,46): error TS2322: Type '(builder: TestSubject) => TestSubject' is not assignable to type '(ssel: BaseBuilder<any, any, any, any, any, any>, utils: PM) => (store: any) => any'.
|
|
260
|
-
Type 'TestSubject' is not assignable to type '(store: any) => any'.
|
|
261
|
-
Type 'MockBaseBuilder<any, any, any, any, any, any>' provides no match for the signature '(store: any): any'.
|
|
262
|
-
src/lib/baseBuilder.test/baseBuilder.test.implementation.ts(93,30): error TS2322: Type '(builder: TestSubject) => TestSubject' is not assignable to type '(ssel: BaseBuilder<any, any, any, any, any, any>, utils: PM) => (store: any) => any'.
|
|
263
|
-
Type 'TestSubject' is not assignable to type '(store: any) => any'.
|
|
264
|
-
Type 'MockBaseBuilder<any, any, any, any, any, any>' provides no match for the signature '(store: any): any'.
|
|
265
|
-
src/lib/baseBuilder.test/baseBuilder.test.implementation.ts(99,34): error TS2322: Type '(builder: TestSubject, utils: PM) => TestSubject' is not assignable to type '(ssel: BaseBuilder<any, any, any, any, any, any>, utils: PM) => (store: any) => any'.
|
|
266
|
-
Type 'TestSubject' is not assignable to type '(store: any) => any'.
|
|
267
|
-
Type 'MockBaseBuilder<any, any, any, any, any, any>' provides no match for the signature '(store: any): any'.
|
|
268
|
-
src/lib/basebuilder.ts(76,49): error TS2366: Function lacks ending return statement and return type does not include 'undefined'.
|
|
269
|
-
src/lib/basebuilder.ts(82,17): error TS2349: This expression is not callable.
|
|
270
|
-
Not all constituents of type 'void | ((fPath: string, value: string | Buffer<ArrayBufferLike> | PassThrough) => void)' are callable.
|
|
271
|
-
Type 'void' has no call signatures.
|
|
272
|
-
src/lib/BaseSuite.test/mock.ts(36,9): error TS2416: Property 'andWhen' in type 'MockWhen' is not assignable to the same property in base type 'BaseWhen<I>'.
|
|
273
|
-
Type '(store: TestStore, whenCB: (store: TestStore) => Promise<TestStore>, testResource: any, pm: IPM) => Promise<TestStore>' is not assignable to type '(store: TestStore, whenCB: (x: TestSelection) => (store: TestStore) => Promise<TestSelection>, testResource: any, pm: IPM) => Promise<...>'.
|
|
274
|
-
Types of parameters 'whenCB' and 'whenCB' are incompatible.
|
|
275
|
-
Types of parameters 'x' and 'store' are incompatible.
|
|
276
|
-
Type 'TestStore' is not assignable to type 'TestSelection'.
|
|
277
|
-
Types of property 'testSelection' are incompatible.
|
|
278
|
-
Type 'boolean | undefined' is not assignable to type 'boolean'.
|
|
279
|
-
Type 'undefined' is not assignable to type 'boolean'.
|
|
280
|
-
src/lib/BaseSuite.test/mock.ts(52,3): error TS2416: Property 'addArtifact' in type 'MockWhen' is not assignable to the same property in base type 'BaseWhen<I>'.
|
|
281
|
-
Type '(name: string, content: string) => this' is not assignable to type '(path: string) => void'.
|
|
282
|
-
Target signature provides too few arguments. Expected 2 or more, but got 1.
|
|
283
|
-
src/lib/BaseSuite.test/mock.ts(59,9): error TS2416: Property 'butThen' in type 'MockThen' is not assignable to the same property in base type 'BaseThen<I>'.
|
|
284
|
-
Types of parameters 'thenCB' and 'thenCB' are incompatible.
|
|
285
|
-
Type 'Promise<BaseSuite<any, any>>' is not assignable to type 'Promise<TestSelection>'.
|
|
286
|
-
Property 'testSelection' is missing in type 'BaseSuite<any, any>' but required in type 'TestSelection'.
|
|
287
|
-
src/lib/BaseSuite.test/mock.ts(67,7): error TS2353: Object literal may only specify known properties, and 'name' does not exist in type 'TestSelection'.
|
|
288
|
-
src/lib/BaseSuite.test/mock.ts(101,10): error TS2322: Type 'MockWhen' is not assignable to type 'BaseWhen<I>'.
|
|
289
|
-
Types of property 'addArtifact' are incompatible.
|
|
290
|
-
Type '(name: string, content: string) => MockWhen' is not assignable to type '(path: string) => void'.
|
|
291
|
-
Target signature provides too few arguments. Expected 2 or more, but got 1.
|
|
292
|
-
src/lib/BaseSuite.test/mock.ts(101,41): error TS2322: Type 'Promise<{ testStore: boolean; }>' is not assignable to type '(store: TestStore) => Promise<TestSelection>'.
|
|
293
|
-
Type 'Promise<{ testStore: boolean; }>' provides no match for the signature '(store: TestStore): Promise<TestSelection>'.
|
|
294
|
-
src/lib/BaseSuite.test/mock.ts(104,13): error TS2322: Type 'Promise<{ testSelection: boolean; }>' is not assignable to type 'Promise<(store: TestStore) => Promise<TestSelection>>'.
|
|
295
|
-
Type '{ testSelection: boolean; }' is not assignable to type '(store: TestStore) => Promise<TestSelection>'.
|
|
296
|
-
Type '{ testSelection: boolean; }' provides no match for the signature '(store: TestStore): Promise<TestSelection>'.
|
|
297
|
-
src/lib/BaseSuite.test/test.ts(126,5): error TS2322: Type '() => MockSuite' is not assignable to type '() => () => Promise<TestStore>'.
|
|
298
|
-
Type 'MockSuite' is not assignable to type '() => Promise<TestStore>'.
|
|
299
|
-
Type 'MockSuite' provides no match for the signature '(): Promise<TestStore>'.
|
|
300
|
-
src/lib/BaseSuite.test/test.ts(137,30): error TS2345: Argument of type 'Promise<unknown>' is not assignable to parameter of type 'string'.
|
|
301
|
-
src/lib/BaseSuite.test/test.ts(144,15): error TS2339: Property 'specs' does not exist on type 'MockSuite'.
|
|
302
|
-
src/lib/BaseSuite.test/test.ts(144,38): error TS2339: Property 'specs' does not exist on type 'MockSuite'.
|
|
303
|
-
src/lib/BaseSuite.test/test.ts(151,15): error TS2339: Property 'testJobs' does not exist on type 'MockSuite'.
|
|
304
|
-
src/lib/BaseSuite.test/test.ts(151,41): error TS2339: Property 'testJobs' does not exist on type 'MockSuite'.
|
|
305
|
-
src/lib/BaseSuite.test/test.ts(157,7): error TS2322: Type '(suite: MockSuite) => Promise<MockSuite>' is not assignable to type '(zel: TestSelection, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: TestStore) => Promise<TestStore>>'.
|
|
214
|
+
src/lib/BaseSuite.test/mock.ts(49,5): error TS2322: Type '{ testSelection: boolean; error?: boolean | Error | undefined; name?: string; index?: number; testStore: boolean; }' is not assignable to type 'TestStore'.
|
|
215
|
+
Types of property 'error' are incompatible.
|
|
216
|
+
Type 'boolean | Error | undefined' is not assignable to type 'Error | undefined'.
|
|
217
|
+
Type 'boolean' is not assignable to type 'Error'.
|
|
218
|
+
src/lib/BaseSuite.test/mock.ts(85,13): error TS2322: Type 'Promise<{ testSelection: boolean; }>' is not assignable to type '(store: TestStore) => Promise<TestSelection>'.
|
|
219
|
+
Type 'Promise<{ testSelection: boolean; }>' provides no match for the signature '(store: TestStore): Promise<TestSelection>'.
|
|
220
|
+
src/lib/BaseSuite.test/mock.ts(90,29): error TS2511: Cannot create an instance of an abstract class.
|
|
221
|
+
src/lib/BaseSuite.test/test.ts(143,30): error TS2345: Argument of type 'Promise<unknown>' is not assignable to parameter of type 'string'.
|
|
222
|
+
src/lib/BaseSuite.test/test.ts(150,15): error TS2339: Property 'specs' does not exist on type 'MockSuite'.
|
|
223
|
+
src/lib/BaseSuite.test/test.ts(150,38): error TS2339: Property 'specs' does not exist on type 'MockSuite'.
|
|
224
|
+
src/lib/BaseSuite.test/test.ts(157,15): error TS2339: Property 'testJobs' does not exist on type 'MockSuite'.
|
|
225
|
+
src/lib/BaseSuite.test/test.ts(157,41): error TS2339: Property 'testJobs' does not exist on type 'MockSuite'.
|
|
226
|
+
src/lib/BaseSuite.test/test.ts(163,7): error TS2322: Type '(suite: MockSuite) => Promise<MockSuite>' is not assignable to type '(zel: TestSelection, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: TestStore) => Promise<TestStore>>'.
|
|
306
227
|
Types of parameters 'suite' and 'zel' are incompatible.
|
|
307
228
|
Type 'TestSelection' is missing the following properties from type 'MockSuite': name, givens, store, testResourceConfiguration, and 11 more.
|
|
308
|
-
src/lib/BaseSuite.test/test.ts(
|
|
229
|
+
src/lib/BaseSuite.test/test.ts(182,11): error TS2322: Type '() => void' is not assignable to type '((tLog: ITLog, callback: (p: Promise<void>) => void) => (fPath: string, value: string | Buffer<ArrayBufferLike> | PassThrough) => void) | ((tLog: ITLog, callback: (promise: Promise<...>) => void) => (fPath: string, value: any) => void) | ((tLog: ITLog, callback: (Promise: any) => void) => (fPath: any, value: string ...'.
|
|
230
|
+
Type '() => void' is not assignable to type '(tLog: ITLog, callback: (p: Promise<void>) => void) => (fPath: string, value: string | Buffer<ArrayBufferLike> | PassThrough) => void'.
|
|
231
|
+
Type 'void' is not assignable to type '(fPath: string, value: string | Buffer | PassThrough) => void'.
|
|
232
|
+
src/lib/BaseSuite.test/test.ts(183,11): error TS2322: Type '() => void' is not assignable to type '((selector: string) => boolean) | ((selector: string) => boolean) | ((selector: string, page: string) => Promise<unknown>)'.
|
|
309
233
|
Type '() => void' is not assignable to type '(selector: string) => boolean'.
|
|
310
234
|
Type 'void' is not assignable to type 'boolean'.
|
|
311
|
-
src/lib/BaseSuite.test/test.ts(
|
|
235
|
+
src/lib/BaseSuite.test/test.ts(185,11): error TS2322: Type '() => void' is not assignable to type '((p: any) => string) | ((p: any) => string) | ((p: any) => Promise<unknown>)'.
|
|
312
236
|
Type '() => void' is not assignable to type '(p: any) => string'.
|
|
313
237
|
Type 'void' is not assignable to type 'string'.
|
|
314
|
-
src/lib/BaseSuite.test/test.ts(
|
|
315
|
-
src/lib/BaseSuite.test/test.ts(
|
|
316
|
-
src/lib/BaseSuite.test/test.ts(
|
|
317
|
-
Call signature return types '(selection: TestSelection) => TestSelection' and '(ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>' are incompatible.
|
|
318
|
-
Type 'TestSelection' is not assignable to type '(store: TestStore) => Promise<TestSelection>'.
|
|
319
|
-
Type 'TestSelection' provides no match for the signature '(store: TestStore): Promise<TestSelection>'.
|
|
320
|
-
src/lib/BaseSuite.test/test.ts(226,24): error TS2339: Property 'name' does not exist on type 'TestSelection'.
|
|
321
|
-
src/lib/BaseSuite.test/test.ts(229,23): error TS2339: Property 'name' does not exist on type 'TestSelection'.
|
|
322
|
-
src/lib/BaseSuite.test/test.ts(231,70): error TS2339: Property 'name' does not exist on type 'TestSelection'.
|
|
323
|
-
src/lib/BaseSuite.test/test.ts(237,5): error TS2322: Type '(expectedIndex: number) => ((selection: TestSelection) => TestSelection)' is not assignable to type '(It_0: number) => (ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
|
|
324
|
-
Call signature return types '(selection: TestSelection) => TestSelection' and '(ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>' are incompatible.
|
|
325
|
-
Type 'TestSelection' is not assignable to type '(store: TestStore) => Promise<TestSelection>'.
|
|
326
|
-
Type 'TestSelection' provides no match for the signature '(store: TestStore): Promise<TestSelection>'.
|
|
327
|
-
src/lib/BaseSuite.test/test.ts(240,23): error TS2339: Property 'index' does not exist on type 'TestSelection'.
|
|
328
|
-
src/lib/BaseSuite.test/test.ts(242,69): error TS2339: Property 'index' does not exist on type 'TestSelection'.
|
|
329
|
-
src/lib/BaseSuite.test/test.ts(248,5): error TS2322: Type '(feature: string) => ((suite: MockSuite) => MockSuite)' is not assignable to type '(feature: string) => (ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
|
|
330
|
-
Type '(suite: MockSuite) => MockSuite' is not assignable to type '(ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
|
|
331
|
-
Types of parameters 'suite' and 'ssel' are incompatible.
|
|
332
|
-
Type 'TestSelection' is missing the following properties from type 'MockSuite': name, givens, store, testResourceConfiguration, and 11 more.
|
|
333
|
-
src/lib/BaseSuite.test/test.ts(269,58): error TS2322: Type '(suite: MockSuite) => MockSuite' is not assignable to type '(ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
|
|
238
|
+
src/lib/BaseSuite.test/test.ts(190,11): error TS2345: Argument of type 'null' is not assignable to parameter of type 'typeof BaseSuite'.
|
|
239
|
+
src/lib/BaseSuite.test/test.ts(204,13): error TS2345: Argument of type 'null' is not assignable to parameter of type 'typeof BaseSuite'.
|
|
240
|
+
src/lib/BaseSuite.test/test.ts(271,58): error TS2322: Type '(suite: MockSuite) => MockSuite' is not assignable to type '(ssel: TestSelection, utils: PM) => (store: TestStore) => Promise<TestSelection>'.
|
|
334
241
|
Types of parameters 'suite' and 'ssel' are incompatible.
|
|
335
242
|
Type 'TestSelection' is missing the following properties from type 'MockSuite': name, givens, store, testResourceConfiguration, and 11 more.
|
|
336
|
-
src/lib/BaseSuite.test/test.ts(
|
|
337
|
-
src/lib/BaseSuite.test/test.ts(
|
|
338
|
-
src/lib/BaseSuite.test/test.ts(
|
|
339
|
-
src/lib/BaseSuite.test/test.ts(
|
|
340
|
-
src/lib/BaseSuite.test/test.ts(
|
|
341
|
-
|
|
243
|
+
src/lib/BaseSuite.test/test.ts(323,19): error TS2339: Property 'specs' does not exist on type 'MockSuite'.
|
|
244
|
+
src/lib/BaseSuite.test/test.ts(332,19): error TS2339: Property 'testJobs' does not exist on type 'MockSuite'.
|
|
245
|
+
src/lib/BaseSuite.test/test.ts(373,22): error TS2339: Property 'index' does not exist on type '() => Promise<TestStore>'.
|
|
246
|
+
src/lib/BaseSuite.test/test.ts(376,19): error TS2339: Property 'store' does not exist on type '() => Promise<TestStore>'.
|
|
247
|
+
src/lib/BaseSuite.test/test.ts(393,26): error TS2349: This expression is not callable.
|
|
248
|
+
Type 'Promise<TestStore>' has no call signatures.
|
|
249
|
+
src/lib/BaseSuite.test/test.ts(393,33): error TS2345: Argument of type 'TestSelection' is not assignable to parameter of type 'TestStore'.
|
|
250
|
+
Property 'testStore' is missing in type 'TestSelection' but required in type 'TestStore'.
|
|
251
|
+
src/lib/BaseSuite.test/test.ts(398,3): error TS2322: Type '(store: TestStore, thenCB: (s: TestSelection) => Promise<BaseSuite<any, any>>, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<TestSelection>' is not assignable to type '(store: TestStore, thenCB: (store: TestStore) => Promise<TestSelection>, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<...>'.
|
|
342
252
|
Types of parameters 'thenCB' and 'thenCB' are incompatible.
|
|
343
|
-
Type '(store: TestStore) => Promise<TestSelection>' is not assignable to type '(
|
|
344
|
-
Types of parameters 'store' and '
|
|
253
|
+
Type '(store: TestStore) => Promise<TestSelection>' is not assignable to type '(s: TestSelection) => Promise<BaseSuite<any, any>>'.
|
|
254
|
+
Types of parameters 'store' and 's' are incompatible.
|
|
345
255
|
Property 'testStore' is missing in type 'TestSelection' but required in type 'TestStore'.
|
|
346
|
-
src/lib/BaseSuite.test/test.ts(
|
|
347
|
-
src/lib/BaseSuite.test/test.ts(419,3): error TS2322: Type '(store: I["istore"]) => I["istore"]' is not assignable to type '(store: TestStore, key: string, pm: IPM) => Promise<unknown>'.
|
|
256
|
+
src/lib/BaseSuite.test/test.ts(415,3): error TS2322: Type '(store: I["istore"]) => I["istore"]' is not assignable to type '(store: TestStore, key: string, pm: IPM) => Promise<unknown>'.
|
|
348
257
|
Type 'TestStore' is missing the following properties from type 'Promise<unknown>': then, catch, finally, [Symbol.toStringTag]
|
|
349
|
-
src/lib/
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
src/lib/
|
|
353
|
-
Type 'Promise<() => BaseBuilder<any, any, any, any, any, any>>' is not assignable to type 'Promise<BaseBuilder<any, any, any, any, any, any>>'.
|
|
354
|
-
Type '() => BaseBuilder<any, any, any, any, any, any>' is not assignable to type 'BaseBuilder<any, any, any, any, any, any>'.
|
|
355
|
-
src/lib/classBuilder.test/classBuilder.test.adapter.ts(17,26): error TS2554: Expected 1 arguments, but got 2.
|
|
356
|
-
src/lib/classBuilder.test/classBuilder.test.adapter.ts(20,26): error TS2554: Expected 1 arguments, but got 2.
|
|
357
|
-
src/lib/classBuilder.test/classBuilder.test.adapter.ts(22,25): error TS2739: Type 'BaseBuilder<any, any, any, any, any, any>' is missing the following properties from type 'Promise<unknown>': then, catch, finally, [Symbol.toStringTag]
|
|
358
|
-
src/lib/classBuilder.test/classBuilder.test.implementation.ts(7,10): error TS2724: '"../classBuilder"' has no exported member named 'TestClassBuilder'. Did you mean 'ClassBuilder'?
|
|
359
|
-
src/lib/classBuilder.test/classBuilder.test.implementation.ts(28,9): error TS2345: Argument of type 'typeof MockSuite' is not assignable to parameter of type 'ISuiteKlasser<I, O>'.
|
|
360
|
-
Type 'typeof MockSuite' provides no match for the signature '(name: string, index: number, givens: IGivens<I>): BaseSuite<I, O>'.
|
|
361
|
-
src/lib/classBuilder.test/classBuilder.test.implementation.ts(47,9): error TS2554: Expected 8 arguments, but got 9.
|
|
362
|
-
src/lib/classBuilder.test/classBuilder.test.implementation.ts(60,9): error TS2554: Expected 8 arguments, but got 9.
|
|
363
|
-
src/lib/classBuilder.test/classBuilder.test.implementation.ts(73,9): error TS2554: Expected 8 arguments, but got 9.
|
|
364
|
-
src/lib/classBuilder.test/classBuilder.test.implementation.ts(86,9): error TS2554: Expected 8 arguments, but got 9.
|
|
365
|
-
src/lib/classBuilder.test/classBuilder.test.implementation.ts(207,30): error TS2322: Type '(builder: ClassBuilder<any, any, any>) => Promise<ClassBuilder<any, any, any>>' is not assignable to type '(builder: ClassBuilder<any, any, any>) => ClassBuilder<any, any, any>'.
|
|
366
|
-
Type 'Promise<ClassBuilder<any, any, any>>' is missing the following properties from type 'ClassBuilder<any, any, any>': specs, assertThis, testResourceRequirement, artifacts, and 12 more.
|
|
367
|
-
src/lib/classBuilder.test/classBuilder.test.implementation.ts(209,23): error TS2339: Property 'testRun' does not exist on type 'ClassBuilder<any, any, any>'.
|
|
368
|
-
src/lib/classBuilder.test/classBuilder.test.specification.ts(19,26): error TS2554: Expected 4 arguments, but got 3.
|
|
369
|
-
src/lib/classBuilder.test/classBuilder.test.specification.ts(24,35): error TS2554: Expected 4 arguments, but got 3.
|
|
370
|
-
src/lib/classBuilder.test/classBuilder.test.specification.ts(64,37): error TS2554: Expected 4 arguments, but got 3.
|
|
371
|
-
src/lib/classBuilder.test/classBuilder.test.specification.ts(69,36): error TS2554: Expected 4 arguments, but got 3.
|
|
372
|
-
src/lib/classBuilder.test/classBuilder.test.specification.ts(83,54): error TS2304: Cannot find name 'ITestJob'.
|
|
373
|
-
src/lib/classBuilder.test/classBuilder.test.specification.ts(101,7): error TS2554: Expected 2 arguments, but got 3.
|
|
374
|
-
src/lib/classBuilder.test/mock.ts(45,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 & { ...; }'.
|
|
375
|
-
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
|
|
376
|
-
src/lib/classBuilder.ts(89,18): error TS2556: A spread argument must either have a tuple type or be passed to a rest parameter.
|
|
377
|
-
src/lib/classBuilder.ts(104,28): error TS2556: A spread argument must either have a tuple type or be passed to a rest parameter.
|
|
378
|
-
src/lib/core.test/core.test.adapter.ts(27,26): error TS2554: Expected 1 arguments, but got 2.
|
|
379
|
-
src/lib/core.test/core.test.adapter.ts(30,26): error TS2554: Expected 1 arguments, but got 2.
|
|
380
|
-
src/lib/core.test/core.test.adapter.ts(32,25): error TS2739: Type 'MockCore<any, any, any>' is missing the following properties from type 'Promise<unknown>': then, catch, finally, [Symbol.toStringTag]
|
|
381
|
-
src/lib/core.test/core.test.implementation.ts(21,11): error TS2304: Cannot find name 'specification'.
|
|
382
|
-
src/lib/core.test/core.test.implementation.ts(23,11): error TS2345: Argument of type '{ ports: number[]; }' is not assignable to parameter of type 'ITTestResourceRequest'.
|
|
383
|
-
Types of property 'ports' are incompatible.
|
|
384
|
-
Type 'number[]' is not assignable to type 'number'.
|
|
385
|
-
src/lib/core.test/core.test.implementation.ts(24,11): error TS2304: Cannot find name 'testAdapter'.
|
|
386
|
-
src/lib/core.test/core.test.implementation.ts(36,9): error TS2304: Cannot find name 'specification'.
|
|
387
|
-
src/lib/core.test/core.test.implementation.ts(38,11): error TS2322: Type 'never[]' is not assignable to type 'number'.
|
|
388
|
-
src/lib/core.test/core.test.implementation.ts(39,9): error TS2304: Cannot find name 'testAdapter'.
|
|
389
|
-
src/lib/core.test/core.test.implementation.ts(46,9): error TS2304: Cannot find name 'specification'.
|
|
390
|
-
src/lib/core.test/core.test.implementation.ts(49,9): error TS2304: Cannot find name 'testAdapter'.
|
|
391
|
-
src/lib/core.test/core.test.implementation.ts(56,9): error TS2304: Cannot find name 'specification'.
|
|
392
|
-
src/lib/core.test/core.test.implementation.ts(58,11): error TS2322: Type 'never[]' is not assignable to type 'number'.
|
|
393
|
-
src/lib/core.test/core.test.implementation.ts(59,14): error TS2304: Cannot find name 'testAdapter'.
|
|
394
|
-
src/lib/core.test/core.test.implementation.ts(93,51): error TS2339: Property 'constructor' does not exist on type 'never'.
|
|
395
|
-
src/lib/core.test/core.test.implementation.ts(138,30): error TS2322: Type '(builder: MockCore<any, any, any>) => Promise<MockCore<any, any, any>>' is not assignable to type '(builder: MockCore<any, any, any>) => MockCore<any, any, any>'.
|
|
396
|
-
Type 'Promise<MockCore<any, any, any>>' is missing the following properties from type 'MockCore<any, any, any>': specs, testJobs, artifacts, testResourceRequirement, and 14 more.
|
|
397
|
-
src/lib/core.test/core.test.specification.ts(29,7): error TS2554: Expected 2 arguments, but got 4.
|
|
398
|
-
src/lib/core.test/core.test.specification.ts(42,13): error TS2353: Object literal may only specify known properties, and 'test' does not exist in type 'string[]'.
|
|
399
|
-
src/lib/core.test/core.test.specification.ts(49,13): error TS2353: Object literal may only specify known properties, and 'ports' does not exist in type 'string[]'.
|
|
400
|
-
src/lib/core.test/core.test.specification.ts(55,13): error TS2353: Object literal may only specify known properties, and 'assertThis' does not exist in type 'string[]'.
|
|
401
|
-
src/lib/core.test/core.test.specification.ts(82,105): error TS2554: Expected 2 arguments, but got 3.
|
|
402
|
-
src/lib/core.test/core.test.types.ts(15,17): error TS2707: Generic type 'Ibdd_out' requires between 0 and 4 type arguments.
|
|
403
|
-
src/lib/core.test/MockCore.ts(32,56): error TS2322: Type 'never[]' is not assignable to type 'number'.
|
|
404
|
-
src/lib/core.test/MockCore.ts(49,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 & { ...; }'.
|
|
405
|
-
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, any>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }': suites, givens, whens, thens
|
|
406
|
-
src/lib/core.ts(48,7): error TS2345: Argument of type 'Omit<{ suites: import("/Users/adam/Code/testeranto/src/Types").TestSuiteImplementation<O>; givens: import("/Users/adam/Code/testeranto/src/Types").TestGivenImplementation<I, O>; whens: import("/Users/adam/Code/testeranto/src/Types").TestWhenImplementation<...>; thens: import("/Users/adam/Code/testeranto/src/Types")....' is not assignable to parameter of type 'Omit<{ suites: import("/Users/adam/Code/testeranto/src/Types").TestSuiteImplementation<O>; givens: import("/Users/adam/Code/testeranto/src/Types").TestGivenImplementation<I, O>; whens: import("/Users/adam/Code/testeranto/src/Types").TestWhenImplementation<...>; thens: import("/Users/adam/Code/testeranto/src/Types")....'.
|
|
407
|
-
Type 'Omit<{ suites: TestSuiteImplementation<O>; givens: TestGivenImplementation<I, O>; whens: TestWhenImplementation<I, O>; thens: TestThenImplementation<...>; }, keyof M> & M & { ...; }' is not assignable to type '{ suites: Record<string, never>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }'.
|
|
408
|
-
Types of property 'suites' are incompatible.
|
|
409
|
-
Type 'Record<string, any>' is not assignable to type 'Record<string, never>'.
|
|
410
|
-
'string' index signatures are incompatible.
|
|
411
|
-
Type 'any' is not assignable to type 'never'.
|
|
412
|
-
src/lib/index.ts(17,3): error TS2322: Type '(subject: T["isubject"], initialValues: T["iinitialValues"], x: unknown, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<T["isubject"]>' is not assignable to type '(subject: T["isubject"], initializer: (c?: any) => T["given"], testResource: ITTestResourceConfiguration, initialValues: any, pm: IPM) => Promise<...>'.
|
|
413
|
-
Types of parameters 'initialValues' and 'initializer' are incompatible.
|
|
414
|
-
Type '(c?: any) => T["given"]' is not assignable to type 'T["iinitialValues"]'.
|
|
415
|
-
'T["iinitialValues"]' could be instantiated with an arbitrary type which could be unrelated to '(c?: any) => T["given"]'.
|
|
416
|
-
src/lib/index.ts(19,20): error TS2536: Type '"iinitialValues"' cannot be used to index type 'T'.
|
|
417
|
-
src/lib/index.ts(41,13): error TS2349: This expression is not callable.
|
|
258
|
+
src/lib/BaseThen.ts(76,41): error TS2556: A spread argument must either have a tuple type or be passed to a rest parameter.
|
|
259
|
+
src/lib/index.ts(42,12): error TS2349: This expression is not callable.
|
|
260
|
+
Type 'unknown' has no call signatures.
|
|
261
|
+
src/lib/index.ts(50,12): error TS2349: This expression is not callable.
|
|
418
262
|
Type 'unknown' has no call signatures.
|
|
419
|
-
src/lib/index.ts(53,3): error TS2322: Type '{ assertThis?: ((x: T["then"]) => any) | undefined; andWhen?: ((store: T["istore"], whenCB: T["when"], testResource: ITTestResourceConfiguration, pm: IPM) => Promise<T["istore"]>) | undefined; ... 4 more ...; beforeEach?: ((subject: T["isubject"], initializer: (c?: any) => T["given"], testResource: ITTestResourceCon...' is not assignable to type 'ITestAdapter<T>'.
|
|
420
|
-
Types of property 'assertThis' are incompatible.
|
|
421
|
-
Type '((x: T["then"]) => any) | undefined' is not assignable to type '(x: T["then"]) => any'.
|
|
422
|
-
Type 'undefined' is not assignable to type '(x: T["then"]) => any'.
|
|
423
|
-
src/lib/mocks.test.ts(8,16): error TS2304: Cannot find name 'BaseSuite'.
|
|
424
263
|
src/lib/pmProxy.test/adapter.ts(13,3): error TS2719: Type '(subject: { proxies: import("/Users/adam/Code/testeranto/src/lib/pmProxy.test/index").ITestProxies; filepath: string; mockPm: import("/Users/adam/Code/testeranto/src/lib/types").IPM; }, initializer: (c?: any) => [...], testResource: import("/Users/adam/Code/testeranto/src/lib/index").ITTestResourceConfiguration, ini...' is not assignable to type '(subject: { proxies: import("/Users/adam/Code/testeranto/src/lib/pmProxy.test/index").ITestProxies; filepath: string; mockPm: import("/Users/adam/Code/testeranto/src/lib/types").IPM; }, initializer: (c?: any) => [...], testResource: import("/Users/adam/Code/testeranto/src/lib/index").ITTestResourceConfiguration, ini...'. Two different types with this name exist, but they are unrelated.
|
|
425
264
|
Type 'Promise<{ proxies: ITestProxies; filepath: string; mockPm: IPM; }>' is not assignable to type 'Promise<{ butThenProxy: IProxy; }>'.
|
|
426
265
|
Property 'butThenProxy' is missing in type '{ proxies: ITestProxies; filepath: string; mockPm: IPM; }' but required in type '{ butThenProxy: IProxy; }'.
|
|
@@ -431,31 +270,24 @@ src/lib/pmProxy.test/adapter.ts(37,12): error TS2349: This expression is not cal
|
|
|
431
270
|
Type '[IPM, "string"]' has no call signatures.
|
|
432
271
|
src/lib/pmProxy.test/adapter.ts(42,3): error TS2322: Type '(input: any, testResource: any, pm: any, theGivenString: any) => Promise<{ beforeEachProxy: any; }>' is not assignable to type '(input: { butThenProxy: IProxy; }, testResource: ITTestResourceConfiguration, pm: IPM) => Promise<{ proxies: ITestProxies; filepath: string; mockPm: IPM; }>'.
|
|
433
272
|
Target signature provides too few arguments. Expected 4 or more, but got 3.
|
|
434
|
-
src/lib/pmProxy.test/adapter.ts(51,3): error TS2322: Type '(
|
|
273
|
+
src/lib/pmProxy.test/adapter.ts(51,3): error TS2322: Type '(actualResult: any, expectedResult: any) => void' is not assignable to type '(x: [IPM, "string"]) => any'.
|
|
435
274
|
Target signature provides too few arguments. Expected 2 or more, but got 1.
|
|
436
|
-
src/lib/pmProxy.test/implementation.ts(
|
|
437
|
-
Type '(store: { pathRewriter: PathRewriter; }) =>
|
|
275
|
+
src/lib/pmProxy.test/implementation.ts(56,5): error TS2322: Type '(method: string, expectedPath: string) => (store: { pathRewriter: PathRewriter; }) => Promise<string | undefined>' is not assignable to type '(...It: any) => (ssel: { proxies: ITestProxies; filepath: string; mockPm: IPM; }, utils: PM) => [IPM, "string"]'.
|
|
276
|
+
Type '(store: { pathRewriter: PathRewriter; }) => Promise<string | undefined>' is not assignable to type '(ssel: { proxies: ITestProxies; filepath: string; mockPm: IPM; }, utils: PM) => [IPM, "string"]'.
|
|
438
277
|
Types of parameters 'store' and 'ssel' are incompatible.
|
|
439
278
|
Property 'pathRewriter' is missing in type '{ proxies: ITestProxies; filepath: string; mockPm: IPM; }' but required in type '{ pathRewriter: PathRewriter; }'.
|
|
440
|
-
src/lib/pmProxy.test/implementation.ts(
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
src/lib/pmProxy.test/implementation.ts(
|
|
444
|
-
|
|
445
|
-
src/lib/pmProxy.test/implementation.ts(
|
|
446
|
-
Property 'getLastCall' does not exist on type 'PM_Node'.
|
|
447
|
-
src/lib/pmProxy.test/implementation.ts(97,19): error TS2322: Type '"screen.png"' is not assignable to type '`${string}.webm`'.
|
|
448
|
-
src/lib/pmProxy.test/implementation.ts(103,35): error TS2339: Property 'getLastCall' does not exist on type 'IPM'.
|
|
449
|
-
Property 'getLastCall' does not exist on type 'PM_Node'.
|
|
450
|
-
src/lib/pmProxy.test/implementation.ts(104,38): error TS2339: Property 'getLastCall' does not exist on type 'IPM'.
|
|
451
|
-
Property 'getLastCall' does not exist on type 'PM_Node'.
|
|
452
|
-
src/lib/pmProxy.test/implementation.ts(108,69): error TS2322: Type '"shot.png"' is not assignable to type '`${string}.webm`'.
|
|
453
|
-
src/lib/pmProxy.test/implementation.ts(109,35): error TS2339: Property 'getLastCall' does not exist on type 'IPM'.
|
|
454
|
-
Property 'getLastCall' does not exist on type 'PM_Node'.
|
|
455
|
-
src/lib/pmProxy.test/implementation.ts(126,5): error TS2322: Type '(expectedContent: any) => (result: any[]) => any[]' is not assignable to type '(...It: any) => (ssel: { proxies: ITestProxies; filepath: string; mockPm: IPM; }, utils: PM) => [IPM, "string"]'.
|
|
279
|
+
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)'.
|
|
280
|
+
Type '(path: string, content: string, testName?: string) => Promise<any>' is not assignable to type '(x: any) => Promise<boolean>'.
|
|
281
|
+
Target signature provides too few arguments. Expected 2 or more, but got 1.
|
|
282
|
+
src/lib/pmProxy.test/implementation.ts(103,17): error TS2554: Expected 1 arguments, but got 3.
|
|
283
|
+
src/lib/pmProxy.test/implementation.ts(115,19): error TS2322: Type '"screen.png"' is not assignable to type '`${string}.webm`'.
|
|
284
|
+
src/lib/pmProxy.test/implementation.ts(137,5): error TS2322: Type '(expectedContent: any) => (result: any[]) => any[]' is not assignable to type '(...It: any) => (ssel: { proxies: ITestProxies; filepath: string; mockPm: IPM; }, utils: PM) => [IPM, "string"]'.
|
|
456
285
|
Type '(result: any[]) => any[]' is not assignable to type '(ssel: { proxies: ITestProxies; filepath: string; mockPm: IPM; }, utils: PM) => [IPM, "string"]'.
|
|
457
286
|
Types of parameters 'result' and 'ssel' are incompatible.
|
|
458
287
|
Type '{ proxies: ITestProxies; filepath: string; mockPm: IPM; }' is missing the following properties from type 'any[]': length, pop, push, concat, and 35 more.
|
|
288
|
+
src/lib/pmProxy.test/implementation.ts(150,13): error TS2322: Type '(store: { pathRewriter: PathRewriter; }) => Promise<string>' is not assignable to type '(ssel: { proxies: ITestProxies; filepath: string; mockPm: IPM; }, utils: PM) => [IPM, "string"]'.
|
|
289
|
+
Types of parameters 'store' and 'ssel' are incompatible.
|
|
290
|
+
Property 'pathRewriter' is missing in type '{ proxies: ITestProxies; filepath: string; mockPm: IPM; }' but required in type '{ pathRewriter: PathRewriter; }'.
|
|
459
291
|
src/lib/pmProxy.test/index.ts(17,3): error TS2345: Argument of type 'ITestImplementation<I, any, M>' is not assignable to parameter of type 'Omit<{ suites: TestSuiteImplementation<any>; givens: TestGivenImplementation<I, any>; whens: TestWhenImplementation<I, any>; thens: TestThenImplementation<...>; }, never>'.
|
|
460
292
|
Types of property 'givens' are incompatible.
|
|
461
293
|
Type '{ [x: string]: (...Iw: any) => string; }' is not assignable to type 'TestGivenImplementation<I, any>'.
|
|
@@ -467,10 +299,33 @@ src/lib/pmProxy.test/mockPM.ts(23,3): error TS2416: Property 'launchSideCar' in
|
|
|
467
299
|
Type 'Promise<[number, any]>' is not assignable to type 'Promise<void>'.
|
|
468
300
|
Type '[number, any]' is not assignable to type 'void'.
|
|
469
301
|
src/lib/pmProxy.test/types.ts(19,17): error TS2707: Generic type 'Ibdd_out' requires between 0 and 4 type arguments.
|
|
302
|
+
src/lib/Tiposkripto.test/MockTiposkripto.ts(32,56): error TS2322: Type 'never[]' is not assignable to type 'number'.
|
|
303
|
+
src/lib/Tiposkripto.test/MockTiposkripto.ts(47,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 & { ...; }'.
|
|
304
|
+
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
|
|
305
|
+
src/lib/Tiposkripto.test/Tiposkripto.adapter.ts(29,26): error TS2554: Expected 1 arguments, but got 2.
|
|
306
|
+
src/lib/Tiposkripto.test/Tiposkripto.adapter.ts(32,26): error TS2554: Expected 1 arguments, but got 2.
|
|
307
|
+
src/lib/Tiposkripto.test/Tiposkripto.adapter.ts(34,25): error TS2739: Type 'Tiposkripto<any, any, any>' is missing the following properties from type 'Promise<unknown>': then, catch, finally, [Symbol.toStringTag]
|
|
308
|
+
src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(28,13): error TS2322: Type 'never[]' is not assignable to type 'number'.
|
|
309
|
+
src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(42,11): error TS2322: Type 'never[]' is not assignable to type 'number'.
|
|
310
|
+
src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(62,11): error TS2322: Type 'never[]' is not assignable to type 'number'.
|
|
311
|
+
src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(72,11): error TS2322: Type 'never[]' is not assignable to type 'number'.
|
|
312
|
+
src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(82,11): error TS2322: Type 'never[]' is not assignable to type 'number'.
|
|
313
|
+
src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(189,20): error TS2339: Property 'testAdapter' does not exist on type 'Tiposkripto<any, any, any>'.
|
|
314
|
+
src/lib/Tiposkripto.test/Tiposkripto.implementation.ts(210,30): error TS2322: Type '(builder: Tiposkripto<any, any, any>) => Promise<Tiposkripto<any, any, any>>' is not assignable to type '(builder: Tiposkripto<any, any, any>) => Tiposkripto<any, any, any>'.
|
|
315
|
+
Type 'Promise<Tiposkripto<any, any, any>>' is missing the following properties from type 'Tiposkripto<any, any, any>': receiveTestResourceConfig, specs, assertThis, testResourceRequirement, and 14 more.
|
|
316
|
+
src/lib/Tiposkripto.test/Tiposkripto.specification.ts(20,26): error TS2554: Expected 4 arguments, but got 3.
|
|
317
|
+
src/lib/Tiposkripto.test/Tiposkripto.specification.ts(25,35): error TS2554: Expected 4 arguments, but got 3.
|
|
318
|
+
src/lib/Tiposkripto.test/Tiposkripto.specification.ts(59,37): error TS2554: Expected 4 arguments, but got 3.
|
|
319
|
+
src/lib/Tiposkripto.test/Tiposkripto.specification.ts(71,35): error TS2554: Expected 4 arguments, but got 3.
|
|
320
|
+
src/lib/Tiposkripto.test/Tiposkripto.specification.ts(76,34): error TS2554: Expected 4 arguments, but got 3.
|
|
321
|
+
src/lib/Tiposkripto.test/Tiposkripto.specification.ts(90,52): error TS2304: Cannot find name 'ITestJob'.
|
|
322
|
+
src/lib/Tiposkripto.ts(205,7): error TS2345: Argument of type 'Record<string, any>' is not assignable to parameter of type 'SuiteSpecification<I, O>'.
|
|
323
|
+
src/lib/Tiposkripto.ts(263,15): error TS2554: Expected 1 arguments, but got 3.
|
|
470
324
|
src/mothership/test.ts(64,7): error TS2554: Expected 2 arguments, but got 3.
|
|
471
325
|
src/mothership/test.ts(70,13): error TS2322: Type '(x: any) => any' is not assignable to type 'string'.
|
|
472
|
-
src/Node.ts(
|
|
473
|
-
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,
|
|
326
|
+
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 & { ...; }'.
|
|
327
|
+
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
|
|
328
|
+
src/Node.ts(56,12): error TS2304: Cannot find name 'Testeranto'.
|
|
474
329
|
src/PM/__tests__/nodeSidecar.testeranto.ts(53,43): error TS2304: Cannot find name 'I'.
|
|
475
330
|
src/PM/__tests__/nodeSidecar.testeranto.ts(54,13): error TS2322: Type '(x: any) => any' is not assignable to type 'string'.
|
|
476
331
|
src/PM/__tests__/nodeSidecar.testeranto.ts(95,29): error TS2454: Variable 'callbackFn' is used before being assigned.
|
|
@@ -497,98 +352,78 @@ src/PM/__tests__/webSidecar.testeranto.ts(94,38): error TS2322: Type 'boolean' i
|
|
|
497
352
|
src/PM/__tests__/webSidecar.testeranto.ts(109,18): error TS2339: Property 'removeListenerCalled' does not exist on type 'PM'.
|
|
498
353
|
src/PM/__tests__/webSidecar.testeranto.ts(118,20): error TS2304: Cannot find name 'IPartialNodeAdapter'.
|
|
499
354
|
src/PM/__tests__/webSidecar.testeranto.ts(118,40): error TS2304: Cannot find name 'I'.
|
|
500
|
-
src/PM/main.ts(
|
|
355
|
+
src/PM/main.ts(388,21): error TS2322: Type 'number | null' is not assignable to type 'number | undefined'.
|
|
356
|
+
Type 'null' is not assignable to type 'number | undefined'.
|
|
357
|
+
src/PM/main.ts(543,7): error TS2322: Type '[number, Page]' is not assignable to type '[number, ITTestResourceConfiguration]'.
|
|
501
358
|
Type at position 1 in source is not compatible with type at position 1 in target.
|
|
502
359
|
Type 'Page' is missing the following properties from type 'ITTestResourceConfiguration': name, fs, ports
|
|
503
|
-
src/PM/main.ts(
|
|
504
|
-
src/PM/main.ts(
|
|
360
|
+
src/PM/main.ts(1097,32): error TS2304: Cannot find name 'argz'.
|
|
361
|
+
src/PM/main.ts(1373,31): error TS2322: Type 'import("/Users/adam/Code/testeranto/node_modules/puppeteer-core/lib/types").Page' is not assignable to type 'import("/Users/adam/Code/testeranto/node_modules/puppeteer-core/lib/esm/puppeteer/api/Page").Page'.
|
|
505
362
|
Property '#private' in type 'Page' refers to a different member that cannot be accessed from within type 'Page'.
|
|
506
|
-
src/PM/main.ts(
|
|
507
|
-
src/PM/main.ts(
|
|
508
|
-
src/PM/main.ts(
|
|
509
|
-
src/PM/
|
|
510
|
-
|
|
511
|
-
Types of parameters 'opts' and 'opts' are incompatible.
|
|
512
|
-
Type '{ path: string; }' is not assignable to type 'ScreencastOptions'.
|
|
513
|
-
Types of property 'path' are incompatible.
|
|
514
|
-
Type 'string' is not assignable to type '`${string}.webm`'.
|
|
515
|
-
src/PM/pure.ts(145,3): error TS2416: Property 'createWriteStream' in type 'PM_Pure' is not assignable to the same property in base type 'PM'.
|
|
516
|
-
Type '() => { write: () => boolean; end: () => void; }' is not assignable to type '(filepath: string, testName: string) => Promise<string>'.
|
|
517
|
-
Type '{ write: () => boolean; end: () => void; }' is missing the following properties from type 'Promise<string>': then, catch, finally, [Symbol.toStringTag]
|
|
363
|
+
src/PM/main.ts(1380,6): error TS2366: Function lacks ending return statement and return type does not include 'undefined'.
|
|
364
|
+
src/PM/main.ts(1604,16): error TS2454: Variable 'argz' is used before being assigned.
|
|
365
|
+
src/PM/main.ts(1867,9): error TS2532: Object is possibly 'undefined'.
|
|
366
|
+
src/PM/main.ts(1912,11): error TS2322: Type 'string' is not assignable to type 'null'.
|
|
367
|
+
src/PM/PM_WithEslintAndTsc.ts(249,10): error TS2339: Property 'broadcast' does not exist on type 'PM_WithEslintAndTsc'.
|
|
518
368
|
src/PM/web.ts(59,12): error TS2339: Property 'mainFrame' does not exist on type 'string | Page'.
|
|
519
369
|
Property 'mainFrame' does not exist on type 'string'.
|
|
520
|
-
src/Pure.test.ts(58,
|
|
521
|
-
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...'
|
|
522
|
-
|
|
523
|
-
src/Pure.test.ts(
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
src/Pure.test.ts(
|
|
530
|
-
Call signature return types '(store: { pm: IPM; }) => { artifacts: any[]; pm: IPM; }' and '(zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { pm: IPM; }) => { pm: IPM; }>' are incompatible.
|
|
531
|
-
Type '{ artifacts: any[]; pm: IPM; }' is
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
src/Pure.test.ts(
|
|
541
|
-
|
|
542
|
-
Type '{ pm: IPM; }'
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
src/Pure.test.ts(
|
|
547
|
-
|
|
548
|
-
src/Pure.test.ts(147,
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
src/Pure.test.ts(
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
src/Pure.test.ts(
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
src/Pure.test.ts(
|
|
570
|
-
|
|
571
|
-
src/Pure.test.ts(
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
src/Pure.
|
|
575
|
-
|
|
576
|
-
src/Pure.
|
|
577
|
-
Call signature return types '(store: { pm: IPM; }) => { pm: IPM; }' and '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }' are incompatible.
|
|
578
|
-
Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.
|
|
579
|
-
Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.
|
|
580
|
-
src/Pure.test.ts(198,33): error TS2322: Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.
|
|
581
|
-
Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.
|
|
582
|
-
Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.
|
|
583
|
-
src/Pure.test.ts(204,31): error TS2322: Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.
|
|
584
|
-
Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.
|
|
585
|
-
Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.
|
|
586
|
-
src/Pure.test.ts(206,58): error TS2554: Expected 1 arguments, but got 2.
|
|
587
|
-
src/Pure.test.ts(212,29): error TS2322: Type '(store: { pm: IPM; }) => { pm: IPM; }' is not assignable to type '(ssel: { pm: IPM; }, utils: PM) => (store: { pm: IPM; }) => { pm: IPM; }'.
|
|
588
|
-
Type '{ pm: IPM; }' is not assignable to type '(store: { pm: IPM; }) => { pm: IPM; }'.
|
|
589
|
-
Type '{ pm: IPM; }' provides no match for the signature '(store: { pm: IPM; }): { pm: IPM; }'.
|
|
590
|
-
src/Pure.ts(32,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 & { ...; }'.
|
|
591
|
-
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, any>; givens: Record<string, any>; whens: Record<string, any>; thens: Record<string, any>; }': suites, givens, whens, thens
|
|
370
|
+
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; }'.
|
|
371
|
+
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; }'.
|
|
372
|
+
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; }'.
|
|
373
|
+
src/Pure.test.ts(88,5): error TS2322: Type '(proxyType: string) => (store: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<{ pm: IPM; } | { largePayload: boolean; pm: IPM; }>' is not assignable to type '(Iw_0: string) => (zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }>'.
|
|
374
|
+
Call signature return types '(store: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<{ pm: IPM; } | { largePayload: boolean; pm: IPM; }>' and '(zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }>' are incompatible.
|
|
375
|
+
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; }>'.
|
|
376
|
+
Type '{ pm: IPM; } | { largePayload: boolean; pm: IPM; }' is not assignable to type '(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
|
|
377
|
+
Type '{ pm: IPM; }' is not assignable to type '(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
|
|
378
|
+
Type '{ pm: IPM; }' provides no match for the signature '(store: { [key: string]: any; pm: IPM; }): { [key: string]: any; pm: IPM; }'.
|
|
379
|
+
src/Pure.test.ts(120,5): error TS2322: Type '(artifact: Promise<string>) => (store: { pm: IPM; }) => Promise<{ artifacts: any[]; pm: IPM; }>' is not assignable to type '(Iw_0: Promise<string>) => (zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { [key: string]: any; pm: IPM; }) => { ...; }>'.
|
|
380
|
+
Call signature return types '(store: { pm: IPM; }) => Promise<{ artifacts: any[]; pm: IPM; }>' and '(zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }>' are incompatible.
|
|
381
|
+
Type 'Promise<{ artifacts: any[]; pm: IPM; }>' is not assignable to type 'Promise<(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }>'.
|
|
382
|
+
Type '{ artifacts: any[]; pm: IPM; }' is not assignable to type '(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
|
|
383
|
+
Type '{ artifacts: any[]; pm: IPM; }' provides no match for the signature '(store: { [key: string]: any; pm: IPM; }): { [key: string]: any; pm: IPM; }'.
|
|
384
|
+
src/Pure.test.ts(123,31): error TS2339: Property 'artifacts' does not exist on type '{ pm: IPM; }'.
|
|
385
|
+
src/Pure.test.ts(126,5): error TS2322: Type '(jobs: any[]) => (store: { pm: IPM; }) => Promise<{ testJobs: any[]; pm: IPM; }>' is not assignable to type '(Iw_0: any[]) => (zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }>'.
|
|
386
|
+
Call signature return types '(store: { pm: IPM; }) => Promise<{ testJobs: any[]; pm: IPM; }>' and '(zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }>' are incompatible.
|
|
387
|
+
Type 'Promise<{ testJobs: any[]; pm: IPM; }>' is not assignable to type 'Promise<(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }>'.
|
|
388
|
+
Type '{ testJobs: any[]; pm: IPM; }' is not assignable to type '(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
|
|
389
|
+
Type '{ testJobs: any[]; pm: IPM; }' provides no match for the signature '(store: { [key: string]: any; pm: IPM; }): { [key: string]: any; pm: IPM; }'.
|
|
390
|
+
src/Pure.test.ts(132,5): error TS2322: Type '(modifier: (specs: any) => any[]) => (store: { pm: IPM; }) => Promise<{ specs: any[]; pm: IPM; }>' is not assignable to type '(Iw_0: (specs: any) => any[]) => (zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { [key: string]: any; pm: IPM; }) => { ...; }>'.
|
|
391
|
+
Call signature return types '(store: { pm: IPM; }) => Promise<{ specs: any[]; pm: IPM; }>' and '(zel: { pm: IPM; }, tr: ITTestResourceConfiguration, utils: PM) => Promise<(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }>' are incompatible.
|
|
392
|
+
Type 'Promise<{ specs: any[]; pm: IPM; }>' is not assignable to type 'Promise<(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }>'.
|
|
393
|
+
Type '{ specs: any[]; pm: IPM; }' is not assignable to type '(store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
|
|
394
|
+
Type '{ specs: any[]; pm: IPM; }' provides no match for the signature '(store: { [key: string]: any; pm: IPM; }): { [key: string]: any; pm: IPM; }'.
|
|
395
|
+
src/Pure.test.ts(135,31): error TS2339: Property 'specs' does not exist on type '{ pm: IPM; }'.
|
|
396
|
+
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; }'.
|
|
397
|
+
Target signature provides too few arguments. Expected 3 or more, but got 2.
|
|
398
|
+
src/Pure.test.ts(147,27): 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; }'.
|
|
399
|
+
Target signature provides too few arguments. Expected 3 or more, but got 2.
|
|
400
|
+
src/Pure.test.ts(150,24): 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; }'.
|
|
401
|
+
Target signature provides too few arguments. Expected 3 or more, but got 2.
|
|
402
|
+
src/Pure.test.ts(153,29): 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; }'.
|
|
403
|
+
Target signature provides too few arguments. Expected 3 or more, but got 2.
|
|
404
|
+
src/Pure.test.ts(156,30): 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; }'.
|
|
405
|
+
Target signature provides too few arguments. Expected 3 or more, but got 2.
|
|
406
|
+
src/Pure.test.ts(159,5): error TS2322: Type '(expectedCount: number) => (store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(It_0: number) => (ssel: { pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
|
|
407
|
+
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; }'.
|
|
408
|
+
Target signature provides too few arguments. Expected 3 or more, but got 2.
|
|
409
|
+
src/Pure.test.ts(162,5): error TS2322: Type '(expectedPath: string) => (store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(It_0: string) => (ssel: { pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
|
|
410
|
+
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; }'.
|
|
411
|
+
Target signature provides too few arguments. Expected 3 or more, but got 2.
|
|
412
|
+
src/Pure.test.ts(165,26): 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; }'.
|
|
413
|
+
Target signature provides too few arguments. Expected 3 or more, but got 2.
|
|
414
|
+
src/Pure.test.ts(168,5): error TS2322: Type '(expectedError: string) => (store: any, tr: any, utils: any) => Promise<any>' is not assignable to type '(It_0: string) => (ssel: { pm: IPM; }, utils: PM) => (store: { [key: string]: any; pm: IPM; }) => { [key: string]: any; pm: IPM; }'.
|
|
415
|
+
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; }'.
|
|
416
|
+
Target signature provides too few arguments. Expected 3 or more, but got 2.
|
|
417
|
+
src/Pure.test.ts(171,33): 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; }'.
|
|
418
|
+
Target signature provides too few arguments. Expected 3 or more, but got 2.
|
|
419
|
+
src/Pure.test.ts(174,31): 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; }'.
|
|
420
|
+
Target signature provides too few arguments. Expected 3 or more, but got 2.
|
|
421
|
+
src/Pure.test.ts(177,29): 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; }'.
|
|
422
|
+
Target signature provides too few arguments. Expected 3 or more, but got 2.
|
|
423
|
+
src/Pure.test.ts(315,28): error TS2304: Cannot find name 'ITestAdapter'.
|
|
424
|
+
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 & { ...; }'.
|
|
425
|
+
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
|
|
426
|
+
src/Pure.ts(83,21): error TS2304: Cannot find name 'Testeranto'.
|
|
592
427
|
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.
|
|
593
428
|
Type 'Promise<Server<typeof IncomingMessage, typeof ServerResponse>>' is not assignable to type 'Promise<number>'.
|
|
594
429
|
Type 'Server<typeof IncomingMessage, typeof ServerResponse>' is not assignable to type 'number'.
|
|
@@ -597,13 +432,18 @@ src/ReportServer.test.ts/index.ts(180,14): error TS2304: Cannot find name 'IProj
|
|
|
597
432
|
src/ReportServer.test.ts/index.ts(182,10): error TS2304: Cannot find name 'IProjectPageViewProps'.
|
|
598
433
|
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>'.
|
|
599
434
|
Type 'void' is not assignable to type 'Server<typeof IncomingMessage, typeof ServerResponse>'.
|
|
600
|
-
src/ReportServer.ts(
|
|
435
|
+
src/ReportServer.ts(8,20): error TS2345: Argument of type 'string | 3000' is not assignable to parameter of type 'number'.
|
|
436
|
+
Type 'string' is not assignable to type 'number'.
|
|
601
437
|
src/ReportServerLib.ts(111,33): error TS2339: Property 'status' does not exist on type 'Error'.
|
|
438
|
+
src/utils/api.ts(34,44): error TS2345: Argument of type 'string' is not assignable to parameter of type 'RuntimeName'.
|
|
602
439
|
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.
|
|
603
440
|
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.
|
|
604
441
|
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.
|
|
605
442
|
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.
|
|
606
443
|
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.
|
|
444
|
+
src/utils/makePrompt.ts(60,31): error TS2345: Argument of type 'IRunTime' is not assignable to parameter of type 'RuntimeName'.
|
|
445
|
+
Type '"spawn"' is not assignable to type 'RuntimeName'.
|
|
607
446
|
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 & { ...; }'.
|
|
608
|
-
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,
|
|
447
|
+
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
|
|
448
|
+
src/Web.ts(92,12): error TS2552: Cannot find name 'Testeranto'. Did you mean 'WebTesteranto'?
|
|
609
449
|
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
|