@tyvm/knowhow 0.0.33 → 0.0.34
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/autodoc/plugins/downloader/downloader.mdx +2 -2
- package/benchmarks/.dockerignore +7 -0
- package/benchmarks/README.md +166 -0
- package/benchmarks/docker/Dockerfile +68 -0
- package/benchmarks/example-config.yml +27 -0
- package/benchmarks/jest.config.js +13 -0
- package/benchmarks/package-lock.json +4297 -0
- package/benchmarks/package.json +39 -0
- package/benchmarks/results/4542435/2025-08-05/lms/lms-openai-gpt-oss-20b.json +2814 -0
- package/benchmarks/results/4542435/2025-08-05/lms/lms-qwen-qwen3-30b-a3b-2507.json +2014 -0
- package/benchmarks/results/4fb9125/2025-08-07/anthropic/anthropic-claude-sonnet-4-20250514.json +3121 -0
- package/benchmarks/results/5766aee/2025-08-02/lms-qwen/qwen3-coder-30b.json +98 -0
- package/benchmarks/results/6d73808/2025-08-07/openai/openai-gpt-5.json +3256 -0
- package/benchmarks/results/77bf0a6/2025-08-02/lms-qwen/qwen3-30b-a3b-2507.json +4298 -0
- package/benchmarks/results/8c0d445/2025-08-03/anthropic/anthropic-claude-sonnet-4-20250514.json +3031 -0
- package/benchmarks/results/8c0d445/2025-08-03/openai/openai-gpt-4.1-2025-04-14.json +2990 -0
- package/benchmarks/results/ac6b2ab/2025-08-03/anthropic/anthropic-claude-sonnet-4-20250514.json +3256 -0
- package/benchmarks/results/ac6b2ab/2025-08-03/lms/lms-qwen-qwen3-coder-30b.json +3007 -0
- package/benchmarks/results/ac6b2ab/2025-08-03/openai/openai-gpt-4.1-2025-04-14.json +3256 -0
- package/benchmarks/results/ac6b2ab/2025-08-03/openai/openai-gpt-4.1-mini-2025-04-14.json +3036 -0
- package/benchmarks/results/ac6b2ab/2025-08-03/openai/openai-gpt-4.1-nano-2025-04-14.json +3280 -0
- package/benchmarks/results/adff675/2025-08-04/lms/lms-qwen-qwen3-30b-a3b-2507.json +1920 -0
- package/benchmarks/results/adff675/2025-08-04/lms/lms-qwen-qwen3-coder-30b.json +3281 -0
- package/benchmarks/results/b502ed9/2025-08-03/lms-qwen/qwen3-coder-30b.json +2896 -0
- package/benchmarks/results/d1a8129/2025-08-03/lms/lms-qwen-qwen3-coder-30b.json +3011 -0
- package/benchmarks/results/e60471c/2025-08-03/lms/qwen3-30b-a3b-2507.json +3003 -0
- package/benchmarks/scripts/build-and-run.sh +47 -0
- package/benchmarks/scripts/clone-exercism.sh +92 -0
- package/benchmarks/scripts/validate.sh +48 -0
- package/benchmarks/src/__tests__/runner.test.ts +27 -0
- package/benchmarks/src/cli.ts +90 -0
- package/benchmarks/src/evaluators/EvaluatorRegistry.ts +64 -0
- package/benchmarks/src/evaluators/JavaScriptEvaluator.ts +183 -0
- package/benchmarks/src/evaluators/index.ts +3 -0
- package/benchmarks/src/evaluators/types.ts +22 -0
- package/benchmarks/src/index.ts +3 -0
- package/benchmarks/src/providers.ts +13 -0
- package/benchmarks/src/runner.ts +824 -0
- package/benchmarks/src/types.ts +63 -0
- package/benchmarks/tsconfig.json +19 -0
- package/jest.config.js +2 -1
- package/leaderboard/README.md +148 -0
- package/leaderboard/app/api/benchmark-data/route.ts +131 -0
- package/leaderboard/app/api/benchmark-detail/route.ts +172 -0
- package/leaderboard/app/details/[model]/[provider]/[language]/page.tsx +501 -0
- package/leaderboard/app/exercise/[model]/[provider]/[language]/[exercise]/page.tsx +375 -0
- package/leaderboard/app/globals.css +27 -0
- package/leaderboard/app/layout.tsx +21 -0
- package/leaderboard/app/page.tsx +170 -0
- package/leaderboard/components/LeaderboardTable.tsx +168 -0
- package/leaderboard/components/PerformanceChart.tsx +109 -0
- package/leaderboard/next-env.d.ts +5 -0
- package/leaderboard/next.config.js +4 -0
- package/leaderboard/package-lock.json +6363 -0
- package/leaderboard/package.json +28 -0
- package/leaderboard/postcss.config.js +6 -0
- package/leaderboard/tailwind.config.js +17 -0
- package/leaderboard/tsconfig.json +28 -0
- package/leaderboard/types/benchmark.ts +67 -0
- package/leaderboard/utils/dataProcessor.ts +33 -0
- package/package.json +2 -1
- package/src/agents/base/base.ts +147 -21
- package/src/agents/base/prompt.ts +28 -0
- package/src/agents/index.ts +3 -0
- package/src/agents/patcher/patcher.ts +6 -4
- package/src/agents/setup/setup.ts +56 -0
- package/src/agents/tools/agentCall.ts +6 -2
- package/src/agents/tools/aiClient.ts +74 -8
- package/src/agents/tools/execCommand.ts +13 -14
- package/src/agents/tools/executeScript/README.md +16 -0
- package/src/agents/tools/index.ts +2 -0
- package/src/agents/tools/list.ts +73 -16
- package/src/agents/tools/startAgentTask.ts +109 -0
- package/src/agents/tools/textSearch.ts +1 -1
- package/src/agents/tools/visionTool.ts +31 -2
- package/src/agents/tools/ycmd/client.ts +608 -0
- package/src/agents/tools/ycmd/definitions.ts +294 -0
- package/src/agents/tools/ycmd/detection.ts +211 -0
- package/src/agents/tools/ycmd/index.ts +11 -0
- package/src/agents/tools/ycmd/installer.ts +251 -0
- package/src/agents/tools/ycmd/server.ts +535 -0
- package/src/agents/tools/ycmd/serverManager.ts +316 -0
- package/src/agents/tools/ycmd/tools/completion.ts +113 -0
- package/src/agents/tools/ycmd/tools/diagnostics.ts +155 -0
- package/src/agents/tools/ycmd/tools/getLocations.ts +173 -0
- package/src/agents/tools/ycmd/tools/goto.ts +169 -0
- package/src/agents/tools/ycmd/tools/refactor.ts +204 -0
- package/src/agents/tools/ycmd/tools/signature.ts +174 -0
- package/src/agents/tools/ycmd/tools/start.ts +95 -0
- package/src/agents/tools/ycmd/utils/pathUtils.ts +59 -0
- package/src/ai.ts +15 -0
- package/src/chat/CliChatService.ts +277 -0
- package/src/chat/modules/AgentModule.ts +980 -0
- package/src/chat/modules/AskModule.ts +98 -0
- package/src/chat/modules/BaseChatModule.ts +66 -0
- package/src/chat/modules/InternalChatModule.ts +174 -0
- package/src/chat/modules/SearchModule.ts +166 -0
- package/src/chat/modules/SetupModule.ts +185 -0
- package/src/chat/modules/SystemModule.ts +120 -0
- package/src/chat/modules/VoiceModule.ts +70 -0
- package/src/chat/modules/index.js +5 -0
- package/src/chat/types.ts +97 -0
- package/src/chat.ts +9 -1
- package/src/chat2.ts +62 -0
- package/src/cli.ts +264 -35
- package/src/clients/anthropic.ts +14 -7
- package/src/clients/gemini.ts +15 -7
- package/src/clients/http.ts +17 -7
- package/src/clients/index.ts +117 -4
- package/src/clients/knowhow.ts +7 -2
- package/src/clients/knowhowMcp.ts +118 -0
- package/src/clients/openai.ts +32 -8
- package/src/clients/types.ts +1 -0
- package/src/clients/xai.ts +17 -5
- package/src/config.ts +30 -5
- package/src/conversion.ts +4 -1
- package/src/login.ts +26 -9
- package/src/microphone.ts +0 -1
- package/src/plugins/downloader/downloader.ts +72 -24
- package/src/plugins/downloader/plugin.ts +3 -1
- package/src/plugins/plugins.ts +3 -0
- package/src/processors/CustomVariables.ts +425 -0
- package/src/processors/HarmonyToolProcessor.ts +264 -0
- package/src/processors/XmlToolCallProcessor.ts +533 -0
- package/src/processors/index.ts +3 -0
- package/src/prompts/KnowhowConfigExamples.ts +376 -0
- package/src/services/KnowhowClient.ts +49 -3
- package/src/services/Mcp.ts +42 -3
- package/src/services/McpServer.ts +14 -4
- package/src/services/McpWebsocketTransport.ts +21 -7
- package/src/services/MessageProcessor.ts +10 -5
- package/src/services/index.ts +5 -0
- package/src/services/script-execution/ScriptExecutor.ts +34 -1
- package/src/services/types.ts +17 -14
- package/src/types.ts +17 -0
- package/src/utils/index.ts +138 -0
- package/tests/XmlToolCallProcessor.test.ts +468 -0
- package/tests/manual/ycmd/debug_diagnostics_test.ts +127 -0
- package/tests/manual/ycmd/fixtures/debug_diagnostics.ts +26 -0
- package/tests/manual/ycmd/fixtures/file_change_test.ts +17 -0
- package/tests/manual/ycmd/minimal_advanced_test.ts +108 -0
- package/tests/manual/ycmd/simple_diagnostics_test.ts +61 -0
- package/tests/manual/ycmd/simple_test.ts +74 -0
- package/tests/manual/ycmd/test-typescript-sample.ts +34 -0
- package/tests/manual/ycmd/test_advanced_features.ts +407 -0
- package/tests/manual/ycmd/test_advanced_with_tools.ts +320 -0
- package/tests/manual/ycmd/test_comprehensive_typescript.ts +179 -0
- package/tests/manual/ycmd/test_diagnostics_file_changes.ts +249 -0
- package/tests/manual/ycmd/test_diagnostics_fix.ts +99 -0
- package/tests/manual/ycmd/test_diagnostics_simple.ts +100 -0
- package/tests/manual/ycmd/test_diagnostics_timing.ts +120 -0
- package/tests/manual/ycmd/test_discover_commands.ts +310 -0
- package/tests/manual/ycmd/test_endpoints.ts +115 -0
- package/tests/manual/ycmd/test_final_comprehensive.ts +218 -0
- package/tests/manual/ycmd/test_final_validation.ts +150 -0
- package/tests/manual/ycmd/test_implementation.js +42 -0
- package/tests/manual/ycmd/test_individual_ycmd_tool.ts +39 -0
- package/tests/manual/ycmd/test_server_manager.ts +52 -0
- package/tests/manual/ycmd/test_simple_debug.ts +86 -0
- package/tests/manual/ycmd/test_tsserver_workflow.js +83 -0
- package/tests/manual/ycmd/test_tsserver_workflow.ts +122 -0
- package/tests/manual/ycmd/test_typescript_simple.ts +48 -0
- package/tests/manual/ycmd/test_typescript_ycmd.ts +105 -0
- package/tests/manual/ycmd/test_workspace_config.ts +90 -0
- package/tests/manual/ycmd/test_ycmd_auto_start.ts +137 -0
- package/tests/manual/ycmd/test_ycmd_comprehensive.ts +73 -0
- package/tests/manual/ycmd/test_ycmd_connection.py +10 -0
- package/tests/manual/ycmd/test_ycmd_direct.ts +142 -0
- package/tests/manual/ycmd/test_ycmd_experiment.ts +48 -0
- package/tests/manual/ycmd/test_ycmd_final.ts +200 -0
- package/tests/manual/ycmd/test_ycmd_fixed.py +18 -0
- package/tests/manual/ycmd/test_ycmd_integration.ts +112 -0
- package/tests/manual/ycmd/test_ycmd_simple.ts +45 -0
- package/tests/manual/ycmd/test_ycmd_usage.py +27 -0
- package/tests/manual/ycmd/working_simple_test.ts +134 -0
- package/ts_build/src/agents/base/base.d.ts +14 -1
- package/ts_build/src/agents/base/base.js +91 -17
- package/ts_build/src/agents/base/base.js.map +1 -1
- package/ts_build/src/agents/base/prompt.d.ts +1 -1
- package/ts_build/src/agents/base/prompt.js +28 -0
- package/ts_build/src/agents/base/prompt.js.map +1 -1
- package/ts_build/src/agents/index.d.ts +2 -0
- package/ts_build/src/agents/index.js +2 -0
- package/ts_build/src/agents/index.js.map +1 -1
- package/ts_build/src/agents/patcher/patcher.js +6 -3
- package/ts_build/src/agents/patcher/patcher.js.map +1 -1
- package/ts_build/src/agents/setup/setup.d.ts +8 -0
- package/ts_build/src/agents/setup/setup.js +59 -0
- package/ts_build/src/agents/setup/setup.js.map +1 -0
- package/ts_build/src/agents/tools/agentCall.js +5 -2
- package/ts_build/src/agents/tools/agentCall.js.map +1 -1
- package/ts_build/src/agents/tools/aiClient.d.ts +6 -5
- package/ts_build/src/agents/tools/aiClient.js +37 -6
- package/ts_build/src/agents/tools/aiClient.js.map +1 -1
- package/ts_build/src/agents/tools/execCommand.d.ts +2 -2
- package/ts_build/src/agents/tools/execCommand.js +5 -6
- package/ts_build/src/agents/tools/execCommand.js.map +1 -1
- package/ts_build/src/agents/tools/executeScript/index.d.ts +1 -1
- package/ts_build/src/agents/tools/index.d.ts +2 -0
- package/ts_build/src/agents/tools/index.js +2 -0
- package/ts_build/src/agents/tools/index.js.map +1 -1
- package/ts_build/src/agents/tools/list.js +66 -16
- package/ts_build/src/agents/tools/list.js.map +1 -1
- package/ts_build/src/agents/tools/startAgentTask.d.ts +13 -0
- package/ts_build/src/agents/tools/startAgentTask.js +74 -0
- package/ts_build/src/agents/tools/startAgentTask.js.map +1 -0
- package/ts_build/src/agents/tools/startChatTask.d.ts +13 -0
- package/ts_build/src/agents/tools/startChatTask.js +73 -0
- package/ts_build/src/agents/tools/startChatTask.js.map +1 -0
- package/ts_build/src/agents/tools/textSearch.js +1 -1
- package/ts_build/src/agents/tools/textSearch.js.map +1 -1
- package/ts_build/src/agents/tools/visionTool.d.ts +1 -1
- package/ts_build/src/agents/tools/visionTool.js +23 -3
- package/ts_build/src/agents/tools/visionTool.js.map +1 -1
- package/ts_build/src/agents/tools/ycmd/client.d.ts +93 -0
- package/ts_build/src/agents/tools/ycmd/client.js +355 -0
- package/ts_build/src/agents/tools/ycmd/client.js.map +1 -0
- package/ts_build/src/agents/tools/ycmd/definitions.d.ts +345 -0
- package/ts_build/src/agents/tools/ycmd/definitions.js +298 -0
- package/ts_build/src/agents/tools/ycmd/definitions.js.map +1 -0
- package/ts_build/src/agents/tools/ycmd/detection.d.ts +11 -0
- package/ts_build/src/agents/tools/ycmd/detection.js +175 -0
- package/ts_build/src/agents/tools/ycmd/detection.js.map +1 -0
- package/ts_build/src/agents/tools/ycmd/index.d.ts +8 -0
- package/ts_build/src/agents/tools/ycmd/index.js +20 -0
- package/ts_build/src/agents/tools/ycmd/index.js.map +1 -0
- package/ts_build/src/agents/tools/ycmd/installer.d.ts +19 -0
- package/ts_build/src/agents/tools/ycmd/installer.js +196 -0
- package/ts_build/src/agents/tools/ycmd/installer.js.map +1 -0
- package/ts_build/src/agents/tools/ycmd/server.d.ts +35 -0
- package/ts_build/src/agents/tools/ycmd/server.js +363 -0
- package/ts_build/src/agents/tools/ycmd/server.js.map +1 -0
- package/ts_build/src/agents/tools/ycmd/serverManager.d.ts +39 -0
- package/ts_build/src/agents/tools/ycmd/serverManager.js +210 -0
- package/ts_build/src/agents/tools/ycmd/serverManager.js.map +1 -0
- package/ts_build/src/agents/tools/ycmd/tools/completion.d.ts +22 -0
- package/ts_build/src/agents/tools/ycmd/tools/completion.js +72 -0
- package/ts_build/src/agents/tools/ycmd/tools/completion.js.map +1 -0
- package/ts_build/src/agents/tools/ycmd/tools/diagnostics.d.ts +42 -0
- package/ts_build/src/agents/tools/ycmd/tools/diagnostics.js +88 -0
- package/ts_build/src/agents/tools/ycmd/tools/diagnostics.js.map +1 -0
- package/ts_build/src/agents/tools/ycmd/tools/getLocations.d.ts +22 -0
- package/ts_build/src/agents/tools/ycmd/tools/getLocations.js +142 -0
- package/ts_build/src/agents/tools/ycmd/tools/getLocations.js.map +1 -0
- package/ts_build/src/agents/tools/ycmd/tools/goto.d.ts +20 -0
- package/ts_build/src/agents/tools/ycmd/tools/goto.js +101 -0
- package/ts_build/src/agents/tools/ycmd/tools/goto.js.map +1 -0
- package/ts_build/src/agents/tools/ycmd/tools/refactor.d.ts +32 -0
- package/ts_build/src/agents/tools/ycmd/tools/refactor.js +123 -0
- package/ts_build/src/agents/tools/ycmd/tools/refactor.js.map +1 -0
- package/ts_build/src/agents/tools/ycmd/tools/signature.d.ts +25 -0
- package/ts_build/src/agents/tools/ycmd/tools/signature.js +110 -0
- package/ts_build/src/agents/tools/ycmd/tools/signature.js.map +1 -0
- package/ts_build/src/agents/tools/ycmd/tools/start.d.ts +17 -0
- package/ts_build/src/agents/tools/ycmd/tools/start.js +65 -0
- package/ts_build/src/agents/tools/ycmd/tools/start.js.map +1 -0
- package/ts_build/src/agents/tools/ycmd/utils/pathUtils.d.ts +4 -0
- package/ts_build/src/agents/tools/ycmd/utils/pathUtils.js +67 -0
- package/ts_build/src/agents/tools/ycmd/utils/pathUtils.js.map +1 -0
- package/ts_build/src/ai.d.ts +1 -0
- package/ts_build/src/ai.js +40 -1
- package/ts_build/src/ai.js.map +1 -1
- package/ts_build/src/chat/ChatCommandHandler.d.ts +36 -0
- package/ts_build/src/chat/ChatCommandHandler.js +268 -0
- package/ts_build/src/chat/ChatCommandHandler.js.map +1 -0
- package/ts_build/src/chat/ChatInputManager.d.ts +22 -0
- package/ts_build/src/chat/ChatInputManager.js +85 -0
- package/ts_build/src/chat/ChatInputManager.js.map +1 -0
- package/ts_build/src/chat/ChatManager.d.ts +49 -0
- package/ts_build/src/chat/ChatManager.js +271 -0
- package/ts_build/src/chat/ChatManager.js.map +1 -0
- package/ts_build/src/chat/ChatSession.d.ts +32 -0
- package/ts_build/src/chat/ChatSession.js +3 -0
- package/ts_build/src/chat/ChatSession.js.map +1 -0
- package/ts_build/src/chat/ChatSessionManager.d.ts +19 -0
- package/ts_build/src/chat/ChatSessionManager.js +188 -0
- package/ts_build/src/chat/ChatSessionManager.js.map +1 -0
- package/ts_build/src/chat/ChatStateManager.d.ts +58 -0
- package/ts_build/src/chat/ChatStateManager.js +156 -0
- package/ts_build/src/chat/ChatStateManager.js.map +1 -0
- package/ts_build/src/chat/CliChatService.d.ts +35 -0
- package/ts_build/src/chat/CliChatService.js +201 -0
- package/ts_build/src/chat/CliChatService.js.map +1 -0
- package/ts_build/src/chat/InterruptibleInput.d.ts +20 -0
- package/ts_build/src/chat/InterruptibleInput.js +109 -0
- package/ts_build/src/chat/InterruptibleInput.js.map +1 -0
- package/ts_build/src/chat/interfaces/ChatModule.d.ts +6 -0
- package/ts_build/src/chat/interfaces/ChatModule.js +3 -0
- package/ts_build/src/chat/interfaces/ChatModule.js.map +1 -0
- package/ts_build/src/chat/modules/AgentModule.d.ts +56 -0
- package/ts_build/src/chat/modules/AgentModule.js +705 -0
- package/ts_build/src/chat/modules/AgentModule.js.map +1 -0
- package/ts_build/src/chat/modules/AskModule.d.ts +10 -0
- package/ts_build/src/chat/modules/AskModule.js +63 -0
- package/ts_build/src/chat/modules/AskModule.js.map +1 -0
- package/ts_build/src/chat/modules/BaseChatModule.d.ts +14 -0
- package/ts_build/src/chat/modules/BaseChatModule.js +32 -0
- package/ts_build/src/chat/modules/BaseChatModule.js.map +1 -0
- package/ts_build/src/chat/modules/InternalChatModule.d.ts +24 -0
- package/ts_build/src/chat/modules/InternalChatModule.js +127 -0
- package/ts_build/src/chat/modules/InternalChatModule.js.map +1 -0
- package/ts_build/src/chat/modules/SearchModule.d.ts +12 -0
- package/ts_build/src/chat/modules/SearchModule.js +119 -0
- package/ts_build/src/chat/modules/SearchModule.js.map +1 -0
- package/ts_build/src/chat/modules/SetupModule.d.ts +15 -0
- package/ts_build/src/chat/modules/SetupModule.js +147 -0
- package/ts_build/src/chat/modules/SetupModule.js.map +1 -0
- package/ts_build/src/chat/modules/SystemModule.d.ts +14 -0
- package/ts_build/src/chat/modules/SystemModule.js +90 -0
- package/ts_build/src/chat/modules/SystemModule.js.map +1 -0
- package/ts_build/src/chat/modules/VoiceModule.d.ts +11 -0
- package/ts_build/src/chat/modules/VoiceModule.js +57 -0
- package/ts_build/src/chat/modules/VoiceModule.js.map +1 -0
- package/ts_build/src/chat/types.d.ts +83 -0
- package/ts_build/src/chat/types.js +3 -0
- package/ts_build/src/chat/types.js.map +1 -0
- package/ts_build/src/chat.js +7 -1
- package/ts_build/src/chat.js.map +1 -1
- package/ts_build/src/chat2.d.ts +3 -0
- package/ts_build/src/chat2.js +47 -0
- package/ts_build/src/chat2.js.map +1 -0
- package/ts_build/src/cli.js +218 -37
- package/ts_build/src/cli.js.map +1 -1
- package/ts_build/src/clients/anthropic.d.ts +5 -2
- package/ts_build/src/clients/anthropic.js +12 -7
- package/ts_build/src/clients/anthropic.js.map +1 -1
- package/ts_build/src/clients/gemini.d.ts +6 -3
- package/ts_build/src/clients/gemini.js +13 -7
- package/ts_build/src/clients/gemini.js.map +1 -1
- package/ts_build/src/clients/http.d.ts +1 -0
- package/ts_build/src/clients/http.js +12 -5
- package/ts_build/src/clients/http.js.map +1 -1
- package/ts_build/src/clients/index.d.ts +10 -0
- package/ts_build/src/clients/index.js +74 -4
- package/ts_build/src/clients/index.js.map +1 -1
- package/ts_build/src/clients/knowhow.d.ts +3 -1
- package/ts_build/src/clients/knowhow.js +8 -2
- package/ts_build/src/clients/knowhow.js.map +1 -1
- package/ts_build/src/clients/knowhowMcp.d.ts +20 -0
- package/ts_build/src/clients/knowhowMcp.js +86 -0
- package/ts_build/src/clients/knowhowMcp.js.map +1 -0
- package/ts_build/src/clients/openai.d.ts +5 -2
- package/ts_build/src/clients/openai.js +29 -8
- package/ts_build/src/clients/openai.js.map +1 -1
- package/ts_build/src/clients/types.d.ts +1 -0
- package/ts_build/src/clients/xai.d.ts +5 -2
- package/ts_build/src/clients/xai.js +15 -5
- package/ts_build/src/clients/xai.js.map +1 -1
- package/ts_build/src/config.js +24 -3
- package/ts_build/src/config.js.map +1 -1
- package/ts_build/src/conversion.js +6 -4
- package/ts_build/src/conversion.js.map +1 -1
- package/ts_build/src/login.d.ts +1 -1
- package/ts_build/src/login.js +21 -7
- package/ts_build/src/login.js.map +1 -1
- package/ts_build/src/microphone.js.map +1 -1
- package/ts_build/src/plugins/downloader/downloader.d.ts +4 -5
- package/ts_build/src/plugins/downloader/downloader.js +55 -26
- package/ts_build/src/plugins/downloader/downloader.js.map +1 -1
- package/ts_build/src/plugins/downloader/plugin.js +5 -3
- package/ts_build/src/plugins/downloader/plugin.js.map +1 -1
- package/ts_build/src/plugins/plugins.js +3 -0
- package/ts_build/src/plugins/plugins.js.map +1 -1
- package/ts_build/src/processors/CustomVariables.d.ts +32 -0
- package/ts_build/src/processors/CustomVariables.js +297 -0
- package/ts_build/src/processors/CustomVariables.js.map +1 -0
- package/ts_build/src/processors/HarmonyToolProcessor.d.ts +15 -0
- package/ts_build/src/processors/HarmonyToolProcessor.js +154 -0
- package/ts_build/src/processors/HarmonyToolProcessor.js.map +1 -0
- package/ts_build/src/processors/XmlToolCallProcessor.d.ts +14 -0
- package/ts_build/src/processors/XmlToolCallProcessor.js +357 -0
- package/ts_build/src/processors/XmlToolCallProcessor.js.map +1 -0
- package/ts_build/src/processors/index.d.ts +3 -0
- package/ts_build/src/processors/index.js +7 -1
- package/ts_build/src/processors/index.js.map +1 -1
- package/ts_build/src/prompts/KnowhowConfigExamples.d.ts +2 -0
- package/ts_build/src/prompts/KnowhowConfigExamples.js +379 -0
- package/ts_build/src/prompts/KnowhowConfigExamples.js.map +1 -0
- package/ts_build/src/services/KnowhowClient.d.ts +22 -0
- package/ts_build/src/services/KnowhowClient.js +14 -2
- package/ts_build/src/services/KnowhowClient.js.map +1 -1
- package/ts_build/src/services/Mcp.d.ts +1 -0
- package/ts_build/src/services/Mcp.js +20 -3
- package/ts_build/src/services/Mcp.js.map +1 -1
- package/ts_build/src/services/McpServer.d.ts +1 -1
- package/ts_build/src/services/McpServer.js +8 -4
- package/ts_build/src/services/McpServer.js.map +1 -1
- package/ts_build/src/services/McpWebsocketTransport.js +17 -7
- package/ts_build/src/services/McpWebsocketTransport.js.map +1 -1
- package/ts_build/src/services/MessageProcessor.d.ts +1 -1
- package/ts_build/src/services/MessageProcessor.js +4 -4
- package/ts_build/src/services/MessageProcessor.js.map +1 -1
- package/ts_build/src/services/index.d.ts +2 -0
- package/ts_build/src/services/index.js +4 -0
- package/ts_build/src/services/index.js.map +1 -1
- package/ts_build/src/services/script-execution/ScriptExecutor.d.ts +1 -0
- package/ts_build/src/services/script-execution/ScriptExecutor.js +23 -0
- package/ts_build/src/services/script-execution/ScriptExecutor.js.map +1 -1
- package/ts_build/src/services/types.d.ts +2 -6
- package/ts_build/src/services/types.js +4 -4
- package/ts_build/src/services/types.js.map +1 -1
- package/ts_build/src/types.d.ts +11 -0
- package/ts_build/src/types.js +8 -0
- package/ts_build/src/types.js.map +1 -1
- package/ts_build/src/utils/index.d.ts +2 -0
- package/ts_build/src/utils/index.js +102 -1
- package/ts_build/src/utils/index.js.map +1 -1
- package/ts_build/tests/XmlToolCallProcessor.test.d.ts +1 -0
- package/ts_build/tests/XmlToolCallProcessor.test.js +376 -0
- package/ts_build/tests/XmlToolCallProcessor.test.js.map +1 -0
- package/ts_build/tests/manual/ycmd/debug_diagnostics_test.d.ts +1 -0
- package/ts_build/tests/manual/ycmd/debug_diagnostics_test.js +114 -0
- package/ts_build/tests/manual/ycmd/debug_diagnostics_test.js.map +1 -0
- package/ts_build/tests/manual/ycmd/minimal_advanced_test.d.ts +2 -0
- package/ts_build/tests/manual/ycmd/minimal_advanced_test.js +104 -0
- package/ts_build/tests/manual/ycmd/minimal_advanced_test.js.map +1 -0
- package/ts_build/tests/manual/ycmd/simple_diagnostics_test.d.ts +1 -0
- package/ts_build/tests/manual/ycmd/simple_diagnostics_test.js +74 -0
- package/ts_build/tests/manual/ycmd/simple_diagnostics_test.js.map +1 -0
- package/ts_build/tests/manual/ycmd/simple_test.d.ts +2 -0
- package/ts_build/tests/manual/ycmd/simple_test.js +82 -0
- package/ts_build/tests/manual/ycmd/simple_test.js.map +1 -0
- package/ts_build/tests/manual/ycmd/test-typescript-sample.d.ts +14 -0
- package/ts_build/tests/manual/ycmd/test-typescript-sample.js +20 -0
- package/ts_build/tests/manual/ycmd/test-typescript-sample.js.map +1 -0
- package/ts_build/tests/manual/ycmd/test_advanced_features.d.ts +2 -0
- package/ts_build/tests/manual/ycmd/test_advanced_features.js +297 -0
- package/ts_build/tests/manual/ycmd/test_advanced_features.js.map +1 -0
- package/ts_build/tests/manual/ycmd/test_advanced_with_tools.d.ts +3 -0
- package/ts_build/tests/manual/ycmd/test_advanced_with_tools.js +262 -0
- package/ts_build/tests/manual/ycmd/test_advanced_with_tools.js.map +1 -0
- package/ts_build/tests/manual/ycmd/test_comprehensive_typescript.d.ts +2 -0
- package/ts_build/tests/manual/ycmd/test_comprehensive_typescript.js +186 -0
- package/ts_build/tests/manual/ycmd/test_comprehensive_typescript.js.map +1 -0
- package/ts_build/tests/manual/ycmd/test_diagnostics_file_changes.d.ts +1 -0
- package/ts_build/tests/manual/ycmd/test_diagnostics_file_changes.js +174 -0
- package/ts_build/tests/manual/ycmd/test_diagnostics_file_changes.js.map +1 -0
- package/ts_build/tests/manual/ycmd/test_diagnostics_fix.d.ts +2 -0
- package/ts_build/tests/manual/ycmd/test_diagnostics_fix.js +106 -0
- package/ts_build/tests/manual/ycmd/test_diagnostics_fix.js.map +1 -0
- package/ts_build/tests/manual/ycmd/test_diagnostics_simple.d.ts +1 -0
- package/ts_build/tests/manual/ycmd/test_diagnostics_simple.js +104 -0
- package/ts_build/tests/manual/ycmd/test_diagnostics_simple.js.map +1 -0
- package/ts_build/tests/manual/ycmd/test_diagnostics_timing.d.ts +1 -0
- package/ts_build/tests/manual/ycmd/test_diagnostics_timing.js +119 -0
- package/ts_build/tests/manual/ycmd/test_diagnostics_timing.js.map +1 -0
- package/ts_build/tests/manual/ycmd/test_discover_commands.d.ts +2 -0
- package/ts_build/tests/manual/ycmd/test_discover_commands.js +243 -0
- package/ts_build/tests/manual/ycmd/test_discover_commands.js.map +1 -0
- package/ts_build/tests/manual/ycmd/test_endpoints.d.ts +2 -0
- package/ts_build/tests/manual/ycmd/test_endpoints.js +120 -0
- package/ts_build/tests/manual/ycmd/test_endpoints.js.map +1 -0
- package/ts_build/tests/manual/ycmd/test_final_comprehensive.d.ts +2 -0
- package/ts_build/tests/manual/ycmd/test_final_comprehensive.js +221 -0
- package/ts_build/tests/manual/ycmd/test_final_comprehensive.js.map +1 -0
- package/ts_build/tests/manual/ycmd/test_final_validation.d.ts +2 -0
- package/ts_build/tests/manual/ycmd/test_final_validation.js +160 -0
- package/ts_build/tests/manual/ycmd/test_final_validation.js.map +1 -0
- package/ts_build/tests/manual/ycmd/test_individual_ycmd_tool.d.ts +2 -0
- package/ts_build/tests/manual/ycmd/test_individual_ycmd_tool.js +37 -0
- package/ts_build/tests/manual/ycmd/test_individual_ycmd_tool.js.map +1 -0
- package/ts_build/tests/manual/ycmd/test_server_manager.d.ts +1 -0
- package/ts_build/tests/manual/ycmd/test_server_manager.js +38 -0
- package/ts_build/tests/manual/ycmd/test_server_manager.js.map +1 -0
- package/ts_build/tests/manual/ycmd/test_simple_debug.d.ts +2 -0
- package/ts_build/tests/manual/ycmd/test_simple_debug.js +99 -0
- package/ts_build/tests/manual/ycmd/test_simple_debug.js.map +1 -0
- package/ts_build/tests/manual/ycmd/test_tsserver_workflow.d.ts +1 -0
- package/ts_build/tests/manual/ycmd/test_tsserver_workflow.js +128 -0
- package/ts_build/tests/manual/ycmd/test_tsserver_workflow.js.map +1 -0
- package/ts_build/tests/manual/ycmd/test_typescript_simple.d.ts +1 -0
- package/ts_build/tests/manual/ycmd/test_typescript_simple.js +66 -0
- package/ts_build/tests/manual/ycmd/test_typescript_simple.js.map +1 -0
- package/ts_build/tests/manual/ycmd/test_typescript_ycmd.d.ts +1 -0
- package/ts_build/tests/manual/ycmd/test_typescript_ycmd.js +105 -0
- package/ts_build/tests/manual/ycmd/test_typescript_ycmd.js.map +1 -0
- package/ts_build/tests/manual/ycmd/test_workspace_config.d.ts +1 -0
- package/ts_build/tests/manual/ycmd/test_workspace_config.js +89 -0
- package/ts_build/tests/manual/ycmd/test_workspace_config.js.map +1 -0
- package/ts_build/tests/manual/ycmd/test_ycmd_auto_start.d.ts +2 -0
- package/ts_build/tests/manual/ycmd/test_ycmd_auto_start.js +130 -0
- package/ts_build/tests/manual/ycmd/test_ycmd_auto_start.js.map +1 -0
- package/ts_build/tests/manual/ycmd/test_ycmd_comprehensive.d.ts +1 -0
- package/ts_build/tests/manual/ycmd/test_ycmd_comprehensive.js +83 -0
- package/ts_build/tests/manual/ycmd/test_ycmd_comprehensive.js.map +1 -0
- package/ts_build/tests/manual/ycmd/test_ycmd_direct.d.ts +2 -0
- package/ts_build/tests/manual/ycmd/test_ycmd_direct.js +149 -0
- package/ts_build/tests/manual/ycmd/test_ycmd_direct.js.map +1 -0
- package/ts_build/tests/manual/ycmd/test_ycmd_experiment.d.ts +15 -0
- package/ts_build/tests/manual/ycmd/test_ycmd_experiment.js +58 -0
- package/ts_build/tests/manual/ycmd/test_ycmd_experiment.js.map +1 -0
- package/ts_build/tests/manual/ycmd/test_ycmd_final.d.ts +2 -0
- package/ts_build/tests/manual/ycmd/test_ycmd_final.js +195 -0
- package/ts_build/tests/manual/ycmd/test_ycmd_final.js.map +1 -0
- package/ts_build/tests/manual/ycmd/test_ycmd_integration.d.ts +3 -0
- package/ts_build/tests/manual/ycmd/test_ycmd_integration.js +110 -0
- package/ts_build/tests/manual/ycmd/test_ycmd_integration.js.map +1 -0
- package/ts_build/tests/manual/ycmd/test_ycmd_simple.d.ts +2 -0
- package/ts_build/tests/manual/ycmd/test_ycmd_simple.js +36 -0
- package/ts_build/tests/manual/ycmd/test_ycmd_simple.js.map +1 -0
- package/ts_build/tests/manual/ycmd/working_simple_test.d.ts +2 -0
- package/ts_build/tests/manual/ycmd/working_simple_test.js +134 -0
- package/ts_build/tests/manual/ycmd/working_simple_test.js.map +1 -0
- package/tsconfig.json +3 -1
|
@@ -0,0 +1,3007 @@
|
|
|
1
|
+
{
|
|
2
|
+
"config": {
|
|
3
|
+
"language": "javascript",
|
|
4
|
+
"maxExercises": 10,
|
|
5
|
+
"model": "qwen/qwen3-coder-30b",
|
|
6
|
+
"provider": "lms",
|
|
7
|
+
"limits": {
|
|
8
|
+
"maxTurns": 30,
|
|
9
|
+
"maxTime": 300,
|
|
10
|
+
"maxCost": 1
|
|
11
|
+
},
|
|
12
|
+
"outputFile": "results.json"
|
|
13
|
+
},
|
|
14
|
+
"exercises": [
|
|
15
|
+
{
|
|
16
|
+
"exerciseName": "accumulate",
|
|
17
|
+
"status": "success",
|
|
18
|
+
"turns": 18,
|
|
19
|
+
"testResult": {
|
|
20
|
+
"passed": 5,
|
|
21
|
+
"failed": 0,
|
|
22
|
+
"total": 5,
|
|
23
|
+
"skipped": 0,
|
|
24
|
+
"success": true,
|
|
25
|
+
"output": "{\"numFailedTestSuites\":0,\"numFailedTests\":0,\"numPassedTestSuites\":1,\"numPassedTests\":5,\"numPendingTestSuites\":0,\"numPendingTests\":0,\"numRuntimeErrorTestSuites\":0,\"numTodoTests\":0,\"numTotalTestSuites\":1,\"numTotalTests\":5,\"openHandles\":[],\"snapshot\":{\"added\":0,\"didUpdate\":false,\"failure\":false,\"filesAdded\":0,\"filesRemoved\":0,\"filesRemovedList\":[],\"filesUnmatched\":0,\"filesUpdated\":0,\"matched\":0,\"total\":0,\"unchecked\":0,\"uncheckedKeysByFile\":[],\"unmatched\":0,\"updated\":0},\"startTime\":1754262755602,\"success\":true,\"testResults\":[{\"assertionResults\":[{\"ancestorTitles\":[\"accumulate()\"],\"duration\":1,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"accumulate() accumulation empty\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"accumulation empty\"},{\"ancestorTitles\":[\"accumulate()\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"accumulate() accumulate squares\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"accumulate squares\"},{\"ancestorTitles\":[\"accumulate()\"],\"duration\":1,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"accumulate() accumulate upcases\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"accumulate upcases\"},{\"ancestorTitles\":[\"accumulate()\"],\"duration\":1,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"accumulate() accumulate reversed strings\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"accumulate reversed strings\"},{\"ancestorTitles\":[\"accumulate()\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"accumulate() accumulate recursively\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"accumulate recursively\"}],\"endTime\":1754262755729,\"message\":\"\",\"name\":\"/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/accumulate/accumulate.spec.js\",\"startTime\":1754262755621,\"status\":\"passed\",\"summary\":\"\"}],\"wasInterrupted\":false}\n",
|
|
26
|
+
"details": {
|
|
27
|
+
"numFailedTestSuites": 0,
|
|
28
|
+
"numFailedTests": 0,
|
|
29
|
+
"numPassedTestSuites": 1,
|
|
30
|
+
"numPassedTests": 5,
|
|
31
|
+
"numPendingTestSuites": 0,
|
|
32
|
+
"numPendingTests": 0,
|
|
33
|
+
"numRuntimeErrorTestSuites": 0,
|
|
34
|
+
"numTodoTests": 0,
|
|
35
|
+
"numTotalTestSuites": 1,
|
|
36
|
+
"numTotalTests": 5,
|
|
37
|
+
"openHandles": [],
|
|
38
|
+
"snapshot": {
|
|
39
|
+
"added": 0,
|
|
40
|
+
"didUpdate": false,
|
|
41
|
+
"failure": false,
|
|
42
|
+
"filesAdded": 0,
|
|
43
|
+
"filesRemoved": 0,
|
|
44
|
+
"filesRemovedList": [],
|
|
45
|
+
"filesUnmatched": 0,
|
|
46
|
+
"filesUpdated": 0,
|
|
47
|
+
"matched": 0,
|
|
48
|
+
"total": 0,
|
|
49
|
+
"unchecked": 0,
|
|
50
|
+
"uncheckedKeysByFile": [],
|
|
51
|
+
"unmatched": 0,
|
|
52
|
+
"updated": 0
|
|
53
|
+
},
|
|
54
|
+
"startTime": 1754262755602,
|
|
55
|
+
"success": true,
|
|
56
|
+
"testResults": [
|
|
57
|
+
{
|
|
58
|
+
"assertionResults": [
|
|
59
|
+
{
|
|
60
|
+
"ancestorTitles": [
|
|
61
|
+
"accumulate()"
|
|
62
|
+
],
|
|
63
|
+
"duration": 1,
|
|
64
|
+
"failureDetails": [],
|
|
65
|
+
"failureMessages": [],
|
|
66
|
+
"fullName": "accumulate() accumulation empty",
|
|
67
|
+
"invocations": 1,
|
|
68
|
+
"location": null,
|
|
69
|
+
"numPassingAsserts": 1,
|
|
70
|
+
"retryReasons": [],
|
|
71
|
+
"status": "passed",
|
|
72
|
+
"title": "accumulation empty"
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"ancestorTitles": [
|
|
76
|
+
"accumulate()"
|
|
77
|
+
],
|
|
78
|
+
"duration": 0,
|
|
79
|
+
"failureDetails": [],
|
|
80
|
+
"failureMessages": [],
|
|
81
|
+
"fullName": "accumulate() accumulate squares",
|
|
82
|
+
"invocations": 1,
|
|
83
|
+
"location": null,
|
|
84
|
+
"numPassingAsserts": 1,
|
|
85
|
+
"retryReasons": [],
|
|
86
|
+
"status": "passed",
|
|
87
|
+
"title": "accumulate squares"
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"ancestorTitles": [
|
|
91
|
+
"accumulate()"
|
|
92
|
+
],
|
|
93
|
+
"duration": 1,
|
|
94
|
+
"failureDetails": [],
|
|
95
|
+
"failureMessages": [],
|
|
96
|
+
"fullName": "accumulate() accumulate upcases",
|
|
97
|
+
"invocations": 1,
|
|
98
|
+
"location": null,
|
|
99
|
+
"numPassingAsserts": 1,
|
|
100
|
+
"retryReasons": [],
|
|
101
|
+
"status": "passed",
|
|
102
|
+
"title": "accumulate upcases"
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"ancestorTitles": [
|
|
106
|
+
"accumulate()"
|
|
107
|
+
],
|
|
108
|
+
"duration": 1,
|
|
109
|
+
"failureDetails": [],
|
|
110
|
+
"failureMessages": [],
|
|
111
|
+
"fullName": "accumulate() accumulate reversed strings",
|
|
112
|
+
"invocations": 1,
|
|
113
|
+
"location": null,
|
|
114
|
+
"numPassingAsserts": 1,
|
|
115
|
+
"retryReasons": [],
|
|
116
|
+
"status": "passed",
|
|
117
|
+
"title": "accumulate reversed strings"
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"ancestorTitles": [
|
|
121
|
+
"accumulate()"
|
|
122
|
+
],
|
|
123
|
+
"duration": 0,
|
|
124
|
+
"failureDetails": [],
|
|
125
|
+
"failureMessages": [],
|
|
126
|
+
"fullName": "accumulate() accumulate recursively",
|
|
127
|
+
"invocations": 1,
|
|
128
|
+
"location": null,
|
|
129
|
+
"numPassingAsserts": 1,
|
|
130
|
+
"retryReasons": [],
|
|
131
|
+
"status": "passed",
|
|
132
|
+
"title": "accumulate recursively"
|
|
133
|
+
}
|
|
134
|
+
],
|
|
135
|
+
"endTime": 1754262755729,
|
|
136
|
+
"message": "",
|
|
137
|
+
"name": "/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/accumulate/accumulate.spec.js",
|
|
138
|
+
"startTime": 1754262755621,
|
|
139
|
+
"status": "passed",
|
|
140
|
+
"summary": ""
|
|
141
|
+
}
|
|
142
|
+
],
|
|
143
|
+
"wasInterrupted": false
|
|
144
|
+
}
|
|
145
|
+
},
|
|
146
|
+
"timeElapsed": 202.048,
|
|
147
|
+
"cost": 0,
|
|
148
|
+
"startTime": "2025-08-03T23:09:13.697Z",
|
|
149
|
+
"endTime": "2025-08-03T23:12:35.745Z",
|
|
150
|
+
"finalOutput": "I have successfully implemented the `accumulate` function for the JavaScript exercise. The solution:\n\n1. **Implementation**: Created an `accumulate` function in `accumulate.js` that takes a collection and operation parameters\n2. **Core Logic**: Uses a traditional for loop to iterate through each element, applies the operation function to each element, and builds a new result array\n3. **Testing**: All 5 test cases now pass including edge cases like empty collections and recursive operations\n\nThe implementation avoids using built-in map/collect functions as required, instead using basic JavaScript constructs. It correctly transforms collections according to the provided operation function - for example, transforming [1,2,3] with square operation to [1,4,9].\n\nAll tests are passing and the solution meets all requirements from the exercise description."
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
"exerciseName": "acronym",
|
|
154
|
+
"status": "success",
|
|
155
|
+
"turns": 30,
|
|
156
|
+
"testResult": {
|
|
157
|
+
"passed": 0,
|
|
158
|
+
"failed": 1,
|
|
159
|
+
"total": 9,
|
|
160
|
+
"skipped": 8,
|
|
161
|
+
"success": false,
|
|
162
|
+
"output": "{\"numFailedTestSuites\":1,\"numFailedTests\":1,\"numPassedTestSuites\":0,\"numPassedTests\":0,\"numPendingTestSuites\":0,\"numPendingTests\":8,\"numRuntimeErrorTestSuites\":0,\"numTodoTests\":0,\"numTotalTestSuites\":1,\"numTotalTests\":9,\"openHandles\":[],\"snapshot\":{\"added\":0,\"didUpdate\":false,\"failure\":false,\"filesAdded\":0,\"filesRemoved\":0,\"filesRemovedList\":[],\"filesUnmatched\":0,\"filesUpdated\":0,\"matched\":0,\"total\":0,\"unchecked\":0,\"uncheckedKeysByFile\":[],\"unmatched\":0,\"updated\":0},\"startTime\":1754263015376,\"success\":false,\"testResults\":[{\"assertionResults\":[{\"ancestorTitles\":[\"Acronyms are produced from\"],\"duration\":1,\"failureDetails\":[{}],\"failureMessages\":[\"TypeError: (0 , _acronym.parse) is not a function\\n at Object.<anonymous> (/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/acronym/acronym.spec.js:7:17)\\n at Promise.then.completed (/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/acronym/node_modules/jest-circus/build/utils.js:298:28)\\n at new Promise (<anonymous>)\\n at callAsyncCircusFn (/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/acronym/node_modules/jest-circus/build/utils.js:231:10)\\n at _callCircusTest (/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/acronym/node_modules/jest-circus/build/run.js:316:40)\\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\\n at _runTest (/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/acronym/node_modules/jest-circus/build/run.js:252:3)\\n at _runTestsForDescribeBlock (/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/acronym/node_modules/jest-circus/build/run.js:126:9)\\n at _runTestsForDescribeBlock (/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/acronym/node_modules/jest-circus/build/run.js:121:9)\\n at run (/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/acronym/node_modules/jest-circus/build/run.js:71:3)\\n at runAndTransformResultsToJestFormat (/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/acronym/node_modules/jest-circus/build/legacy-code-todo-rewrite/jestAdapterInit.js:122:21)\\n at jestAdapter (/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/acronym/node_modules/jest-circus/build/legacy-code-todo-rewrite/jestAdapter.js:79:19)\\n at runTestInternal (/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/acronym/node_modules/jest-runner/build/runTest.js:367:16)\\n at runTest (/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/acronym/node_modules/jest-runner/build/runTest.js:444:34)\"],\"fullName\":\"Acronyms are produced from title cased phrases\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"failed\",\"title\":\"title cased phrases\"},{\"ancestorTitles\":[\"Acronyms are produced from\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Acronyms are produced from other title cased phrases\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"other title cased phrases\"},{\"ancestorTitles\":[\"Acronyms are produced from\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Acronyms are produced from phrases with punctuation\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"phrases with punctuation\"},{\"ancestorTitles\":[\"Acronyms are produced from\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Acronyms are produced from phrases with all uppercase words\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"phrases with all uppercase words\"},{\"ancestorTitles\":[\"Acronyms are produced from\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Acronyms are produced from phrases with punctuation without whitespace\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"phrases with punctuation without whitespace\"},{\"ancestorTitles\":[\"Acronyms are produced from\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Acronyms are produced from long phrases\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"long phrases\"},{\"ancestorTitles\":[\"Acronyms are produced from\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Acronyms are produced from phrases with consecutive delimiters\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"phrases with consecutive delimiters\"},{\"ancestorTitles\":[\"Acronyms are produced from\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Acronyms are produced from phrases with apostrophes\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"phrases with apostrophes\"},{\"ancestorTitles\":[\"Acronyms are produced from\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Acronyms are produced from phrases with underscore emphasis\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"phrases with underscore emphasis\"}],\"endTime\":1754263015488,\"message\":\" ● Acronyms are produced from › title cased phrases\\n\\n TypeError: (0 , _acronym.parse) is not a function\\n\\n 5 | // basic\\n 6 | test('title cased phrases', () => {\\n > 7 | expect(parse('Portable Network Graphics')).toEqual('PNG');\\n | ^\\n 8 | });\\n 9 |\\n 10 | // lowercase words\\n\\n at Object.<anonymous> (acronym.spec.js:7:17)\\n\",\"name\":\"/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/acronym/acronym.spec.js\",\"startTime\":1754263015394,\"status\":\"failed\",\"summary\":\"\"}],\"wasInterrupted\":false}\n",
|
|
163
|
+
"details": {
|
|
164
|
+
"numFailedTestSuites": 1,
|
|
165
|
+
"numFailedTests": 1,
|
|
166
|
+
"numPassedTestSuites": 0,
|
|
167
|
+
"numPassedTests": 0,
|
|
168
|
+
"numPendingTestSuites": 0,
|
|
169
|
+
"numPendingTests": 8,
|
|
170
|
+
"numRuntimeErrorTestSuites": 0,
|
|
171
|
+
"numTodoTests": 0,
|
|
172
|
+
"numTotalTestSuites": 1,
|
|
173
|
+
"numTotalTests": 9,
|
|
174
|
+
"openHandles": [],
|
|
175
|
+
"snapshot": {
|
|
176
|
+
"added": 0,
|
|
177
|
+
"didUpdate": false,
|
|
178
|
+
"failure": false,
|
|
179
|
+
"filesAdded": 0,
|
|
180
|
+
"filesRemoved": 0,
|
|
181
|
+
"filesRemovedList": [],
|
|
182
|
+
"filesUnmatched": 0,
|
|
183
|
+
"filesUpdated": 0,
|
|
184
|
+
"matched": 0,
|
|
185
|
+
"total": 0,
|
|
186
|
+
"unchecked": 0,
|
|
187
|
+
"uncheckedKeysByFile": [],
|
|
188
|
+
"unmatched": 0,
|
|
189
|
+
"updated": 0
|
|
190
|
+
},
|
|
191
|
+
"startTime": 1754263015376,
|
|
192
|
+
"success": false,
|
|
193
|
+
"testResults": [
|
|
194
|
+
{
|
|
195
|
+
"assertionResults": [
|
|
196
|
+
{
|
|
197
|
+
"ancestorTitles": [
|
|
198
|
+
"Acronyms are produced from"
|
|
199
|
+
],
|
|
200
|
+
"duration": 1,
|
|
201
|
+
"failureDetails": [
|
|
202
|
+
{}
|
|
203
|
+
],
|
|
204
|
+
"failureMessages": [
|
|
205
|
+
"TypeError: (0 , _acronym.parse) is not a function\n at Object.<anonymous> (/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/acronym/acronym.spec.js:7:17)\n at Promise.then.completed (/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/acronym/node_modules/jest-circus/build/utils.js:298:28)\n at new Promise (<anonymous>)\n at callAsyncCircusFn (/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/acronym/node_modules/jest-circus/build/utils.js:231:10)\n at _callCircusTest (/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/acronym/node_modules/jest-circus/build/run.js:316:40)\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at _runTest (/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/acronym/node_modules/jest-circus/build/run.js:252:3)\n at _runTestsForDescribeBlock (/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/acronym/node_modules/jest-circus/build/run.js:126:9)\n at _runTestsForDescribeBlock (/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/acronym/node_modules/jest-circus/build/run.js:121:9)\n at run (/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/acronym/node_modules/jest-circus/build/run.js:71:3)\n at runAndTransformResultsToJestFormat (/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/acronym/node_modules/jest-circus/build/legacy-code-todo-rewrite/jestAdapterInit.js:122:21)\n at jestAdapter (/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/acronym/node_modules/jest-circus/build/legacy-code-todo-rewrite/jestAdapter.js:79:19)\n at runTestInternal (/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/acronym/node_modules/jest-runner/build/runTest.js:367:16)\n at runTest (/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/acronym/node_modules/jest-runner/build/runTest.js:444:34)"
|
|
206
|
+
],
|
|
207
|
+
"fullName": "Acronyms are produced from title cased phrases",
|
|
208
|
+
"invocations": 1,
|
|
209
|
+
"location": null,
|
|
210
|
+
"numPassingAsserts": 0,
|
|
211
|
+
"retryReasons": [],
|
|
212
|
+
"status": "failed",
|
|
213
|
+
"title": "title cased phrases"
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
"ancestorTitles": [
|
|
217
|
+
"Acronyms are produced from"
|
|
218
|
+
],
|
|
219
|
+
"duration": null,
|
|
220
|
+
"failureDetails": [],
|
|
221
|
+
"failureMessages": [],
|
|
222
|
+
"fullName": "Acronyms are produced from other title cased phrases",
|
|
223
|
+
"invocations": 1,
|
|
224
|
+
"location": null,
|
|
225
|
+
"numPassingAsserts": 0,
|
|
226
|
+
"retryReasons": [],
|
|
227
|
+
"status": "pending",
|
|
228
|
+
"title": "other title cased phrases"
|
|
229
|
+
},
|
|
230
|
+
{
|
|
231
|
+
"ancestorTitles": [
|
|
232
|
+
"Acronyms are produced from"
|
|
233
|
+
],
|
|
234
|
+
"duration": null,
|
|
235
|
+
"failureDetails": [],
|
|
236
|
+
"failureMessages": [],
|
|
237
|
+
"fullName": "Acronyms are produced from phrases with punctuation",
|
|
238
|
+
"invocations": 1,
|
|
239
|
+
"location": null,
|
|
240
|
+
"numPassingAsserts": 0,
|
|
241
|
+
"retryReasons": [],
|
|
242
|
+
"status": "pending",
|
|
243
|
+
"title": "phrases with punctuation"
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
"ancestorTitles": [
|
|
247
|
+
"Acronyms are produced from"
|
|
248
|
+
],
|
|
249
|
+
"duration": null,
|
|
250
|
+
"failureDetails": [],
|
|
251
|
+
"failureMessages": [],
|
|
252
|
+
"fullName": "Acronyms are produced from phrases with all uppercase words",
|
|
253
|
+
"invocations": 1,
|
|
254
|
+
"location": null,
|
|
255
|
+
"numPassingAsserts": 0,
|
|
256
|
+
"retryReasons": [],
|
|
257
|
+
"status": "pending",
|
|
258
|
+
"title": "phrases with all uppercase words"
|
|
259
|
+
},
|
|
260
|
+
{
|
|
261
|
+
"ancestorTitles": [
|
|
262
|
+
"Acronyms are produced from"
|
|
263
|
+
],
|
|
264
|
+
"duration": null,
|
|
265
|
+
"failureDetails": [],
|
|
266
|
+
"failureMessages": [],
|
|
267
|
+
"fullName": "Acronyms are produced from phrases with punctuation without whitespace",
|
|
268
|
+
"invocations": 1,
|
|
269
|
+
"location": null,
|
|
270
|
+
"numPassingAsserts": 0,
|
|
271
|
+
"retryReasons": [],
|
|
272
|
+
"status": "pending",
|
|
273
|
+
"title": "phrases with punctuation without whitespace"
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
"ancestorTitles": [
|
|
277
|
+
"Acronyms are produced from"
|
|
278
|
+
],
|
|
279
|
+
"duration": null,
|
|
280
|
+
"failureDetails": [],
|
|
281
|
+
"failureMessages": [],
|
|
282
|
+
"fullName": "Acronyms are produced from long phrases",
|
|
283
|
+
"invocations": 1,
|
|
284
|
+
"location": null,
|
|
285
|
+
"numPassingAsserts": 0,
|
|
286
|
+
"retryReasons": [],
|
|
287
|
+
"status": "pending",
|
|
288
|
+
"title": "long phrases"
|
|
289
|
+
},
|
|
290
|
+
{
|
|
291
|
+
"ancestorTitles": [
|
|
292
|
+
"Acronyms are produced from"
|
|
293
|
+
],
|
|
294
|
+
"duration": null,
|
|
295
|
+
"failureDetails": [],
|
|
296
|
+
"failureMessages": [],
|
|
297
|
+
"fullName": "Acronyms are produced from phrases with consecutive delimiters",
|
|
298
|
+
"invocations": 1,
|
|
299
|
+
"location": null,
|
|
300
|
+
"numPassingAsserts": 0,
|
|
301
|
+
"retryReasons": [],
|
|
302
|
+
"status": "pending",
|
|
303
|
+
"title": "phrases with consecutive delimiters"
|
|
304
|
+
},
|
|
305
|
+
{
|
|
306
|
+
"ancestorTitles": [
|
|
307
|
+
"Acronyms are produced from"
|
|
308
|
+
],
|
|
309
|
+
"duration": null,
|
|
310
|
+
"failureDetails": [],
|
|
311
|
+
"failureMessages": [],
|
|
312
|
+
"fullName": "Acronyms are produced from phrases with apostrophes",
|
|
313
|
+
"invocations": 1,
|
|
314
|
+
"location": null,
|
|
315
|
+
"numPassingAsserts": 0,
|
|
316
|
+
"retryReasons": [],
|
|
317
|
+
"status": "pending",
|
|
318
|
+
"title": "phrases with apostrophes"
|
|
319
|
+
},
|
|
320
|
+
{
|
|
321
|
+
"ancestorTitles": [
|
|
322
|
+
"Acronyms are produced from"
|
|
323
|
+
],
|
|
324
|
+
"duration": null,
|
|
325
|
+
"failureDetails": [],
|
|
326
|
+
"failureMessages": [],
|
|
327
|
+
"fullName": "Acronyms are produced from phrases with underscore emphasis",
|
|
328
|
+
"invocations": 1,
|
|
329
|
+
"location": null,
|
|
330
|
+
"numPassingAsserts": 0,
|
|
331
|
+
"retryReasons": [],
|
|
332
|
+
"status": "pending",
|
|
333
|
+
"title": "phrases with underscore emphasis"
|
|
334
|
+
}
|
|
335
|
+
],
|
|
336
|
+
"endTime": 1754263015488,
|
|
337
|
+
"message": " ● Acronyms are produced from › title cased phrases\n\n TypeError: (0 , _acronym.parse) is not a function\n\n 5 | // basic\n 6 | test('title cased phrases', () => {\n > 7 | expect(parse('Portable Network Graphics')).toEqual('PNG');\n | ^\n 8 | });\n 9 |\n 10 | // lowercase words\n\n at Object.<anonymous> (acronym.spec.js:7:17)\n",
|
|
338
|
+
"name": "/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/acronym/acronym.spec.js",
|
|
339
|
+
"startTime": 1754263015394,
|
|
340
|
+
"status": "failed",
|
|
341
|
+
"summary": ""
|
|
342
|
+
}
|
|
343
|
+
],
|
|
344
|
+
"wasInterrupted": false
|
|
345
|
+
}
|
|
346
|
+
},
|
|
347
|
+
"timeElapsed": 259.727,
|
|
348
|
+
"cost": 0,
|
|
349
|
+
"startTime": "2025-08-03T23:12:35.774Z",
|
|
350
|
+
"endTime": "2025-08-03T23:16:55.501Z",
|
|
351
|
+
"finalOutput": "Task terminated due to limits reached. Turn: 30/30, Cost: $0.0000/$1.0000, Runtime: 259039ms/300000ms"
|
|
352
|
+
},
|
|
353
|
+
{
|
|
354
|
+
"exerciseName": "affine-cipher",
|
|
355
|
+
"status": "success",
|
|
356
|
+
"turns": 11,
|
|
357
|
+
"testResult": {
|
|
358
|
+
"passed": 16,
|
|
359
|
+
"failed": 0,
|
|
360
|
+
"total": 16,
|
|
361
|
+
"skipped": 0,
|
|
362
|
+
"success": true,
|
|
363
|
+
"output": "{\"numFailedTestSuites\":0,\"numFailedTests\":0,\"numPassedTestSuites\":1,\"numPassedTests\":16,\"numPendingTestSuites\":0,\"numPendingTests\":0,\"numRuntimeErrorTestSuites\":0,\"numTodoTests\":0,\"numTotalTestSuites\":1,\"numTotalTests\":16,\"openHandles\":[],\"snapshot\":{\"added\":0,\"didUpdate\":false,\"failure\":false,\"filesAdded\":0,\"filesRemoved\":0,\"filesRemovedList\":[],\"filesUnmatched\":0,\"filesUpdated\":0,\"matched\":0,\"total\":0,\"unchecked\":0,\"uncheckedKeysByFile\":[],\"unmatched\":0,\"updated\":0},\"startTime\":1754263380267,\"success\":true,\"testResults\":[{\"assertionResults\":[{\"ancestorTitles\":[\"Affine cipher\",\"encode\"],\"duration\":1,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Affine cipher encode encode yes\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"encode yes\"},{\"ancestorTitles\":[\"Affine cipher\",\"encode\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Affine cipher encode encode no\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"encode no\"},{\"ancestorTitles\":[\"Affine cipher\",\"encode\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Affine cipher encode encode OMG\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"encode OMG\"},{\"ancestorTitles\":[\"Affine cipher\",\"encode\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Affine cipher encode encode O M G\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"encode O M G\"},{\"ancestorTitles\":[\"Affine cipher\",\"encode\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Affine cipher encode encode mindblowingly\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"encode mindblowingly\"},{\"ancestorTitles\":[\"Affine cipher\",\"encode\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Affine cipher encode encode numbers\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"encode numbers\"},{\"ancestorTitles\":[\"Affine cipher\",\"encode\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Affine cipher encode encode deep thought\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"encode deep thought\"},{\"ancestorTitles\":[\"Affine cipher\",\"encode\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Affine cipher encode encode all the letters\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"encode all the letters\"},{\"ancestorTitles\":[\"Affine cipher\",\"encode\"],\"duration\":3,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Affine cipher encode encode with a not coprime to m\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"encode with a not coprime to m\"},{\"ancestorTitles\":[\"Affine cipher\",\"decode\"],\"duration\":1,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Affine cipher decode decode exercism\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"decode exercism\"},{\"ancestorTitles\":[\"Affine cipher\",\"decode\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Affine cipher decode decode a sentence\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"decode a sentence\"},{\"ancestorTitles\":[\"Affine cipher\",\"decode\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Affine cipher decode decode numbers\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"decode numbers\"},{\"ancestorTitles\":[\"Affine cipher\",\"decode\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Affine cipher decode decode all the letters\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"decode all the letters\"},{\"ancestorTitles\":[\"Affine cipher\",\"decode\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Affine cipher decode decode with no spaces in input\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"decode with no spaces in input\"},{\"ancestorTitles\":[\"Affine cipher\",\"decode\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Affine cipher decode decode with too many spaces\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"decode with too many spaces\"},{\"ancestorTitles\":[\"Affine cipher\",\"decode\"],\"duration\":1,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Affine cipher decode decode with a not coprime to m\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"decode with a not coprime to m\"}],\"endTime\":1754263380564,\"message\":\"\",\"name\":\"/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/affine-cipher/affine-cipher.spec.js\",\"startTime\":1754263380286,\"status\":\"passed\",\"summary\":\"\"}],\"wasInterrupted\":false}\n",
|
|
364
|
+
"details": {
|
|
365
|
+
"numFailedTestSuites": 0,
|
|
366
|
+
"numFailedTests": 0,
|
|
367
|
+
"numPassedTestSuites": 1,
|
|
368
|
+
"numPassedTests": 16,
|
|
369
|
+
"numPendingTestSuites": 0,
|
|
370
|
+
"numPendingTests": 0,
|
|
371
|
+
"numRuntimeErrorTestSuites": 0,
|
|
372
|
+
"numTodoTests": 0,
|
|
373
|
+
"numTotalTestSuites": 1,
|
|
374
|
+
"numTotalTests": 16,
|
|
375
|
+
"openHandles": [],
|
|
376
|
+
"snapshot": {
|
|
377
|
+
"added": 0,
|
|
378
|
+
"didUpdate": false,
|
|
379
|
+
"failure": false,
|
|
380
|
+
"filesAdded": 0,
|
|
381
|
+
"filesRemoved": 0,
|
|
382
|
+
"filesRemovedList": [],
|
|
383
|
+
"filesUnmatched": 0,
|
|
384
|
+
"filesUpdated": 0,
|
|
385
|
+
"matched": 0,
|
|
386
|
+
"total": 0,
|
|
387
|
+
"unchecked": 0,
|
|
388
|
+
"uncheckedKeysByFile": [],
|
|
389
|
+
"unmatched": 0,
|
|
390
|
+
"updated": 0
|
|
391
|
+
},
|
|
392
|
+
"startTime": 1754263380267,
|
|
393
|
+
"success": true,
|
|
394
|
+
"testResults": [
|
|
395
|
+
{
|
|
396
|
+
"assertionResults": [
|
|
397
|
+
{
|
|
398
|
+
"ancestorTitles": [
|
|
399
|
+
"Affine cipher",
|
|
400
|
+
"encode"
|
|
401
|
+
],
|
|
402
|
+
"duration": 1,
|
|
403
|
+
"failureDetails": [],
|
|
404
|
+
"failureMessages": [],
|
|
405
|
+
"fullName": "Affine cipher encode encode yes",
|
|
406
|
+
"invocations": 1,
|
|
407
|
+
"location": null,
|
|
408
|
+
"numPassingAsserts": 1,
|
|
409
|
+
"retryReasons": [],
|
|
410
|
+
"status": "passed",
|
|
411
|
+
"title": "encode yes"
|
|
412
|
+
},
|
|
413
|
+
{
|
|
414
|
+
"ancestorTitles": [
|
|
415
|
+
"Affine cipher",
|
|
416
|
+
"encode"
|
|
417
|
+
],
|
|
418
|
+
"duration": 0,
|
|
419
|
+
"failureDetails": [],
|
|
420
|
+
"failureMessages": [],
|
|
421
|
+
"fullName": "Affine cipher encode encode no",
|
|
422
|
+
"invocations": 1,
|
|
423
|
+
"location": null,
|
|
424
|
+
"numPassingAsserts": 1,
|
|
425
|
+
"retryReasons": [],
|
|
426
|
+
"status": "passed",
|
|
427
|
+
"title": "encode no"
|
|
428
|
+
},
|
|
429
|
+
{
|
|
430
|
+
"ancestorTitles": [
|
|
431
|
+
"Affine cipher",
|
|
432
|
+
"encode"
|
|
433
|
+
],
|
|
434
|
+
"duration": 0,
|
|
435
|
+
"failureDetails": [],
|
|
436
|
+
"failureMessages": [],
|
|
437
|
+
"fullName": "Affine cipher encode encode OMG",
|
|
438
|
+
"invocations": 1,
|
|
439
|
+
"location": null,
|
|
440
|
+
"numPassingAsserts": 1,
|
|
441
|
+
"retryReasons": [],
|
|
442
|
+
"status": "passed",
|
|
443
|
+
"title": "encode OMG"
|
|
444
|
+
},
|
|
445
|
+
{
|
|
446
|
+
"ancestorTitles": [
|
|
447
|
+
"Affine cipher",
|
|
448
|
+
"encode"
|
|
449
|
+
],
|
|
450
|
+
"duration": 0,
|
|
451
|
+
"failureDetails": [],
|
|
452
|
+
"failureMessages": [],
|
|
453
|
+
"fullName": "Affine cipher encode encode O M G",
|
|
454
|
+
"invocations": 1,
|
|
455
|
+
"location": null,
|
|
456
|
+
"numPassingAsserts": 1,
|
|
457
|
+
"retryReasons": [],
|
|
458
|
+
"status": "passed",
|
|
459
|
+
"title": "encode O M G"
|
|
460
|
+
},
|
|
461
|
+
{
|
|
462
|
+
"ancestorTitles": [
|
|
463
|
+
"Affine cipher",
|
|
464
|
+
"encode"
|
|
465
|
+
],
|
|
466
|
+
"duration": 0,
|
|
467
|
+
"failureDetails": [],
|
|
468
|
+
"failureMessages": [],
|
|
469
|
+
"fullName": "Affine cipher encode encode mindblowingly",
|
|
470
|
+
"invocations": 1,
|
|
471
|
+
"location": null,
|
|
472
|
+
"numPassingAsserts": 1,
|
|
473
|
+
"retryReasons": [],
|
|
474
|
+
"status": "passed",
|
|
475
|
+
"title": "encode mindblowingly"
|
|
476
|
+
},
|
|
477
|
+
{
|
|
478
|
+
"ancestorTitles": [
|
|
479
|
+
"Affine cipher",
|
|
480
|
+
"encode"
|
|
481
|
+
],
|
|
482
|
+
"duration": 0,
|
|
483
|
+
"failureDetails": [],
|
|
484
|
+
"failureMessages": [],
|
|
485
|
+
"fullName": "Affine cipher encode encode numbers",
|
|
486
|
+
"invocations": 1,
|
|
487
|
+
"location": null,
|
|
488
|
+
"numPassingAsserts": 1,
|
|
489
|
+
"retryReasons": [],
|
|
490
|
+
"status": "passed",
|
|
491
|
+
"title": "encode numbers"
|
|
492
|
+
},
|
|
493
|
+
{
|
|
494
|
+
"ancestorTitles": [
|
|
495
|
+
"Affine cipher",
|
|
496
|
+
"encode"
|
|
497
|
+
],
|
|
498
|
+
"duration": 0,
|
|
499
|
+
"failureDetails": [],
|
|
500
|
+
"failureMessages": [],
|
|
501
|
+
"fullName": "Affine cipher encode encode deep thought",
|
|
502
|
+
"invocations": 1,
|
|
503
|
+
"location": null,
|
|
504
|
+
"numPassingAsserts": 1,
|
|
505
|
+
"retryReasons": [],
|
|
506
|
+
"status": "passed",
|
|
507
|
+
"title": "encode deep thought"
|
|
508
|
+
},
|
|
509
|
+
{
|
|
510
|
+
"ancestorTitles": [
|
|
511
|
+
"Affine cipher",
|
|
512
|
+
"encode"
|
|
513
|
+
],
|
|
514
|
+
"duration": 0,
|
|
515
|
+
"failureDetails": [],
|
|
516
|
+
"failureMessages": [],
|
|
517
|
+
"fullName": "Affine cipher encode encode all the letters",
|
|
518
|
+
"invocations": 1,
|
|
519
|
+
"location": null,
|
|
520
|
+
"numPassingAsserts": 1,
|
|
521
|
+
"retryReasons": [],
|
|
522
|
+
"status": "passed",
|
|
523
|
+
"title": "encode all the letters"
|
|
524
|
+
},
|
|
525
|
+
{
|
|
526
|
+
"ancestorTitles": [
|
|
527
|
+
"Affine cipher",
|
|
528
|
+
"encode"
|
|
529
|
+
],
|
|
530
|
+
"duration": 3,
|
|
531
|
+
"failureDetails": [],
|
|
532
|
+
"failureMessages": [],
|
|
533
|
+
"fullName": "Affine cipher encode encode with a not coprime to m",
|
|
534
|
+
"invocations": 1,
|
|
535
|
+
"location": null,
|
|
536
|
+
"numPassingAsserts": 1,
|
|
537
|
+
"retryReasons": [],
|
|
538
|
+
"status": "passed",
|
|
539
|
+
"title": "encode with a not coprime to m"
|
|
540
|
+
},
|
|
541
|
+
{
|
|
542
|
+
"ancestorTitles": [
|
|
543
|
+
"Affine cipher",
|
|
544
|
+
"decode"
|
|
545
|
+
],
|
|
546
|
+
"duration": 1,
|
|
547
|
+
"failureDetails": [],
|
|
548
|
+
"failureMessages": [],
|
|
549
|
+
"fullName": "Affine cipher decode decode exercism",
|
|
550
|
+
"invocations": 1,
|
|
551
|
+
"location": null,
|
|
552
|
+
"numPassingAsserts": 1,
|
|
553
|
+
"retryReasons": [],
|
|
554
|
+
"status": "passed",
|
|
555
|
+
"title": "decode exercism"
|
|
556
|
+
},
|
|
557
|
+
{
|
|
558
|
+
"ancestorTitles": [
|
|
559
|
+
"Affine cipher",
|
|
560
|
+
"decode"
|
|
561
|
+
],
|
|
562
|
+
"duration": 0,
|
|
563
|
+
"failureDetails": [],
|
|
564
|
+
"failureMessages": [],
|
|
565
|
+
"fullName": "Affine cipher decode decode a sentence",
|
|
566
|
+
"invocations": 1,
|
|
567
|
+
"location": null,
|
|
568
|
+
"numPassingAsserts": 1,
|
|
569
|
+
"retryReasons": [],
|
|
570
|
+
"status": "passed",
|
|
571
|
+
"title": "decode a sentence"
|
|
572
|
+
},
|
|
573
|
+
{
|
|
574
|
+
"ancestorTitles": [
|
|
575
|
+
"Affine cipher",
|
|
576
|
+
"decode"
|
|
577
|
+
],
|
|
578
|
+
"duration": 0,
|
|
579
|
+
"failureDetails": [],
|
|
580
|
+
"failureMessages": [],
|
|
581
|
+
"fullName": "Affine cipher decode decode numbers",
|
|
582
|
+
"invocations": 1,
|
|
583
|
+
"location": null,
|
|
584
|
+
"numPassingAsserts": 1,
|
|
585
|
+
"retryReasons": [],
|
|
586
|
+
"status": "passed",
|
|
587
|
+
"title": "decode numbers"
|
|
588
|
+
},
|
|
589
|
+
{
|
|
590
|
+
"ancestorTitles": [
|
|
591
|
+
"Affine cipher",
|
|
592
|
+
"decode"
|
|
593
|
+
],
|
|
594
|
+
"duration": 0,
|
|
595
|
+
"failureDetails": [],
|
|
596
|
+
"failureMessages": [],
|
|
597
|
+
"fullName": "Affine cipher decode decode all the letters",
|
|
598
|
+
"invocations": 1,
|
|
599
|
+
"location": null,
|
|
600
|
+
"numPassingAsserts": 1,
|
|
601
|
+
"retryReasons": [],
|
|
602
|
+
"status": "passed",
|
|
603
|
+
"title": "decode all the letters"
|
|
604
|
+
},
|
|
605
|
+
{
|
|
606
|
+
"ancestorTitles": [
|
|
607
|
+
"Affine cipher",
|
|
608
|
+
"decode"
|
|
609
|
+
],
|
|
610
|
+
"duration": 0,
|
|
611
|
+
"failureDetails": [],
|
|
612
|
+
"failureMessages": [],
|
|
613
|
+
"fullName": "Affine cipher decode decode with no spaces in input",
|
|
614
|
+
"invocations": 1,
|
|
615
|
+
"location": null,
|
|
616
|
+
"numPassingAsserts": 1,
|
|
617
|
+
"retryReasons": [],
|
|
618
|
+
"status": "passed",
|
|
619
|
+
"title": "decode with no spaces in input"
|
|
620
|
+
},
|
|
621
|
+
{
|
|
622
|
+
"ancestorTitles": [
|
|
623
|
+
"Affine cipher",
|
|
624
|
+
"decode"
|
|
625
|
+
],
|
|
626
|
+
"duration": 0,
|
|
627
|
+
"failureDetails": [],
|
|
628
|
+
"failureMessages": [],
|
|
629
|
+
"fullName": "Affine cipher decode decode with too many spaces",
|
|
630
|
+
"invocations": 1,
|
|
631
|
+
"location": null,
|
|
632
|
+
"numPassingAsserts": 1,
|
|
633
|
+
"retryReasons": [],
|
|
634
|
+
"status": "passed",
|
|
635
|
+
"title": "decode with too many spaces"
|
|
636
|
+
},
|
|
637
|
+
{
|
|
638
|
+
"ancestorTitles": [
|
|
639
|
+
"Affine cipher",
|
|
640
|
+
"decode"
|
|
641
|
+
],
|
|
642
|
+
"duration": 1,
|
|
643
|
+
"failureDetails": [],
|
|
644
|
+
"failureMessages": [],
|
|
645
|
+
"fullName": "Affine cipher decode decode with a not coprime to m",
|
|
646
|
+
"invocations": 1,
|
|
647
|
+
"location": null,
|
|
648
|
+
"numPassingAsserts": 1,
|
|
649
|
+
"retryReasons": [],
|
|
650
|
+
"status": "passed",
|
|
651
|
+
"title": "decode with a not coprime to m"
|
|
652
|
+
}
|
|
653
|
+
],
|
|
654
|
+
"endTime": 1754263380564,
|
|
655
|
+
"message": "",
|
|
656
|
+
"name": "/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/affine-cipher/affine-cipher.spec.js",
|
|
657
|
+
"startTime": 1754263380286,
|
|
658
|
+
"status": "passed",
|
|
659
|
+
"summary": ""
|
|
660
|
+
}
|
|
661
|
+
],
|
|
662
|
+
"wasInterrupted": false
|
|
663
|
+
}
|
|
664
|
+
},
|
|
665
|
+
"timeElapsed": 365.049,
|
|
666
|
+
"cost": 0,
|
|
667
|
+
"startTime": "2025-08-03T23:16:55.528Z",
|
|
668
|
+
"endTime": "2025-08-03T23:23:00.577Z",
|
|
669
|
+
"finalOutput": "Task terminated due to limits reached. Turn: 11/30, Cost: $0.0000/$1.0000, Runtime: 364187ms/300000ms"
|
|
670
|
+
},
|
|
671
|
+
{
|
|
672
|
+
"exerciseName": "all-your-base",
|
|
673
|
+
"status": "success",
|
|
674
|
+
"turns": 9,
|
|
675
|
+
"testResult": {
|
|
676
|
+
"passed": 21,
|
|
677
|
+
"failed": 0,
|
|
678
|
+
"total": 21,
|
|
679
|
+
"skipped": 0,
|
|
680
|
+
"success": true,
|
|
681
|
+
"output": "{\"numFailedTestSuites\":0,\"numFailedTests\":0,\"numPassedTestSuites\":1,\"numPassedTests\":21,\"numPendingTestSuites\":0,\"numPendingTests\":0,\"numRuntimeErrorTestSuites\":0,\"numTodoTests\":0,\"numTotalTestSuites\":1,\"numTotalTests\":21,\"openHandles\":[],\"snapshot\":{\"added\":0,\"didUpdate\":false,\"failure\":false,\"filesAdded\":0,\"filesRemoved\":0,\"filesRemovedList\":[],\"filesUnmatched\":0,\"filesUpdated\":0,\"matched\":0,\"total\":0,\"unchecked\":0,\"uncheckedKeysByFile\":[],\"unmatched\":0,\"updated\":0},\"startTime\":1754263492411,\"success\":true,\"testResults\":[{\"assertionResults\":[{\"ancestorTitles\":[\"Converter\"],\"duration\":1,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Converter single bit one to decimal\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"single bit one to decimal\"},{\"ancestorTitles\":[\"Converter\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Converter binary to single decimal\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"binary to single decimal\"},{\"ancestorTitles\":[\"Converter\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Converter single decimal to binary\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"single decimal to binary\"},{\"ancestorTitles\":[\"Converter\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Converter binary to multiple decimal\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"binary to multiple decimal\"},{\"ancestorTitles\":[\"Converter\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Converter decimal to binary\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"decimal to binary\"},{\"ancestorTitles\":[\"Converter\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Converter trinary to hexadecimal\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"trinary to hexadecimal\"},{\"ancestorTitles\":[\"Converter\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Converter hexadecimal to trinary\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"hexadecimal to trinary\"},{\"ancestorTitles\":[\"Converter\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Converter 15-bit integer\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"15-bit integer\"},{\"ancestorTitles\":[\"Converter\"],\"duration\":4,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Converter empty list\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"empty list\"},{\"ancestorTitles\":[\"Converter\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Converter single zero\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"single zero\"},{\"ancestorTitles\":[\"Converter\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Converter multiple zeros\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"multiple zeros\"},{\"ancestorTitles\":[\"Converter\"],\"duration\":1,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Converter leading zeros\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"leading zeros\"},{\"ancestorTitles\":[\"Converter\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Converter negative digit\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"negative digit\"},{\"ancestorTitles\":[\"Converter\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Converter invalid positive digit\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"invalid positive digit\"},{\"ancestorTitles\":[\"Converter\"],\"duration\":1,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Converter first base is one\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"first base is one\"},{\"ancestorTitles\":[\"Converter\"],\"duration\":1,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Converter second base is one\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"second base is one\"},{\"ancestorTitles\":[\"Converter\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Converter first base is zero\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"first base is zero\"},{\"ancestorTitles\":[\"Converter\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Converter second base is zero\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"second base is zero\"},{\"ancestorTitles\":[\"Converter\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Converter first base is negative\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"first base is negative\"},{\"ancestorTitles\":[\"Converter\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Converter second base is negative\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"second base is negative\"},{\"ancestorTitles\":[\"Converter\"],\"duration\":1,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Converter both bases are negative\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"both bases are negative\"}],\"endTime\":1754263492498,\"message\":\"\",\"name\":\"/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/all-your-base/all-your-base.spec.js\",\"startTime\":1754263492421,\"status\":\"passed\",\"summary\":\"\"}],\"wasInterrupted\":false}\n",
|
|
682
|
+
"details": {
|
|
683
|
+
"numFailedTestSuites": 0,
|
|
684
|
+
"numFailedTests": 0,
|
|
685
|
+
"numPassedTestSuites": 1,
|
|
686
|
+
"numPassedTests": 21,
|
|
687
|
+
"numPendingTestSuites": 0,
|
|
688
|
+
"numPendingTests": 0,
|
|
689
|
+
"numRuntimeErrorTestSuites": 0,
|
|
690
|
+
"numTodoTests": 0,
|
|
691
|
+
"numTotalTestSuites": 1,
|
|
692
|
+
"numTotalTests": 21,
|
|
693
|
+
"openHandles": [],
|
|
694
|
+
"snapshot": {
|
|
695
|
+
"added": 0,
|
|
696
|
+
"didUpdate": false,
|
|
697
|
+
"failure": false,
|
|
698
|
+
"filesAdded": 0,
|
|
699
|
+
"filesRemoved": 0,
|
|
700
|
+
"filesRemovedList": [],
|
|
701
|
+
"filesUnmatched": 0,
|
|
702
|
+
"filesUpdated": 0,
|
|
703
|
+
"matched": 0,
|
|
704
|
+
"total": 0,
|
|
705
|
+
"unchecked": 0,
|
|
706
|
+
"uncheckedKeysByFile": [],
|
|
707
|
+
"unmatched": 0,
|
|
708
|
+
"updated": 0
|
|
709
|
+
},
|
|
710
|
+
"startTime": 1754263492411,
|
|
711
|
+
"success": true,
|
|
712
|
+
"testResults": [
|
|
713
|
+
{
|
|
714
|
+
"assertionResults": [
|
|
715
|
+
{
|
|
716
|
+
"ancestorTitles": [
|
|
717
|
+
"Converter"
|
|
718
|
+
],
|
|
719
|
+
"duration": 1,
|
|
720
|
+
"failureDetails": [],
|
|
721
|
+
"failureMessages": [],
|
|
722
|
+
"fullName": "Converter single bit one to decimal",
|
|
723
|
+
"invocations": 1,
|
|
724
|
+
"location": null,
|
|
725
|
+
"numPassingAsserts": 1,
|
|
726
|
+
"retryReasons": [],
|
|
727
|
+
"status": "passed",
|
|
728
|
+
"title": "single bit one to decimal"
|
|
729
|
+
},
|
|
730
|
+
{
|
|
731
|
+
"ancestorTitles": [
|
|
732
|
+
"Converter"
|
|
733
|
+
],
|
|
734
|
+
"duration": 0,
|
|
735
|
+
"failureDetails": [],
|
|
736
|
+
"failureMessages": [],
|
|
737
|
+
"fullName": "Converter binary to single decimal",
|
|
738
|
+
"invocations": 1,
|
|
739
|
+
"location": null,
|
|
740
|
+
"numPassingAsserts": 1,
|
|
741
|
+
"retryReasons": [],
|
|
742
|
+
"status": "passed",
|
|
743
|
+
"title": "binary to single decimal"
|
|
744
|
+
},
|
|
745
|
+
{
|
|
746
|
+
"ancestorTitles": [
|
|
747
|
+
"Converter"
|
|
748
|
+
],
|
|
749
|
+
"duration": 0,
|
|
750
|
+
"failureDetails": [],
|
|
751
|
+
"failureMessages": [],
|
|
752
|
+
"fullName": "Converter single decimal to binary",
|
|
753
|
+
"invocations": 1,
|
|
754
|
+
"location": null,
|
|
755
|
+
"numPassingAsserts": 1,
|
|
756
|
+
"retryReasons": [],
|
|
757
|
+
"status": "passed",
|
|
758
|
+
"title": "single decimal to binary"
|
|
759
|
+
},
|
|
760
|
+
{
|
|
761
|
+
"ancestorTitles": [
|
|
762
|
+
"Converter"
|
|
763
|
+
],
|
|
764
|
+
"duration": 0,
|
|
765
|
+
"failureDetails": [],
|
|
766
|
+
"failureMessages": [],
|
|
767
|
+
"fullName": "Converter binary to multiple decimal",
|
|
768
|
+
"invocations": 1,
|
|
769
|
+
"location": null,
|
|
770
|
+
"numPassingAsserts": 1,
|
|
771
|
+
"retryReasons": [],
|
|
772
|
+
"status": "passed",
|
|
773
|
+
"title": "binary to multiple decimal"
|
|
774
|
+
},
|
|
775
|
+
{
|
|
776
|
+
"ancestorTitles": [
|
|
777
|
+
"Converter"
|
|
778
|
+
],
|
|
779
|
+
"duration": 0,
|
|
780
|
+
"failureDetails": [],
|
|
781
|
+
"failureMessages": [],
|
|
782
|
+
"fullName": "Converter decimal to binary",
|
|
783
|
+
"invocations": 1,
|
|
784
|
+
"location": null,
|
|
785
|
+
"numPassingAsserts": 1,
|
|
786
|
+
"retryReasons": [],
|
|
787
|
+
"status": "passed",
|
|
788
|
+
"title": "decimal to binary"
|
|
789
|
+
},
|
|
790
|
+
{
|
|
791
|
+
"ancestorTitles": [
|
|
792
|
+
"Converter"
|
|
793
|
+
],
|
|
794
|
+
"duration": 0,
|
|
795
|
+
"failureDetails": [],
|
|
796
|
+
"failureMessages": [],
|
|
797
|
+
"fullName": "Converter trinary to hexadecimal",
|
|
798
|
+
"invocations": 1,
|
|
799
|
+
"location": null,
|
|
800
|
+
"numPassingAsserts": 1,
|
|
801
|
+
"retryReasons": [],
|
|
802
|
+
"status": "passed",
|
|
803
|
+
"title": "trinary to hexadecimal"
|
|
804
|
+
},
|
|
805
|
+
{
|
|
806
|
+
"ancestorTitles": [
|
|
807
|
+
"Converter"
|
|
808
|
+
],
|
|
809
|
+
"duration": 0,
|
|
810
|
+
"failureDetails": [],
|
|
811
|
+
"failureMessages": [],
|
|
812
|
+
"fullName": "Converter hexadecimal to trinary",
|
|
813
|
+
"invocations": 1,
|
|
814
|
+
"location": null,
|
|
815
|
+
"numPassingAsserts": 1,
|
|
816
|
+
"retryReasons": [],
|
|
817
|
+
"status": "passed",
|
|
818
|
+
"title": "hexadecimal to trinary"
|
|
819
|
+
},
|
|
820
|
+
{
|
|
821
|
+
"ancestorTitles": [
|
|
822
|
+
"Converter"
|
|
823
|
+
],
|
|
824
|
+
"duration": 0,
|
|
825
|
+
"failureDetails": [],
|
|
826
|
+
"failureMessages": [],
|
|
827
|
+
"fullName": "Converter 15-bit integer",
|
|
828
|
+
"invocations": 1,
|
|
829
|
+
"location": null,
|
|
830
|
+
"numPassingAsserts": 1,
|
|
831
|
+
"retryReasons": [],
|
|
832
|
+
"status": "passed",
|
|
833
|
+
"title": "15-bit integer"
|
|
834
|
+
},
|
|
835
|
+
{
|
|
836
|
+
"ancestorTitles": [
|
|
837
|
+
"Converter"
|
|
838
|
+
],
|
|
839
|
+
"duration": 4,
|
|
840
|
+
"failureDetails": [],
|
|
841
|
+
"failureMessages": [],
|
|
842
|
+
"fullName": "Converter empty list",
|
|
843
|
+
"invocations": 1,
|
|
844
|
+
"location": null,
|
|
845
|
+
"numPassingAsserts": 1,
|
|
846
|
+
"retryReasons": [],
|
|
847
|
+
"status": "passed",
|
|
848
|
+
"title": "empty list"
|
|
849
|
+
},
|
|
850
|
+
{
|
|
851
|
+
"ancestorTitles": [
|
|
852
|
+
"Converter"
|
|
853
|
+
],
|
|
854
|
+
"duration": 0,
|
|
855
|
+
"failureDetails": [],
|
|
856
|
+
"failureMessages": [],
|
|
857
|
+
"fullName": "Converter single zero",
|
|
858
|
+
"invocations": 1,
|
|
859
|
+
"location": null,
|
|
860
|
+
"numPassingAsserts": 1,
|
|
861
|
+
"retryReasons": [],
|
|
862
|
+
"status": "passed",
|
|
863
|
+
"title": "single zero"
|
|
864
|
+
},
|
|
865
|
+
{
|
|
866
|
+
"ancestorTitles": [
|
|
867
|
+
"Converter"
|
|
868
|
+
],
|
|
869
|
+
"duration": 0,
|
|
870
|
+
"failureDetails": [],
|
|
871
|
+
"failureMessages": [],
|
|
872
|
+
"fullName": "Converter multiple zeros",
|
|
873
|
+
"invocations": 1,
|
|
874
|
+
"location": null,
|
|
875
|
+
"numPassingAsserts": 1,
|
|
876
|
+
"retryReasons": [],
|
|
877
|
+
"status": "passed",
|
|
878
|
+
"title": "multiple zeros"
|
|
879
|
+
},
|
|
880
|
+
{
|
|
881
|
+
"ancestorTitles": [
|
|
882
|
+
"Converter"
|
|
883
|
+
],
|
|
884
|
+
"duration": 1,
|
|
885
|
+
"failureDetails": [],
|
|
886
|
+
"failureMessages": [],
|
|
887
|
+
"fullName": "Converter leading zeros",
|
|
888
|
+
"invocations": 1,
|
|
889
|
+
"location": null,
|
|
890
|
+
"numPassingAsserts": 1,
|
|
891
|
+
"retryReasons": [],
|
|
892
|
+
"status": "passed",
|
|
893
|
+
"title": "leading zeros"
|
|
894
|
+
},
|
|
895
|
+
{
|
|
896
|
+
"ancestorTitles": [
|
|
897
|
+
"Converter"
|
|
898
|
+
],
|
|
899
|
+
"duration": 0,
|
|
900
|
+
"failureDetails": [],
|
|
901
|
+
"failureMessages": [],
|
|
902
|
+
"fullName": "Converter negative digit",
|
|
903
|
+
"invocations": 1,
|
|
904
|
+
"location": null,
|
|
905
|
+
"numPassingAsserts": 1,
|
|
906
|
+
"retryReasons": [],
|
|
907
|
+
"status": "passed",
|
|
908
|
+
"title": "negative digit"
|
|
909
|
+
},
|
|
910
|
+
{
|
|
911
|
+
"ancestorTitles": [
|
|
912
|
+
"Converter"
|
|
913
|
+
],
|
|
914
|
+
"duration": 0,
|
|
915
|
+
"failureDetails": [],
|
|
916
|
+
"failureMessages": [],
|
|
917
|
+
"fullName": "Converter invalid positive digit",
|
|
918
|
+
"invocations": 1,
|
|
919
|
+
"location": null,
|
|
920
|
+
"numPassingAsserts": 1,
|
|
921
|
+
"retryReasons": [],
|
|
922
|
+
"status": "passed",
|
|
923
|
+
"title": "invalid positive digit"
|
|
924
|
+
},
|
|
925
|
+
{
|
|
926
|
+
"ancestorTitles": [
|
|
927
|
+
"Converter"
|
|
928
|
+
],
|
|
929
|
+
"duration": 1,
|
|
930
|
+
"failureDetails": [],
|
|
931
|
+
"failureMessages": [],
|
|
932
|
+
"fullName": "Converter first base is one",
|
|
933
|
+
"invocations": 1,
|
|
934
|
+
"location": null,
|
|
935
|
+
"numPassingAsserts": 1,
|
|
936
|
+
"retryReasons": [],
|
|
937
|
+
"status": "passed",
|
|
938
|
+
"title": "first base is one"
|
|
939
|
+
},
|
|
940
|
+
{
|
|
941
|
+
"ancestorTitles": [
|
|
942
|
+
"Converter"
|
|
943
|
+
],
|
|
944
|
+
"duration": 1,
|
|
945
|
+
"failureDetails": [],
|
|
946
|
+
"failureMessages": [],
|
|
947
|
+
"fullName": "Converter second base is one",
|
|
948
|
+
"invocations": 1,
|
|
949
|
+
"location": null,
|
|
950
|
+
"numPassingAsserts": 1,
|
|
951
|
+
"retryReasons": [],
|
|
952
|
+
"status": "passed",
|
|
953
|
+
"title": "second base is one"
|
|
954
|
+
},
|
|
955
|
+
{
|
|
956
|
+
"ancestorTitles": [
|
|
957
|
+
"Converter"
|
|
958
|
+
],
|
|
959
|
+
"duration": 0,
|
|
960
|
+
"failureDetails": [],
|
|
961
|
+
"failureMessages": [],
|
|
962
|
+
"fullName": "Converter first base is zero",
|
|
963
|
+
"invocations": 1,
|
|
964
|
+
"location": null,
|
|
965
|
+
"numPassingAsserts": 1,
|
|
966
|
+
"retryReasons": [],
|
|
967
|
+
"status": "passed",
|
|
968
|
+
"title": "first base is zero"
|
|
969
|
+
},
|
|
970
|
+
{
|
|
971
|
+
"ancestorTitles": [
|
|
972
|
+
"Converter"
|
|
973
|
+
],
|
|
974
|
+
"duration": 0,
|
|
975
|
+
"failureDetails": [],
|
|
976
|
+
"failureMessages": [],
|
|
977
|
+
"fullName": "Converter second base is zero",
|
|
978
|
+
"invocations": 1,
|
|
979
|
+
"location": null,
|
|
980
|
+
"numPassingAsserts": 1,
|
|
981
|
+
"retryReasons": [],
|
|
982
|
+
"status": "passed",
|
|
983
|
+
"title": "second base is zero"
|
|
984
|
+
},
|
|
985
|
+
{
|
|
986
|
+
"ancestorTitles": [
|
|
987
|
+
"Converter"
|
|
988
|
+
],
|
|
989
|
+
"duration": 0,
|
|
990
|
+
"failureDetails": [],
|
|
991
|
+
"failureMessages": [],
|
|
992
|
+
"fullName": "Converter first base is negative",
|
|
993
|
+
"invocations": 1,
|
|
994
|
+
"location": null,
|
|
995
|
+
"numPassingAsserts": 1,
|
|
996
|
+
"retryReasons": [],
|
|
997
|
+
"status": "passed",
|
|
998
|
+
"title": "first base is negative"
|
|
999
|
+
},
|
|
1000
|
+
{
|
|
1001
|
+
"ancestorTitles": [
|
|
1002
|
+
"Converter"
|
|
1003
|
+
],
|
|
1004
|
+
"duration": 0,
|
|
1005
|
+
"failureDetails": [],
|
|
1006
|
+
"failureMessages": [],
|
|
1007
|
+
"fullName": "Converter second base is negative",
|
|
1008
|
+
"invocations": 1,
|
|
1009
|
+
"location": null,
|
|
1010
|
+
"numPassingAsserts": 1,
|
|
1011
|
+
"retryReasons": [],
|
|
1012
|
+
"status": "passed",
|
|
1013
|
+
"title": "second base is negative"
|
|
1014
|
+
},
|
|
1015
|
+
{
|
|
1016
|
+
"ancestorTitles": [
|
|
1017
|
+
"Converter"
|
|
1018
|
+
],
|
|
1019
|
+
"duration": 1,
|
|
1020
|
+
"failureDetails": [],
|
|
1021
|
+
"failureMessages": [],
|
|
1022
|
+
"fullName": "Converter both bases are negative",
|
|
1023
|
+
"invocations": 1,
|
|
1024
|
+
"location": null,
|
|
1025
|
+
"numPassingAsserts": 1,
|
|
1026
|
+
"retryReasons": [],
|
|
1027
|
+
"status": "passed",
|
|
1028
|
+
"title": "both bases are negative"
|
|
1029
|
+
}
|
|
1030
|
+
],
|
|
1031
|
+
"endTime": 1754263492498,
|
|
1032
|
+
"message": "",
|
|
1033
|
+
"name": "/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/all-your-base/all-your-base.spec.js",
|
|
1034
|
+
"startTime": 1754263492421,
|
|
1035
|
+
"status": "passed",
|
|
1036
|
+
"summary": ""
|
|
1037
|
+
}
|
|
1038
|
+
],
|
|
1039
|
+
"wasInterrupted": false
|
|
1040
|
+
}
|
|
1041
|
+
},
|
|
1042
|
+
"timeElapsed": 111.922,
|
|
1043
|
+
"cost": 0,
|
|
1044
|
+
"startTime": "2025-08-03T23:23:00.598Z",
|
|
1045
|
+
"endTime": "2025-08-03T23:24:52.520Z",
|
|
1046
|
+
"finalOutput": "I have successfully implemented the 'All Your Base' coding exercise. The solution correctly converts numbers between different bases with proper validation and error handling.\n\nKey aspects of my implementation:\n1. Validated input and output bases (must be integers ≥ 2)\n2. Validated input digits format (no empty lists, no leading zeros except for [0])\n3. Checked that all digits are valid for the input base\n4. Implemented proper conversion logic from input base to decimal, then to output base\n5. Handled edge cases like zero values properly\n\nAll 21 tests now pass, including all the validation scenarios and conversion examples. The implementation correctly handles binary, decimal, hexadecimal, and other base conversions as required by the exercise."
|
|
1047
|
+
},
|
|
1048
|
+
{
|
|
1049
|
+
"exerciseName": "allergies",
|
|
1050
|
+
"status": "success",
|
|
1051
|
+
"turns": 10,
|
|
1052
|
+
"testResult": {
|
|
1053
|
+
"passed": 1,
|
|
1054
|
+
"failed": 0,
|
|
1055
|
+
"total": 50,
|
|
1056
|
+
"skipped": 49,
|
|
1057
|
+
"success": true,
|
|
1058
|
+
"output": "{\"numFailedTestSuites\":0,\"numFailedTests\":0,\"numPassedTestSuites\":1,\"numPassedTests\":1,\"numPendingTestSuites\":0,\"numPendingTests\":49,\"numRuntimeErrorTestSuites\":0,\"numTodoTests\":0,\"numTotalTestSuites\":1,\"numTotalTests\":50,\"openHandles\":[],\"snapshot\":{\"added\":0,\"didUpdate\":false,\"failure\":false,\"filesAdded\":0,\"filesRemoved\":0,\"filesRemovedList\":[],\"filesUnmatched\":0,\"filesUpdated\":0,\"matched\":0,\"total\":0,\"unchecked\":0,\"uncheckedKeysByFile\":[],\"unmatched\":0,\"updated\":0},\"startTime\":1754263794961,\"success\":true,\"testResults\":[{\"assertionResults\":[{\"ancestorTitles\":[\"Allergies\",\"testing for eggs allergy\"],\"duration\":1,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for eggs allergy not allergic to anything\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"not allergic to anything\"},{\"ancestorTitles\":[\"Allergies\",\"testing for eggs allergy\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for eggs allergy allergic only to eggs\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"allergic only to eggs\"},{\"ancestorTitles\":[\"Allergies\",\"testing for eggs allergy\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for eggs allergy allergic to eggs and something else\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"allergic to eggs and something else\"},{\"ancestorTitles\":[\"Allergies\",\"testing for eggs allergy\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for eggs allergy allergic to something, but not eggs\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"allergic to something, but not eggs\"},{\"ancestorTitles\":[\"Allergies\",\"testing for eggs allergy\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for eggs allergy allergic to everything\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"allergic to everything\"},{\"ancestorTitles\":[\"Allergies\",\"testing for peanuts allergy\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for peanuts allergy not allergic to anything\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"not allergic to anything\"},{\"ancestorTitles\":[\"Allergies\",\"testing for peanuts allergy\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for peanuts allergy allergic only to peanuts\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"allergic only to peanuts\"},{\"ancestorTitles\":[\"Allergies\",\"testing for peanuts allergy\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for peanuts allergy allergic to peanuts and something else\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"allergic to peanuts and something else\"},{\"ancestorTitles\":[\"Allergies\",\"testing for peanuts allergy\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for peanuts allergy allergic to something, but not peanuts\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"allergic to something, but not peanuts\"},{\"ancestorTitles\":[\"Allergies\",\"testing for peanuts allergy\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for peanuts allergy allergic to everything\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"allergic to everything\"},{\"ancestorTitles\":[\"Allergies\",\"testing for shellfish allergy\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for shellfish allergy not allergic to anything\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"not allergic to anything\"},{\"ancestorTitles\":[\"Allergies\",\"testing for shellfish allergy\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for shellfish allergy allergic only to shellfish\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"allergic only to shellfish\"},{\"ancestorTitles\":[\"Allergies\",\"testing for shellfish allergy\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for shellfish allergy allergic to shellfish and something else\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"allergic to shellfish and something else\"},{\"ancestorTitles\":[\"Allergies\",\"testing for shellfish allergy\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for shellfish allergy allergic to something, but not shellfish\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"allergic to something, but not shellfish\"},{\"ancestorTitles\":[\"Allergies\",\"testing for shellfish allergy\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for shellfish allergy allergic to everything\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"allergic to everything\"},{\"ancestorTitles\":[\"Allergies\",\"testing for strawberries allergy\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for strawberries allergy not allergic to anything\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"not allergic to anything\"},{\"ancestorTitles\":[\"Allergies\",\"testing for strawberries allergy\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for strawberries allergy allergic only to strawberries\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"allergic only to strawberries\"},{\"ancestorTitles\":[\"Allergies\",\"testing for strawberries allergy\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for strawberries allergy allergic to strawberries and something else\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"allergic to strawberries and something else\"},{\"ancestorTitles\":[\"Allergies\",\"testing for strawberries allergy\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for strawberries allergy allergic to something, but not strawberries\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"allergic to something, but not strawberries\"},{\"ancestorTitles\":[\"Allergies\",\"testing for strawberries allergy\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for strawberries allergy allergic to everything\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"allergic to everything\"},{\"ancestorTitles\":[\"Allergies\",\"testing for tomatoes allergy\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for tomatoes allergy not allergic to anything\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"not allergic to anything\"},{\"ancestorTitles\":[\"Allergies\",\"testing for tomatoes allergy\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for tomatoes allergy allergic only to tomatoes\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"allergic only to tomatoes\"},{\"ancestorTitles\":[\"Allergies\",\"testing for tomatoes allergy\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for tomatoes allergy allergic to tomatoes and something else\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"allergic to tomatoes and something else\"},{\"ancestorTitles\":[\"Allergies\",\"testing for tomatoes allergy\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for tomatoes allergy allergic to something, but not tomatoes\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"allergic to something, but not tomatoes\"},{\"ancestorTitles\":[\"Allergies\",\"testing for tomatoes allergy\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for tomatoes allergy allergic to everything\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"allergic to everything\"},{\"ancestorTitles\":[\"Allergies\",\"testing for chocolate allergy\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for chocolate allergy not allergic to anything\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"not allergic to anything\"},{\"ancestorTitles\":[\"Allergies\",\"testing for chocolate allergy\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for chocolate allergy allergic only to chocolate\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"allergic only to chocolate\"},{\"ancestorTitles\":[\"Allergies\",\"testing for chocolate allergy\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for chocolate allergy allergic to chocolate and something else\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"allergic to chocolate and something else\"},{\"ancestorTitles\":[\"Allergies\",\"testing for chocolate allergy\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for chocolate allergy allergic to something, but not chocolate\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"allergic to something, but not chocolate\"},{\"ancestorTitles\":[\"Allergies\",\"testing for chocolate allergy\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for chocolate allergy allergic to everything\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"allergic to everything\"},{\"ancestorTitles\":[\"Allergies\",\"testing for pollen allergy\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for pollen allergy not allergic to anything\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"not allergic to anything\"},{\"ancestorTitles\":[\"Allergies\",\"testing for pollen allergy\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for pollen allergy allergic only to pollen\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"allergic only to pollen\"},{\"ancestorTitles\":[\"Allergies\",\"testing for pollen allergy\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for pollen allergy allergic to pollen and something else\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"allergic to pollen and something else\"},{\"ancestorTitles\":[\"Allergies\",\"testing for pollen allergy\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for pollen allergy allergic to something, but not pollen\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"allergic to something, but not pollen\"},{\"ancestorTitles\":[\"Allergies\",\"testing for pollen allergy\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for pollen allergy allergic to everything\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"allergic to everything\"},{\"ancestorTitles\":[\"Allergies\",\"testing for cats allergy\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for cats allergy not allergic to anything\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"not allergic to anything\"},{\"ancestorTitles\":[\"Allergies\",\"testing for cats allergy\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for cats allergy allergic only to cats\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"allergic only to cats\"},{\"ancestorTitles\":[\"Allergies\",\"testing for cats allergy\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for cats allergy allergic to cats and something else\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"allergic to cats and something else\"},{\"ancestorTitles\":[\"Allergies\",\"testing for cats allergy\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for cats allergy allergic to something, but not cats\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"allergic to something, but not cats\"},{\"ancestorTitles\":[\"Allergies\",\"testing for cats allergy\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for cats allergy allergic to everything\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"allergic to everything\"},{\"ancestorTitles\":[\"Allergies\",\"list when:\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies list when: no allergies\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"no allergies\"},{\"ancestorTitles\":[\"Allergies\",\"list when:\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies list when: just eggs\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"just eggs\"},{\"ancestorTitles\":[\"Allergies\",\"list when:\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies list when: just peanuts\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"just peanuts\"},{\"ancestorTitles\":[\"Allergies\",\"list when:\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies list when: just strawberries\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"just strawberries\"},{\"ancestorTitles\":[\"Allergies\",\"list when:\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies list when: eggs and peanuts\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"eggs and peanuts\"},{\"ancestorTitles\":[\"Allergies\",\"list when:\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies list when: more than eggs but not peanuts\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"more than eggs but not peanuts\"},{\"ancestorTitles\":[\"Allergies\",\"list when:\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies list when: lots of stuff\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"lots of stuff\"},{\"ancestorTitles\":[\"Allergies\",\"list when:\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies list when: everything\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"everything\"},{\"ancestorTitles\":[\"Allergies\",\"list when:\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies list when: no allergen score parts\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"no allergen score parts\"},{\"ancestorTitles\":[\"Allergies\",\"list when:\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies list when: no allergen score parts without highest valid score\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"no allergen score parts without highest valid score\"}],\"endTime\":1754263795091,\"message\":\"\",\"name\":\"/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/allergies/allergies.spec.js\",\"startTime\":1754263794980,\"status\":\"focused\",\"summary\":\"\"}],\"wasInterrupted\":false}\n",
|
|
1059
|
+
"details": {
|
|
1060
|
+
"numFailedTestSuites": 0,
|
|
1061
|
+
"numFailedTests": 0,
|
|
1062
|
+
"numPassedTestSuites": 1,
|
|
1063
|
+
"numPassedTests": 1,
|
|
1064
|
+
"numPendingTestSuites": 0,
|
|
1065
|
+
"numPendingTests": 49,
|
|
1066
|
+
"numRuntimeErrorTestSuites": 0,
|
|
1067
|
+
"numTodoTests": 0,
|
|
1068
|
+
"numTotalTestSuites": 1,
|
|
1069
|
+
"numTotalTests": 50,
|
|
1070
|
+
"openHandles": [],
|
|
1071
|
+
"snapshot": {
|
|
1072
|
+
"added": 0,
|
|
1073
|
+
"didUpdate": false,
|
|
1074
|
+
"failure": false,
|
|
1075
|
+
"filesAdded": 0,
|
|
1076
|
+
"filesRemoved": 0,
|
|
1077
|
+
"filesRemovedList": [],
|
|
1078
|
+
"filesUnmatched": 0,
|
|
1079
|
+
"filesUpdated": 0,
|
|
1080
|
+
"matched": 0,
|
|
1081
|
+
"total": 0,
|
|
1082
|
+
"unchecked": 0,
|
|
1083
|
+
"uncheckedKeysByFile": [],
|
|
1084
|
+
"unmatched": 0,
|
|
1085
|
+
"updated": 0
|
|
1086
|
+
},
|
|
1087
|
+
"startTime": 1754263794961,
|
|
1088
|
+
"success": true,
|
|
1089
|
+
"testResults": [
|
|
1090
|
+
{
|
|
1091
|
+
"assertionResults": [
|
|
1092
|
+
{
|
|
1093
|
+
"ancestorTitles": [
|
|
1094
|
+
"Allergies",
|
|
1095
|
+
"testing for eggs allergy"
|
|
1096
|
+
],
|
|
1097
|
+
"duration": 1,
|
|
1098
|
+
"failureDetails": [],
|
|
1099
|
+
"failureMessages": [],
|
|
1100
|
+
"fullName": "Allergies testing for eggs allergy not allergic to anything",
|
|
1101
|
+
"invocations": 1,
|
|
1102
|
+
"location": null,
|
|
1103
|
+
"numPassingAsserts": 1,
|
|
1104
|
+
"retryReasons": [],
|
|
1105
|
+
"status": "passed",
|
|
1106
|
+
"title": "not allergic to anything"
|
|
1107
|
+
},
|
|
1108
|
+
{
|
|
1109
|
+
"ancestorTitles": [
|
|
1110
|
+
"Allergies",
|
|
1111
|
+
"testing for eggs allergy"
|
|
1112
|
+
],
|
|
1113
|
+
"duration": null,
|
|
1114
|
+
"failureDetails": [],
|
|
1115
|
+
"failureMessages": [],
|
|
1116
|
+
"fullName": "Allergies testing for eggs allergy allergic only to eggs",
|
|
1117
|
+
"invocations": 1,
|
|
1118
|
+
"location": null,
|
|
1119
|
+
"numPassingAsserts": 0,
|
|
1120
|
+
"retryReasons": [],
|
|
1121
|
+
"status": "pending",
|
|
1122
|
+
"title": "allergic only to eggs"
|
|
1123
|
+
},
|
|
1124
|
+
{
|
|
1125
|
+
"ancestorTitles": [
|
|
1126
|
+
"Allergies",
|
|
1127
|
+
"testing for eggs allergy"
|
|
1128
|
+
],
|
|
1129
|
+
"duration": null,
|
|
1130
|
+
"failureDetails": [],
|
|
1131
|
+
"failureMessages": [],
|
|
1132
|
+
"fullName": "Allergies testing for eggs allergy allergic to eggs and something else",
|
|
1133
|
+
"invocations": 1,
|
|
1134
|
+
"location": null,
|
|
1135
|
+
"numPassingAsserts": 0,
|
|
1136
|
+
"retryReasons": [],
|
|
1137
|
+
"status": "pending",
|
|
1138
|
+
"title": "allergic to eggs and something else"
|
|
1139
|
+
},
|
|
1140
|
+
{
|
|
1141
|
+
"ancestorTitles": [
|
|
1142
|
+
"Allergies",
|
|
1143
|
+
"testing for eggs allergy"
|
|
1144
|
+
],
|
|
1145
|
+
"duration": null,
|
|
1146
|
+
"failureDetails": [],
|
|
1147
|
+
"failureMessages": [],
|
|
1148
|
+
"fullName": "Allergies testing for eggs allergy allergic to something, but not eggs",
|
|
1149
|
+
"invocations": 1,
|
|
1150
|
+
"location": null,
|
|
1151
|
+
"numPassingAsserts": 0,
|
|
1152
|
+
"retryReasons": [],
|
|
1153
|
+
"status": "pending",
|
|
1154
|
+
"title": "allergic to something, but not eggs"
|
|
1155
|
+
},
|
|
1156
|
+
{
|
|
1157
|
+
"ancestorTitles": [
|
|
1158
|
+
"Allergies",
|
|
1159
|
+
"testing for eggs allergy"
|
|
1160
|
+
],
|
|
1161
|
+
"duration": null,
|
|
1162
|
+
"failureDetails": [],
|
|
1163
|
+
"failureMessages": [],
|
|
1164
|
+
"fullName": "Allergies testing for eggs allergy allergic to everything",
|
|
1165
|
+
"invocations": 1,
|
|
1166
|
+
"location": null,
|
|
1167
|
+
"numPassingAsserts": 0,
|
|
1168
|
+
"retryReasons": [],
|
|
1169
|
+
"status": "pending",
|
|
1170
|
+
"title": "allergic to everything"
|
|
1171
|
+
},
|
|
1172
|
+
{
|
|
1173
|
+
"ancestorTitles": [
|
|
1174
|
+
"Allergies",
|
|
1175
|
+
"testing for peanuts allergy"
|
|
1176
|
+
],
|
|
1177
|
+
"duration": null,
|
|
1178
|
+
"failureDetails": [],
|
|
1179
|
+
"failureMessages": [],
|
|
1180
|
+
"fullName": "Allergies testing for peanuts allergy not allergic to anything",
|
|
1181
|
+
"invocations": 1,
|
|
1182
|
+
"location": null,
|
|
1183
|
+
"numPassingAsserts": 0,
|
|
1184
|
+
"retryReasons": [],
|
|
1185
|
+
"status": "pending",
|
|
1186
|
+
"title": "not allergic to anything"
|
|
1187
|
+
},
|
|
1188
|
+
{
|
|
1189
|
+
"ancestorTitles": [
|
|
1190
|
+
"Allergies",
|
|
1191
|
+
"testing for peanuts allergy"
|
|
1192
|
+
],
|
|
1193
|
+
"duration": null,
|
|
1194
|
+
"failureDetails": [],
|
|
1195
|
+
"failureMessages": [],
|
|
1196
|
+
"fullName": "Allergies testing for peanuts allergy allergic only to peanuts",
|
|
1197
|
+
"invocations": 1,
|
|
1198
|
+
"location": null,
|
|
1199
|
+
"numPassingAsserts": 0,
|
|
1200
|
+
"retryReasons": [],
|
|
1201
|
+
"status": "pending",
|
|
1202
|
+
"title": "allergic only to peanuts"
|
|
1203
|
+
},
|
|
1204
|
+
{
|
|
1205
|
+
"ancestorTitles": [
|
|
1206
|
+
"Allergies",
|
|
1207
|
+
"testing for peanuts allergy"
|
|
1208
|
+
],
|
|
1209
|
+
"duration": null,
|
|
1210
|
+
"failureDetails": [],
|
|
1211
|
+
"failureMessages": [],
|
|
1212
|
+
"fullName": "Allergies testing for peanuts allergy allergic to peanuts and something else",
|
|
1213
|
+
"invocations": 1,
|
|
1214
|
+
"location": null,
|
|
1215
|
+
"numPassingAsserts": 0,
|
|
1216
|
+
"retryReasons": [],
|
|
1217
|
+
"status": "pending",
|
|
1218
|
+
"title": "allergic to peanuts and something else"
|
|
1219
|
+
},
|
|
1220
|
+
{
|
|
1221
|
+
"ancestorTitles": [
|
|
1222
|
+
"Allergies",
|
|
1223
|
+
"testing for peanuts allergy"
|
|
1224
|
+
],
|
|
1225
|
+
"duration": null,
|
|
1226
|
+
"failureDetails": [],
|
|
1227
|
+
"failureMessages": [],
|
|
1228
|
+
"fullName": "Allergies testing for peanuts allergy allergic to something, but not peanuts",
|
|
1229
|
+
"invocations": 1,
|
|
1230
|
+
"location": null,
|
|
1231
|
+
"numPassingAsserts": 0,
|
|
1232
|
+
"retryReasons": [],
|
|
1233
|
+
"status": "pending",
|
|
1234
|
+
"title": "allergic to something, but not peanuts"
|
|
1235
|
+
},
|
|
1236
|
+
{
|
|
1237
|
+
"ancestorTitles": [
|
|
1238
|
+
"Allergies",
|
|
1239
|
+
"testing for peanuts allergy"
|
|
1240
|
+
],
|
|
1241
|
+
"duration": null,
|
|
1242
|
+
"failureDetails": [],
|
|
1243
|
+
"failureMessages": [],
|
|
1244
|
+
"fullName": "Allergies testing for peanuts allergy allergic to everything",
|
|
1245
|
+
"invocations": 1,
|
|
1246
|
+
"location": null,
|
|
1247
|
+
"numPassingAsserts": 0,
|
|
1248
|
+
"retryReasons": [],
|
|
1249
|
+
"status": "pending",
|
|
1250
|
+
"title": "allergic to everything"
|
|
1251
|
+
},
|
|
1252
|
+
{
|
|
1253
|
+
"ancestorTitles": [
|
|
1254
|
+
"Allergies",
|
|
1255
|
+
"testing for shellfish allergy"
|
|
1256
|
+
],
|
|
1257
|
+
"duration": null,
|
|
1258
|
+
"failureDetails": [],
|
|
1259
|
+
"failureMessages": [],
|
|
1260
|
+
"fullName": "Allergies testing for shellfish allergy not allergic to anything",
|
|
1261
|
+
"invocations": 1,
|
|
1262
|
+
"location": null,
|
|
1263
|
+
"numPassingAsserts": 0,
|
|
1264
|
+
"retryReasons": [],
|
|
1265
|
+
"status": "pending",
|
|
1266
|
+
"title": "not allergic to anything"
|
|
1267
|
+
},
|
|
1268
|
+
{
|
|
1269
|
+
"ancestorTitles": [
|
|
1270
|
+
"Allergies",
|
|
1271
|
+
"testing for shellfish allergy"
|
|
1272
|
+
],
|
|
1273
|
+
"duration": null,
|
|
1274
|
+
"failureDetails": [],
|
|
1275
|
+
"failureMessages": [],
|
|
1276
|
+
"fullName": "Allergies testing for shellfish allergy allergic only to shellfish",
|
|
1277
|
+
"invocations": 1,
|
|
1278
|
+
"location": null,
|
|
1279
|
+
"numPassingAsserts": 0,
|
|
1280
|
+
"retryReasons": [],
|
|
1281
|
+
"status": "pending",
|
|
1282
|
+
"title": "allergic only to shellfish"
|
|
1283
|
+
},
|
|
1284
|
+
{
|
|
1285
|
+
"ancestorTitles": [
|
|
1286
|
+
"Allergies",
|
|
1287
|
+
"testing for shellfish allergy"
|
|
1288
|
+
],
|
|
1289
|
+
"duration": null,
|
|
1290
|
+
"failureDetails": [],
|
|
1291
|
+
"failureMessages": [],
|
|
1292
|
+
"fullName": "Allergies testing for shellfish allergy allergic to shellfish and something else",
|
|
1293
|
+
"invocations": 1,
|
|
1294
|
+
"location": null,
|
|
1295
|
+
"numPassingAsserts": 0,
|
|
1296
|
+
"retryReasons": [],
|
|
1297
|
+
"status": "pending",
|
|
1298
|
+
"title": "allergic to shellfish and something else"
|
|
1299
|
+
},
|
|
1300
|
+
{
|
|
1301
|
+
"ancestorTitles": [
|
|
1302
|
+
"Allergies",
|
|
1303
|
+
"testing for shellfish allergy"
|
|
1304
|
+
],
|
|
1305
|
+
"duration": null,
|
|
1306
|
+
"failureDetails": [],
|
|
1307
|
+
"failureMessages": [],
|
|
1308
|
+
"fullName": "Allergies testing for shellfish allergy allergic to something, but not shellfish",
|
|
1309
|
+
"invocations": 1,
|
|
1310
|
+
"location": null,
|
|
1311
|
+
"numPassingAsserts": 0,
|
|
1312
|
+
"retryReasons": [],
|
|
1313
|
+
"status": "pending",
|
|
1314
|
+
"title": "allergic to something, but not shellfish"
|
|
1315
|
+
},
|
|
1316
|
+
{
|
|
1317
|
+
"ancestorTitles": [
|
|
1318
|
+
"Allergies",
|
|
1319
|
+
"testing for shellfish allergy"
|
|
1320
|
+
],
|
|
1321
|
+
"duration": null,
|
|
1322
|
+
"failureDetails": [],
|
|
1323
|
+
"failureMessages": [],
|
|
1324
|
+
"fullName": "Allergies testing for shellfish allergy allergic to everything",
|
|
1325
|
+
"invocations": 1,
|
|
1326
|
+
"location": null,
|
|
1327
|
+
"numPassingAsserts": 0,
|
|
1328
|
+
"retryReasons": [],
|
|
1329
|
+
"status": "pending",
|
|
1330
|
+
"title": "allergic to everything"
|
|
1331
|
+
},
|
|
1332
|
+
{
|
|
1333
|
+
"ancestorTitles": [
|
|
1334
|
+
"Allergies",
|
|
1335
|
+
"testing for strawberries allergy"
|
|
1336
|
+
],
|
|
1337
|
+
"duration": null,
|
|
1338
|
+
"failureDetails": [],
|
|
1339
|
+
"failureMessages": [],
|
|
1340
|
+
"fullName": "Allergies testing for strawberries allergy not allergic to anything",
|
|
1341
|
+
"invocations": 1,
|
|
1342
|
+
"location": null,
|
|
1343
|
+
"numPassingAsserts": 0,
|
|
1344
|
+
"retryReasons": [],
|
|
1345
|
+
"status": "pending",
|
|
1346
|
+
"title": "not allergic to anything"
|
|
1347
|
+
},
|
|
1348
|
+
{
|
|
1349
|
+
"ancestorTitles": [
|
|
1350
|
+
"Allergies",
|
|
1351
|
+
"testing for strawberries allergy"
|
|
1352
|
+
],
|
|
1353
|
+
"duration": null,
|
|
1354
|
+
"failureDetails": [],
|
|
1355
|
+
"failureMessages": [],
|
|
1356
|
+
"fullName": "Allergies testing for strawberries allergy allergic only to strawberries",
|
|
1357
|
+
"invocations": 1,
|
|
1358
|
+
"location": null,
|
|
1359
|
+
"numPassingAsserts": 0,
|
|
1360
|
+
"retryReasons": [],
|
|
1361
|
+
"status": "pending",
|
|
1362
|
+
"title": "allergic only to strawberries"
|
|
1363
|
+
},
|
|
1364
|
+
{
|
|
1365
|
+
"ancestorTitles": [
|
|
1366
|
+
"Allergies",
|
|
1367
|
+
"testing for strawberries allergy"
|
|
1368
|
+
],
|
|
1369
|
+
"duration": null,
|
|
1370
|
+
"failureDetails": [],
|
|
1371
|
+
"failureMessages": [],
|
|
1372
|
+
"fullName": "Allergies testing for strawberries allergy allergic to strawberries and something else",
|
|
1373
|
+
"invocations": 1,
|
|
1374
|
+
"location": null,
|
|
1375
|
+
"numPassingAsserts": 0,
|
|
1376
|
+
"retryReasons": [],
|
|
1377
|
+
"status": "pending",
|
|
1378
|
+
"title": "allergic to strawberries and something else"
|
|
1379
|
+
},
|
|
1380
|
+
{
|
|
1381
|
+
"ancestorTitles": [
|
|
1382
|
+
"Allergies",
|
|
1383
|
+
"testing for strawberries allergy"
|
|
1384
|
+
],
|
|
1385
|
+
"duration": null,
|
|
1386
|
+
"failureDetails": [],
|
|
1387
|
+
"failureMessages": [],
|
|
1388
|
+
"fullName": "Allergies testing for strawberries allergy allergic to something, but not strawberries",
|
|
1389
|
+
"invocations": 1,
|
|
1390
|
+
"location": null,
|
|
1391
|
+
"numPassingAsserts": 0,
|
|
1392
|
+
"retryReasons": [],
|
|
1393
|
+
"status": "pending",
|
|
1394
|
+
"title": "allergic to something, but not strawberries"
|
|
1395
|
+
},
|
|
1396
|
+
{
|
|
1397
|
+
"ancestorTitles": [
|
|
1398
|
+
"Allergies",
|
|
1399
|
+
"testing for strawberries allergy"
|
|
1400
|
+
],
|
|
1401
|
+
"duration": null,
|
|
1402
|
+
"failureDetails": [],
|
|
1403
|
+
"failureMessages": [],
|
|
1404
|
+
"fullName": "Allergies testing for strawberries allergy allergic to everything",
|
|
1405
|
+
"invocations": 1,
|
|
1406
|
+
"location": null,
|
|
1407
|
+
"numPassingAsserts": 0,
|
|
1408
|
+
"retryReasons": [],
|
|
1409
|
+
"status": "pending",
|
|
1410
|
+
"title": "allergic to everything"
|
|
1411
|
+
},
|
|
1412
|
+
{
|
|
1413
|
+
"ancestorTitles": [
|
|
1414
|
+
"Allergies",
|
|
1415
|
+
"testing for tomatoes allergy"
|
|
1416
|
+
],
|
|
1417
|
+
"duration": null,
|
|
1418
|
+
"failureDetails": [],
|
|
1419
|
+
"failureMessages": [],
|
|
1420
|
+
"fullName": "Allergies testing for tomatoes allergy not allergic to anything",
|
|
1421
|
+
"invocations": 1,
|
|
1422
|
+
"location": null,
|
|
1423
|
+
"numPassingAsserts": 0,
|
|
1424
|
+
"retryReasons": [],
|
|
1425
|
+
"status": "pending",
|
|
1426
|
+
"title": "not allergic to anything"
|
|
1427
|
+
},
|
|
1428
|
+
{
|
|
1429
|
+
"ancestorTitles": [
|
|
1430
|
+
"Allergies",
|
|
1431
|
+
"testing for tomatoes allergy"
|
|
1432
|
+
],
|
|
1433
|
+
"duration": null,
|
|
1434
|
+
"failureDetails": [],
|
|
1435
|
+
"failureMessages": [],
|
|
1436
|
+
"fullName": "Allergies testing for tomatoes allergy allergic only to tomatoes",
|
|
1437
|
+
"invocations": 1,
|
|
1438
|
+
"location": null,
|
|
1439
|
+
"numPassingAsserts": 0,
|
|
1440
|
+
"retryReasons": [],
|
|
1441
|
+
"status": "pending",
|
|
1442
|
+
"title": "allergic only to tomatoes"
|
|
1443
|
+
},
|
|
1444
|
+
{
|
|
1445
|
+
"ancestorTitles": [
|
|
1446
|
+
"Allergies",
|
|
1447
|
+
"testing for tomatoes allergy"
|
|
1448
|
+
],
|
|
1449
|
+
"duration": null,
|
|
1450
|
+
"failureDetails": [],
|
|
1451
|
+
"failureMessages": [],
|
|
1452
|
+
"fullName": "Allergies testing for tomatoes allergy allergic to tomatoes and something else",
|
|
1453
|
+
"invocations": 1,
|
|
1454
|
+
"location": null,
|
|
1455
|
+
"numPassingAsserts": 0,
|
|
1456
|
+
"retryReasons": [],
|
|
1457
|
+
"status": "pending",
|
|
1458
|
+
"title": "allergic to tomatoes and something else"
|
|
1459
|
+
},
|
|
1460
|
+
{
|
|
1461
|
+
"ancestorTitles": [
|
|
1462
|
+
"Allergies",
|
|
1463
|
+
"testing for tomatoes allergy"
|
|
1464
|
+
],
|
|
1465
|
+
"duration": null,
|
|
1466
|
+
"failureDetails": [],
|
|
1467
|
+
"failureMessages": [],
|
|
1468
|
+
"fullName": "Allergies testing for tomatoes allergy allergic to something, but not tomatoes",
|
|
1469
|
+
"invocations": 1,
|
|
1470
|
+
"location": null,
|
|
1471
|
+
"numPassingAsserts": 0,
|
|
1472
|
+
"retryReasons": [],
|
|
1473
|
+
"status": "pending",
|
|
1474
|
+
"title": "allergic to something, but not tomatoes"
|
|
1475
|
+
},
|
|
1476
|
+
{
|
|
1477
|
+
"ancestorTitles": [
|
|
1478
|
+
"Allergies",
|
|
1479
|
+
"testing for tomatoes allergy"
|
|
1480
|
+
],
|
|
1481
|
+
"duration": null,
|
|
1482
|
+
"failureDetails": [],
|
|
1483
|
+
"failureMessages": [],
|
|
1484
|
+
"fullName": "Allergies testing for tomatoes allergy allergic to everything",
|
|
1485
|
+
"invocations": 1,
|
|
1486
|
+
"location": null,
|
|
1487
|
+
"numPassingAsserts": 0,
|
|
1488
|
+
"retryReasons": [],
|
|
1489
|
+
"status": "pending",
|
|
1490
|
+
"title": "allergic to everything"
|
|
1491
|
+
},
|
|
1492
|
+
{
|
|
1493
|
+
"ancestorTitles": [
|
|
1494
|
+
"Allergies",
|
|
1495
|
+
"testing for chocolate allergy"
|
|
1496
|
+
],
|
|
1497
|
+
"duration": null,
|
|
1498
|
+
"failureDetails": [],
|
|
1499
|
+
"failureMessages": [],
|
|
1500
|
+
"fullName": "Allergies testing for chocolate allergy not allergic to anything",
|
|
1501
|
+
"invocations": 1,
|
|
1502
|
+
"location": null,
|
|
1503
|
+
"numPassingAsserts": 0,
|
|
1504
|
+
"retryReasons": [],
|
|
1505
|
+
"status": "pending",
|
|
1506
|
+
"title": "not allergic to anything"
|
|
1507
|
+
},
|
|
1508
|
+
{
|
|
1509
|
+
"ancestorTitles": [
|
|
1510
|
+
"Allergies",
|
|
1511
|
+
"testing for chocolate allergy"
|
|
1512
|
+
],
|
|
1513
|
+
"duration": null,
|
|
1514
|
+
"failureDetails": [],
|
|
1515
|
+
"failureMessages": [],
|
|
1516
|
+
"fullName": "Allergies testing for chocolate allergy allergic only to chocolate",
|
|
1517
|
+
"invocations": 1,
|
|
1518
|
+
"location": null,
|
|
1519
|
+
"numPassingAsserts": 0,
|
|
1520
|
+
"retryReasons": [],
|
|
1521
|
+
"status": "pending",
|
|
1522
|
+
"title": "allergic only to chocolate"
|
|
1523
|
+
},
|
|
1524
|
+
{
|
|
1525
|
+
"ancestorTitles": [
|
|
1526
|
+
"Allergies",
|
|
1527
|
+
"testing for chocolate allergy"
|
|
1528
|
+
],
|
|
1529
|
+
"duration": null,
|
|
1530
|
+
"failureDetails": [],
|
|
1531
|
+
"failureMessages": [],
|
|
1532
|
+
"fullName": "Allergies testing for chocolate allergy allergic to chocolate and something else",
|
|
1533
|
+
"invocations": 1,
|
|
1534
|
+
"location": null,
|
|
1535
|
+
"numPassingAsserts": 0,
|
|
1536
|
+
"retryReasons": [],
|
|
1537
|
+
"status": "pending",
|
|
1538
|
+
"title": "allergic to chocolate and something else"
|
|
1539
|
+
},
|
|
1540
|
+
{
|
|
1541
|
+
"ancestorTitles": [
|
|
1542
|
+
"Allergies",
|
|
1543
|
+
"testing for chocolate allergy"
|
|
1544
|
+
],
|
|
1545
|
+
"duration": null,
|
|
1546
|
+
"failureDetails": [],
|
|
1547
|
+
"failureMessages": [],
|
|
1548
|
+
"fullName": "Allergies testing for chocolate allergy allergic to something, but not chocolate",
|
|
1549
|
+
"invocations": 1,
|
|
1550
|
+
"location": null,
|
|
1551
|
+
"numPassingAsserts": 0,
|
|
1552
|
+
"retryReasons": [],
|
|
1553
|
+
"status": "pending",
|
|
1554
|
+
"title": "allergic to something, but not chocolate"
|
|
1555
|
+
},
|
|
1556
|
+
{
|
|
1557
|
+
"ancestorTitles": [
|
|
1558
|
+
"Allergies",
|
|
1559
|
+
"testing for chocolate allergy"
|
|
1560
|
+
],
|
|
1561
|
+
"duration": null,
|
|
1562
|
+
"failureDetails": [],
|
|
1563
|
+
"failureMessages": [],
|
|
1564
|
+
"fullName": "Allergies testing for chocolate allergy allergic to everything",
|
|
1565
|
+
"invocations": 1,
|
|
1566
|
+
"location": null,
|
|
1567
|
+
"numPassingAsserts": 0,
|
|
1568
|
+
"retryReasons": [],
|
|
1569
|
+
"status": "pending",
|
|
1570
|
+
"title": "allergic to everything"
|
|
1571
|
+
},
|
|
1572
|
+
{
|
|
1573
|
+
"ancestorTitles": [
|
|
1574
|
+
"Allergies",
|
|
1575
|
+
"testing for pollen allergy"
|
|
1576
|
+
],
|
|
1577
|
+
"duration": null,
|
|
1578
|
+
"failureDetails": [],
|
|
1579
|
+
"failureMessages": [],
|
|
1580
|
+
"fullName": "Allergies testing for pollen allergy not allergic to anything",
|
|
1581
|
+
"invocations": 1,
|
|
1582
|
+
"location": null,
|
|
1583
|
+
"numPassingAsserts": 0,
|
|
1584
|
+
"retryReasons": [],
|
|
1585
|
+
"status": "pending",
|
|
1586
|
+
"title": "not allergic to anything"
|
|
1587
|
+
},
|
|
1588
|
+
{
|
|
1589
|
+
"ancestorTitles": [
|
|
1590
|
+
"Allergies",
|
|
1591
|
+
"testing for pollen allergy"
|
|
1592
|
+
],
|
|
1593
|
+
"duration": null,
|
|
1594
|
+
"failureDetails": [],
|
|
1595
|
+
"failureMessages": [],
|
|
1596
|
+
"fullName": "Allergies testing for pollen allergy allergic only to pollen",
|
|
1597
|
+
"invocations": 1,
|
|
1598
|
+
"location": null,
|
|
1599
|
+
"numPassingAsserts": 0,
|
|
1600
|
+
"retryReasons": [],
|
|
1601
|
+
"status": "pending",
|
|
1602
|
+
"title": "allergic only to pollen"
|
|
1603
|
+
},
|
|
1604
|
+
{
|
|
1605
|
+
"ancestorTitles": [
|
|
1606
|
+
"Allergies",
|
|
1607
|
+
"testing for pollen allergy"
|
|
1608
|
+
],
|
|
1609
|
+
"duration": null,
|
|
1610
|
+
"failureDetails": [],
|
|
1611
|
+
"failureMessages": [],
|
|
1612
|
+
"fullName": "Allergies testing for pollen allergy allergic to pollen and something else",
|
|
1613
|
+
"invocations": 1,
|
|
1614
|
+
"location": null,
|
|
1615
|
+
"numPassingAsserts": 0,
|
|
1616
|
+
"retryReasons": [],
|
|
1617
|
+
"status": "pending",
|
|
1618
|
+
"title": "allergic to pollen and something else"
|
|
1619
|
+
},
|
|
1620
|
+
{
|
|
1621
|
+
"ancestorTitles": [
|
|
1622
|
+
"Allergies",
|
|
1623
|
+
"testing for pollen allergy"
|
|
1624
|
+
],
|
|
1625
|
+
"duration": null,
|
|
1626
|
+
"failureDetails": [],
|
|
1627
|
+
"failureMessages": [],
|
|
1628
|
+
"fullName": "Allergies testing for pollen allergy allergic to something, but not pollen",
|
|
1629
|
+
"invocations": 1,
|
|
1630
|
+
"location": null,
|
|
1631
|
+
"numPassingAsserts": 0,
|
|
1632
|
+
"retryReasons": [],
|
|
1633
|
+
"status": "pending",
|
|
1634
|
+
"title": "allergic to something, but not pollen"
|
|
1635
|
+
},
|
|
1636
|
+
{
|
|
1637
|
+
"ancestorTitles": [
|
|
1638
|
+
"Allergies",
|
|
1639
|
+
"testing for pollen allergy"
|
|
1640
|
+
],
|
|
1641
|
+
"duration": null,
|
|
1642
|
+
"failureDetails": [],
|
|
1643
|
+
"failureMessages": [],
|
|
1644
|
+
"fullName": "Allergies testing for pollen allergy allergic to everything",
|
|
1645
|
+
"invocations": 1,
|
|
1646
|
+
"location": null,
|
|
1647
|
+
"numPassingAsserts": 0,
|
|
1648
|
+
"retryReasons": [],
|
|
1649
|
+
"status": "pending",
|
|
1650
|
+
"title": "allergic to everything"
|
|
1651
|
+
},
|
|
1652
|
+
{
|
|
1653
|
+
"ancestorTitles": [
|
|
1654
|
+
"Allergies",
|
|
1655
|
+
"testing for cats allergy"
|
|
1656
|
+
],
|
|
1657
|
+
"duration": null,
|
|
1658
|
+
"failureDetails": [],
|
|
1659
|
+
"failureMessages": [],
|
|
1660
|
+
"fullName": "Allergies testing for cats allergy not allergic to anything",
|
|
1661
|
+
"invocations": 1,
|
|
1662
|
+
"location": null,
|
|
1663
|
+
"numPassingAsserts": 0,
|
|
1664
|
+
"retryReasons": [],
|
|
1665
|
+
"status": "pending",
|
|
1666
|
+
"title": "not allergic to anything"
|
|
1667
|
+
},
|
|
1668
|
+
{
|
|
1669
|
+
"ancestorTitles": [
|
|
1670
|
+
"Allergies",
|
|
1671
|
+
"testing for cats allergy"
|
|
1672
|
+
],
|
|
1673
|
+
"duration": null,
|
|
1674
|
+
"failureDetails": [],
|
|
1675
|
+
"failureMessages": [],
|
|
1676
|
+
"fullName": "Allergies testing for cats allergy allergic only to cats",
|
|
1677
|
+
"invocations": 1,
|
|
1678
|
+
"location": null,
|
|
1679
|
+
"numPassingAsserts": 0,
|
|
1680
|
+
"retryReasons": [],
|
|
1681
|
+
"status": "pending",
|
|
1682
|
+
"title": "allergic only to cats"
|
|
1683
|
+
},
|
|
1684
|
+
{
|
|
1685
|
+
"ancestorTitles": [
|
|
1686
|
+
"Allergies",
|
|
1687
|
+
"testing for cats allergy"
|
|
1688
|
+
],
|
|
1689
|
+
"duration": null,
|
|
1690
|
+
"failureDetails": [],
|
|
1691
|
+
"failureMessages": [],
|
|
1692
|
+
"fullName": "Allergies testing for cats allergy allergic to cats and something else",
|
|
1693
|
+
"invocations": 1,
|
|
1694
|
+
"location": null,
|
|
1695
|
+
"numPassingAsserts": 0,
|
|
1696
|
+
"retryReasons": [],
|
|
1697
|
+
"status": "pending",
|
|
1698
|
+
"title": "allergic to cats and something else"
|
|
1699
|
+
},
|
|
1700
|
+
{
|
|
1701
|
+
"ancestorTitles": [
|
|
1702
|
+
"Allergies",
|
|
1703
|
+
"testing for cats allergy"
|
|
1704
|
+
],
|
|
1705
|
+
"duration": null,
|
|
1706
|
+
"failureDetails": [],
|
|
1707
|
+
"failureMessages": [],
|
|
1708
|
+
"fullName": "Allergies testing for cats allergy allergic to something, but not cats",
|
|
1709
|
+
"invocations": 1,
|
|
1710
|
+
"location": null,
|
|
1711
|
+
"numPassingAsserts": 0,
|
|
1712
|
+
"retryReasons": [],
|
|
1713
|
+
"status": "pending",
|
|
1714
|
+
"title": "allergic to something, but not cats"
|
|
1715
|
+
},
|
|
1716
|
+
{
|
|
1717
|
+
"ancestorTitles": [
|
|
1718
|
+
"Allergies",
|
|
1719
|
+
"testing for cats allergy"
|
|
1720
|
+
],
|
|
1721
|
+
"duration": null,
|
|
1722
|
+
"failureDetails": [],
|
|
1723
|
+
"failureMessages": [],
|
|
1724
|
+
"fullName": "Allergies testing for cats allergy allergic to everything",
|
|
1725
|
+
"invocations": 1,
|
|
1726
|
+
"location": null,
|
|
1727
|
+
"numPassingAsserts": 0,
|
|
1728
|
+
"retryReasons": [],
|
|
1729
|
+
"status": "pending",
|
|
1730
|
+
"title": "allergic to everything"
|
|
1731
|
+
},
|
|
1732
|
+
{
|
|
1733
|
+
"ancestorTitles": [
|
|
1734
|
+
"Allergies",
|
|
1735
|
+
"list when:"
|
|
1736
|
+
],
|
|
1737
|
+
"duration": null,
|
|
1738
|
+
"failureDetails": [],
|
|
1739
|
+
"failureMessages": [],
|
|
1740
|
+
"fullName": "Allergies list when: no allergies",
|
|
1741
|
+
"invocations": 1,
|
|
1742
|
+
"location": null,
|
|
1743
|
+
"numPassingAsserts": 0,
|
|
1744
|
+
"retryReasons": [],
|
|
1745
|
+
"status": "pending",
|
|
1746
|
+
"title": "no allergies"
|
|
1747
|
+
},
|
|
1748
|
+
{
|
|
1749
|
+
"ancestorTitles": [
|
|
1750
|
+
"Allergies",
|
|
1751
|
+
"list when:"
|
|
1752
|
+
],
|
|
1753
|
+
"duration": null,
|
|
1754
|
+
"failureDetails": [],
|
|
1755
|
+
"failureMessages": [],
|
|
1756
|
+
"fullName": "Allergies list when: just eggs",
|
|
1757
|
+
"invocations": 1,
|
|
1758
|
+
"location": null,
|
|
1759
|
+
"numPassingAsserts": 0,
|
|
1760
|
+
"retryReasons": [],
|
|
1761
|
+
"status": "pending",
|
|
1762
|
+
"title": "just eggs"
|
|
1763
|
+
},
|
|
1764
|
+
{
|
|
1765
|
+
"ancestorTitles": [
|
|
1766
|
+
"Allergies",
|
|
1767
|
+
"list when:"
|
|
1768
|
+
],
|
|
1769
|
+
"duration": null,
|
|
1770
|
+
"failureDetails": [],
|
|
1771
|
+
"failureMessages": [],
|
|
1772
|
+
"fullName": "Allergies list when: just peanuts",
|
|
1773
|
+
"invocations": 1,
|
|
1774
|
+
"location": null,
|
|
1775
|
+
"numPassingAsserts": 0,
|
|
1776
|
+
"retryReasons": [],
|
|
1777
|
+
"status": "pending",
|
|
1778
|
+
"title": "just peanuts"
|
|
1779
|
+
},
|
|
1780
|
+
{
|
|
1781
|
+
"ancestorTitles": [
|
|
1782
|
+
"Allergies",
|
|
1783
|
+
"list when:"
|
|
1784
|
+
],
|
|
1785
|
+
"duration": null,
|
|
1786
|
+
"failureDetails": [],
|
|
1787
|
+
"failureMessages": [],
|
|
1788
|
+
"fullName": "Allergies list when: just strawberries",
|
|
1789
|
+
"invocations": 1,
|
|
1790
|
+
"location": null,
|
|
1791
|
+
"numPassingAsserts": 0,
|
|
1792
|
+
"retryReasons": [],
|
|
1793
|
+
"status": "pending",
|
|
1794
|
+
"title": "just strawberries"
|
|
1795
|
+
},
|
|
1796
|
+
{
|
|
1797
|
+
"ancestorTitles": [
|
|
1798
|
+
"Allergies",
|
|
1799
|
+
"list when:"
|
|
1800
|
+
],
|
|
1801
|
+
"duration": null,
|
|
1802
|
+
"failureDetails": [],
|
|
1803
|
+
"failureMessages": [],
|
|
1804
|
+
"fullName": "Allergies list when: eggs and peanuts",
|
|
1805
|
+
"invocations": 1,
|
|
1806
|
+
"location": null,
|
|
1807
|
+
"numPassingAsserts": 0,
|
|
1808
|
+
"retryReasons": [],
|
|
1809
|
+
"status": "pending",
|
|
1810
|
+
"title": "eggs and peanuts"
|
|
1811
|
+
},
|
|
1812
|
+
{
|
|
1813
|
+
"ancestorTitles": [
|
|
1814
|
+
"Allergies",
|
|
1815
|
+
"list when:"
|
|
1816
|
+
],
|
|
1817
|
+
"duration": null,
|
|
1818
|
+
"failureDetails": [],
|
|
1819
|
+
"failureMessages": [],
|
|
1820
|
+
"fullName": "Allergies list when: more than eggs but not peanuts",
|
|
1821
|
+
"invocations": 1,
|
|
1822
|
+
"location": null,
|
|
1823
|
+
"numPassingAsserts": 0,
|
|
1824
|
+
"retryReasons": [],
|
|
1825
|
+
"status": "pending",
|
|
1826
|
+
"title": "more than eggs but not peanuts"
|
|
1827
|
+
},
|
|
1828
|
+
{
|
|
1829
|
+
"ancestorTitles": [
|
|
1830
|
+
"Allergies",
|
|
1831
|
+
"list when:"
|
|
1832
|
+
],
|
|
1833
|
+
"duration": null,
|
|
1834
|
+
"failureDetails": [],
|
|
1835
|
+
"failureMessages": [],
|
|
1836
|
+
"fullName": "Allergies list when: lots of stuff",
|
|
1837
|
+
"invocations": 1,
|
|
1838
|
+
"location": null,
|
|
1839
|
+
"numPassingAsserts": 0,
|
|
1840
|
+
"retryReasons": [],
|
|
1841
|
+
"status": "pending",
|
|
1842
|
+
"title": "lots of stuff"
|
|
1843
|
+
},
|
|
1844
|
+
{
|
|
1845
|
+
"ancestorTitles": [
|
|
1846
|
+
"Allergies",
|
|
1847
|
+
"list when:"
|
|
1848
|
+
],
|
|
1849
|
+
"duration": null,
|
|
1850
|
+
"failureDetails": [],
|
|
1851
|
+
"failureMessages": [],
|
|
1852
|
+
"fullName": "Allergies list when: everything",
|
|
1853
|
+
"invocations": 1,
|
|
1854
|
+
"location": null,
|
|
1855
|
+
"numPassingAsserts": 0,
|
|
1856
|
+
"retryReasons": [],
|
|
1857
|
+
"status": "pending",
|
|
1858
|
+
"title": "everything"
|
|
1859
|
+
},
|
|
1860
|
+
{
|
|
1861
|
+
"ancestorTitles": [
|
|
1862
|
+
"Allergies",
|
|
1863
|
+
"list when:"
|
|
1864
|
+
],
|
|
1865
|
+
"duration": null,
|
|
1866
|
+
"failureDetails": [],
|
|
1867
|
+
"failureMessages": [],
|
|
1868
|
+
"fullName": "Allergies list when: no allergen score parts",
|
|
1869
|
+
"invocations": 1,
|
|
1870
|
+
"location": null,
|
|
1871
|
+
"numPassingAsserts": 0,
|
|
1872
|
+
"retryReasons": [],
|
|
1873
|
+
"status": "pending",
|
|
1874
|
+
"title": "no allergen score parts"
|
|
1875
|
+
},
|
|
1876
|
+
{
|
|
1877
|
+
"ancestorTitles": [
|
|
1878
|
+
"Allergies",
|
|
1879
|
+
"list when:"
|
|
1880
|
+
],
|
|
1881
|
+
"duration": null,
|
|
1882
|
+
"failureDetails": [],
|
|
1883
|
+
"failureMessages": [],
|
|
1884
|
+
"fullName": "Allergies list when: no allergen score parts without highest valid score",
|
|
1885
|
+
"invocations": 1,
|
|
1886
|
+
"location": null,
|
|
1887
|
+
"numPassingAsserts": 0,
|
|
1888
|
+
"retryReasons": [],
|
|
1889
|
+
"status": "pending",
|
|
1890
|
+
"title": "no allergen score parts without highest valid score"
|
|
1891
|
+
}
|
|
1892
|
+
],
|
|
1893
|
+
"endTime": 1754263795091,
|
|
1894
|
+
"message": "",
|
|
1895
|
+
"name": "/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/allergies/allergies.spec.js",
|
|
1896
|
+
"startTime": 1754263794980,
|
|
1897
|
+
"status": "focused",
|
|
1898
|
+
"summary": ""
|
|
1899
|
+
}
|
|
1900
|
+
],
|
|
1901
|
+
"wasInterrupted": false
|
|
1902
|
+
}
|
|
1903
|
+
},
|
|
1904
|
+
"timeElapsed": 302.56,
|
|
1905
|
+
"cost": 0,
|
|
1906
|
+
"startTime": "2025-08-03T23:24:52.541Z",
|
|
1907
|
+
"endTime": "2025-08-03T23:29:55.101Z",
|
|
1908
|
+
"finalOutput": "Task terminated due to limits reached. Turn: 10/30, Cost: $0.0000/$1.0000, Runtime: 301903ms/300000ms"
|
|
1909
|
+
},
|
|
1910
|
+
{
|
|
1911
|
+
"exerciseName": "alphametics",
|
|
1912
|
+
"status": "success",
|
|
1913
|
+
"turns": 13,
|
|
1914
|
+
"testResult": {
|
|
1915
|
+
"passed": 1,
|
|
1916
|
+
"failed": 0,
|
|
1917
|
+
"total": 9,
|
|
1918
|
+
"skipped": 8,
|
|
1919
|
+
"success": true,
|
|
1920
|
+
"output": "{\"numFailedTestSuites\":0,\"numFailedTests\":0,\"numPassedTestSuites\":1,\"numPassedTests\":1,\"numPendingTestSuites\":0,\"numPendingTests\":8,\"numRuntimeErrorTestSuites\":0,\"numTodoTests\":0,\"numTotalTestSuites\":1,\"numTotalTests\":9,\"openHandles\":[],\"snapshot\":{\"added\":0,\"didUpdate\":false,\"failure\":false,\"filesAdded\":0,\"filesRemoved\":0,\"filesRemovedList\":[],\"filesUnmatched\":0,\"filesUpdated\":0,\"matched\":0,\"total\":0,\"unchecked\":0,\"uncheckedKeysByFile\":[],\"unmatched\":0,\"updated\":0},\"startTime\":1754264172235,\"success\":true,\"testResults\":[{\"assertionResults\":[{\"ancestorTitles\":[\"Solve the alphametics puzzle\"],\"duration\":3372,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Solve the alphametics puzzle puzzle with three letters\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"puzzle with three letters\"},{\"ancestorTitles\":[\"Solve the alphametics puzzle\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Solve the alphametics puzzle solution must have unique value for each letter\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"solution must have unique value for each letter\"},{\"ancestorTitles\":[\"Solve the alphametics puzzle\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Solve the alphametics puzzle leading zero solution is invalid\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"leading zero solution is invalid\"},{\"ancestorTitles\":[\"Solve the alphametics puzzle\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Solve the alphametics puzzle puzzle with four letters\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"puzzle with four letters\"},{\"ancestorTitles\":[\"Solve the alphametics puzzle\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Solve the alphametics puzzle puzzle with six letters\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"puzzle with six letters\"},{\"ancestorTitles\":[\"Solve the alphametics puzzle\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Solve the alphametics puzzle puzzle with seven letters\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"puzzle with seven letters\"},{\"ancestorTitles\":[\"Solve the alphametics puzzle\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Solve the alphametics puzzle puzzle with eight letters\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"puzzle with eight letters\"},{\"ancestorTitles\":[\"Solve the alphametics puzzle\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Solve the alphametics puzzle puzzle with ten letters\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"puzzle with ten letters\"},{\"ancestorTitles\":[\"Solve the alphametics puzzle\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Solve the alphametics puzzle puzzle with ten letters and 199 addends\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"puzzle with ten letters and 199 addends\"}],\"endTime\":1754264175770,\"message\":\"\",\"name\":\"/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/alphametics/alphametics.spec.js\",\"startTime\":1754264172254,\"status\":\"focused\",\"summary\":\"\"}],\"wasInterrupted\":false}\n",
|
|
1921
|
+
"details": {
|
|
1922
|
+
"numFailedTestSuites": 0,
|
|
1923
|
+
"numFailedTests": 0,
|
|
1924
|
+
"numPassedTestSuites": 1,
|
|
1925
|
+
"numPassedTests": 1,
|
|
1926
|
+
"numPendingTestSuites": 0,
|
|
1927
|
+
"numPendingTests": 8,
|
|
1928
|
+
"numRuntimeErrorTestSuites": 0,
|
|
1929
|
+
"numTodoTests": 0,
|
|
1930
|
+
"numTotalTestSuites": 1,
|
|
1931
|
+
"numTotalTests": 9,
|
|
1932
|
+
"openHandles": [],
|
|
1933
|
+
"snapshot": {
|
|
1934
|
+
"added": 0,
|
|
1935
|
+
"didUpdate": false,
|
|
1936
|
+
"failure": false,
|
|
1937
|
+
"filesAdded": 0,
|
|
1938
|
+
"filesRemoved": 0,
|
|
1939
|
+
"filesRemovedList": [],
|
|
1940
|
+
"filesUnmatched": 0,
|
|
1941
|
+
"filesUpdated": 0,
|
|
1942
|
+
"matched": 0,
|
|
1943
|
+
"total": 0,
|
|
1944
|
+
"unchecked": 0,
|
|
1945
|
+
"uncheckedKeysByFile": [],
|
|
1946
|
+
"unmatched": 0,
|
|
1947
|
+
"updated": 0
|
|
1948
|
+
},
|
|
1949
|
+
"startTime": 1754264172235,
|
|
1950
|
+
"success": true,
|
|
1951
|
+
"testResults": [
|
|
1952
|
+
{
|
|
1953
|
+
"assertionResults": [
|
|
1954
|
+
{
|
|
1955
|
+
"ancestorTitles": [
|
|
1956
|
+
"Solve the alphametics puzzle"
|
|
1957
|
+
],
|
|
1958
|
+
"duration": 3372,
|
|
1959
|
+
"failureDetails": [],
|
|
1960
|
+
"failureMessages": [],
|
|
1961
|
+
"fullName": "Solve the alphametics puzzle puzzle with three letters",
|
|
1962
|
+
"invocations": 1,
|
|
1963
|
+
"location": null,
|
|
1964
|
+
"numPassingAsserts": 1,
|
|
1965
|
+
"retryReasons": [],
|
|
1966
|
+
"status": "passed",
|
|
1967
|
+
"title": "puzzle with three letters"
|
|
1968
|
+
},
|
|
1969
|
+
{
|
|
1970
|
+
"ancestorTitles": [
|
|
1971
|
+
"Solve the alphametics puzzle"
|
|
1972
|
+
],
|
|
1973
|
+
"duration": null,
|
|
1974
|
+
"failureDetails": [],
|
|
1975
|
+
"failureMessages": [],
|
|
1976
|
+
"fullName": "Solve the alphametics puzzle solution must have unique value for each letter",
|
|
1977
|
+
"invocations": 1,
|
|
1978
|
+
"location": null,
|
|
1979
|
+
"numPassingAsserts": 0,
|
|
1980
|
+
"retryReasons": [],
|
|
1981
|
+
"status": "pending",
|
|
1982
|
+
"title": "solution must have unique value for each letter"
|
|
1983
|
+
},
|
|
1984
|
+
{
|
|
1985
|
+
"ancestorTitles": [
|
|
1986
|
+
"Solve the alphametics puzzle"
|
|
1987
|
+
],
|
|
1988
|
+
"duration": null,
|
|
1989
|
+
"failureDetails": [],
|
|
1990
|
+
"failureMessages": [],
|
|
1991
|
+
"fullName": "Solve the alphametics puzzle leading zero solution is invalid",
|
|
1992
|
+
"invocations": 1,
|
|
1993
|
+
"location": null,
|
|
1994
|
+
"numPassingAsserts": 0,
|
|
1995
|
+
"retryReasons": [],
|
|
1996
|
+
"status": "pending",
|
|
1997
|
+
"title": "leading zero solution is invalid"
|
|
1998
|
+
},
|
|
1999
|
+
{
|
|
2000
|
+
"ancestorTitles": [
|
|
2001
|
+
"Solve the alphametics puzzle"
|
|
2002
|
+
],
|
|
2003
|
+
"duration": null,
|
|
2004
|
+
"failureDetails": [],
|
|
2005
|
+
"failureMessages": [],
|
|
2006
|
+
"fullName": "Solve the alphametics puzzle puzzle with four letters",
|
|
2007
|
+
"invocations": 1,
|
|
2008
|
+
"location": null,
|
|
2009
|
+
"numPassingAsserts": 0,
|
|
2010
|
+
"retryReasons": [],
|
|
2011
|
+
"status": "pending",
|
|
2012
|
+
"title": "puzzle with four letters"
|
|
2013
|
+
},
|
|
2014
|
+
{
|
|
2015
|
+
"ancestorTitles": [
|
|
2016
|
+
"Solve the alphametics puzzle"
|
|
2017
|
+
],
|
|
2018
|
+
"duration": null,
|
|
2019
|
+
"failureDetails": [],
|
|
2020
|
+
"failureMessages": [],
|
|
2021
|
+
"fullName": "Solve the alphametics puzzle puzzle with six letters",
|
|
2022
|
+
"invocations": 1,
|
|
2023
|
+
"location": null,
|
|
2024
|
+
"numPassingAsserts": 0,
|
|
2025
|
+
"retryReasons": [],
|
|
2026
|
+
"status": "pending",
|
|
2027
|
+
"title": "puzzle with six letters"
|
|
2028
|
+
},
|
|
2029
|
+
{
|
|
2030
|
+
"ancestorTitles": [
|
|
2031
|
+
"Solve the alphametics puzzle"
|
|
2032
|
+
],
|
|
2033
|
+
"duration": null,
|
|
2034
|
+
"failureDetails": [],
|
|
2035
|
+
"failureMessages": [],
|
|
2036
|
+
"fullName": "Solve the alphametics puzzle puzzle with seven letters",
|
|
2037
|
+
"invocations": 1,
|
|
2038
|
+
"location": null,
|
|
2039
|
+
"numPassingAsserts": 0,
|
|
2040
|
+
"retryReasons": [],
|
|
2041
|
+
"status": "pending",
|
|
2042
|
+
"title": "puzzle with seven letters"
|
|
2043
|
+
},
|
|
2044
|
+
{
|
|
2045
|
+
"ancestorTitles": [
|
|
2046
|
+
"Solve the alphametics puzzle"
|
|
2047
|
+
],
|
|
2048
|
+
"duration": null,
|
|
2049
|
+
"failureDetails": [],
|
|
2050
|
+
"failureMessages": [],
|
|
2051
|
+
"fullName": "Solve the alphametics puzzle puzzle with eight letters",
|
|
2052
|
+
"invocations": 1,
|
|
2053
|
+
"location": null,
|
|
2054
|
+
"numPassingAsserts": 0,
|
|
2055
|
+
"retryReasons": [],
|
|
2056
|
+
"status": "pending",
|
|
2057
|
+
"title": "puzzle with eight letters"
|
|
2058
|
+
},
|
|
2059
|
+
{
|
|
2060
|
+
"ancestorTitles": [
|
|
2061
|
+
"Solve the alphametics puzzle"
|
|
2062
|
+
],
|
|
2063
|
+
"duration": null,
|
|
2064
|
+
"failureDetails": [],
|
|
2065
|
+
"failureMessages": [],
|
|
2066
|
+
"fullName": "Solve the alphametics puzzle puzzle with ten letters",
|
|
2067
|
+
"invocations": 1,
|
|
2068
|
+
"location": null,
|
|
2069
|
+
"numPassingAsserts": 0,
|
|
2070
|
+
"retryReasons": [],
|
|
2071
|
+
"status": "pending",
|
|
2072
|
+
"title": "puzzle with ten letters"
|
|
2073
|
+
},
|
|
2074
|
+
{
|
|
2075
|
+
"ancestorTitles": [
|
|
2076
|
+
"Solve the alphametics puzzle"
|
|
2077
|
+
],
|
|
2078
|
+
"duration": null,
|
|
2079
|
+
"failureDetails": [],
|
|
2080
|
+
"failureMessages": [],
|
|
2081
|
+
"fullName": "Solve the alphametics puzzle puzzle with ten letters and 199 addends",
|
|
2082
|
+
"invocations": 1,
|
|
2083
|
+
"location": null,
|
|
2084
|
+
"numPassingAsserts": 0,
|
|
2085
|
+
"retryReasons": [],
|
|
2086
|
+
"status": "pending",
|
|
2087
|
+
"title": "puzzle with ten letters and 199 addends"
|
|
2088
|
+
}
|
|
2089
|
+
],
|
|
2090
|
+
"endTime": 1754264175770,
|
|
2091
|
+
"message": "",
|
|
2092
|
+
"name": "/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/alphametics/alphametics.spec.js",
|
|
2093
|
+
"startTime": 1754264172254,
|
|
2094
|
+
"status": "focused",
|
|
2095
|
+
"summary": ""
|
|
2096
|
+
}
|
|
2097
|
+
],
|
|
2098
|
+
"wasInterrupted": false
|
|
2099
|
+
}
|
|
2100
|
+
},
|
|
2101
|
+
"timeElapsed": 380.771,
|
|
2102
|
+
"cost": 0,
|
|
2103
|
+
"startTime": "2025-08-03T23:29:55.126Z",
|
|
2104
|
+
"endTime": "2025-08-03T23:36:15.897Z",
|
|
2105
|
+
"finalOutput": "Task terminated due to limits reached. Turn: 13/30, Cost: $0.0000/$1.0000, Runtime: 376419ms/300000ms"
|
|
2106
|
+
},
|
|
2107
|
+
{
|
|
2108
|
+
"exerciseName": "anagram",
|
|
2109
|
+
"status": "success",
|
|
2110
|
+
"turns": 13,
|
|
2111
|
+
"testResult": {
|
|
2112
|
+
"passed": 1,
|
|
2113
|
+
"failed": 0,
|
|
2114
|
+
"total": 18,
|
|
2115
|
+
"skipped": 17,
|
|
2116
|
+
"success": true,
|
|
2117
|
+
"output": "{\"numFailedTestSuites\":0,\"numFailedTests\":0,\"numPassedTestSuites\":1,\"numPassedTests\":1,\"numPendingTestSuites\":0,\"numPendingTests\":17,\"numRuntimeErrorTestSuites\":0,\"numTodoTests\":0,\"numTotalTestSuites\":1,\"numTotalTests\":18,\"openHandles\":[],\"snapshot\":{\"added\":0,\"didUpdate\":false,\"failure\":false,\"filesAdded\":0,\"filesRemoved\":0,\"filesRemovedList\":[],\"filesUnmatched\":0,\"filesUpdated\":0,\"matched\":0,\"total\":0,\"unchecked\":0,\"uncheckedKeysByFile\":[],\"unmatched\":0,\"updated\":0},\"startTime\":1754264480560,\"success\":true,\"testResults\":[{\"assertionResults\":[{\"ancestorTitles\":[\"Anagram\"],\"duration\":1,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Anagram no matches\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"no matches\"},{\"ancestorTitles\":[\"Anagram\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Anagram detects two anagrams\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"detects two anagrams\"},{\"ancestorTitles\":[\"Anagram\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Anagram does not detect anagram subsets\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"does not detect anagram subsets\"},{\"ancestorTitles\":[\"Anagram\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Anagram detects anagram\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"detects anagram\"},{\"ancestorTitles\":[\"Anagram\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Anagram detects three anagrams\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"detects three anagrams\"},{\"ancestorTitles\":[\"Anagram\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Anagram detects multiple anagrams with different case\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"detects multiple anagrams with different case\"},{\"ancestorTitles\":[\"Anagram\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Anagram does not detect non-anagrams with identical checksum\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"does not detect non-anagrams with identical checksum\"},{\"ancestorTitles\":[\"Anagram\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Anagram detects anagrams case-insensitively\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"detects anagrams case-insensitively\"},{\"ancestorTitles\":[\"Anagram\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Anagram detects anagrams using case-insensitive subject\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"detects anagrams using case-insensitive subject\"},{\"ancestorTitles\":[\"Anagram\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Anagram detects anagrams using case-insensitive possible matches\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"detects anagrams using case-insensitive possible matches\"},{\"ancestorTitles\":[\"Anagram\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Anagram does not detect an anagram if the original word is repeated\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"does not detect an anagram if the original word is repeated\"},{\"ancestorTitles\":[\"Anagram\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Anagram anagrams must use all letters exactly once\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"anagrams must use all letters exactly once\"},{\"ancestorTitles\":[\"Anagram\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Anagram words are not anagrams of themselves\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"words are not anagrams of themselves\"},{\"ancestorTitles\":[\"Anagram\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Anagram words are not anagrams of themselves even if letter case is partially different\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"words are not anagrams of themselves even if letter case is partially different\"},{\"ancestorTitles\":[\"Anagram\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Anagram words are not anagrams of themselves even if letter case is completely different\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"words are not anagrams of themselves even if letter case is completely different\"},{\"ancestorTitles\":[\"Anagram\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Anagram words other than themselves can be anagrams\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"words other than themselves can be anagrams\"},{\"ancestorTitles\":[\"Anagram\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Anagram handles case of greek letters\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"handles case of greek letters\"},{\"ancestorTitles\":[\"Anagram\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Anagram different characters may have the same bytes\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"different characters may have the same bytes\"}],\"endTime\":1754264480689,\"message\":\"\",\"name\":\"/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/anagram/anagram.spec.js\",\"startTime\":1754264480578,\"status\":\"focused\",\"summary\":\"\"}],\"wasInterrupted\":false}\n",
|
|
2118
|
+
"details": {
|
|
2119
|
+
"numFailedTestSuites": 0,
|
|
2120
|
+
"numFailedTests": 0,
|
|
2121
|
+
"numPassedTestSuites": 1,
|
|
2122
|
+
"numPassedTests": 1,
|
|
2123
|
+
"numPendingTestSuites": 0,
|
|
2124
|
+
"numPendingTests": 17,
|
|
2125
|
+
"numRuntimeErrorTestSuites": 0,
|
|
2126
|
+
"numTodoTests": 0,
|
|
2127
|
+
"numTotalTestSuites": 1,
|
|
2128
|
+
"numTotalTests": 18,
|
|
2129
|
+
"openHandles": [],
|
|
2130
|
+
"snapshot": {
|
|
2131
|
+
"added": 0,
|
|
2132
|
+
"didUpdate": false,
|
|
2133
|
+
"failure": false,
|
|
2134
|
+
"filesAdded": 0,
|
|
2135
|
+
"filesRemoved": 0,
|
|
2136
|
+
"filesRemovedList": [],
|
|
2137
|
+
"filesUnmatched": 0,
|
|
2138
|
+
"filesUpdated": 0,
|
|
2139
|
+
"matched": 0,
|
|
2140
|
+
"total": 0,
|
|
2141
|
+
"unchecked": 0,
|
|
2142
|
+
"uncheckedKeysByFile": [],
|
|
2143
|
+
"unmatched": 0,
|
|
2144
|
+
"updated": 0
|
|
2145
|
+
},
|
|
2146
|
+
"startTime": 1754264480560,
|
|
2147
|
+
"success": true,
|
|
2148
|
+
"testResults": [
|
|
2149
|
+
{
|
|
2150
|
+
"assertionResults": [
|
|
2151
|
+
{
|
|
2152
|
+
"ancestorTitles": [
|
|
2153
|
+
"Anagram"
|
|
2154
|
+
],
|
|
2155
|
+
"duration": 1,
|
|
2156
|
+
"failureDetails": [],
|
|
2157
|
+
"failureMessages": [],
|
|
2158
|
+
"fullName": "Anagram no matches",
|
|
2159
|
+
"invocations": 1,
|
|
2160
|
+
"location": null,
|
|
2161
|
+
"numPassingAsserts": 1,
|
|
2162
|
+
"retryReasons": [],
|
|
2163
|
+
"status": "passed",
|
|
2164
|
+
"title": "no matches"
|
|
2165
|
+
},
|
|
2166
|
+
{
|
|
2167
|
+
"ancestorTitles": [
|
|
2168
|
+
"Anagram"
|
|
2169
|
+
],
|
|
2170
|
+
"duration": null,
|
|
2171
|
+
"failureDetails": [],
|
|
2172
|
+
"failureMessages": [],
|
|
2173
|
+
"fullName": "Anagram detects two anagrams",
|
|
2174
|
+
"invocations": 1,
|
|
2175
|
+
"location": null,
|
|
2176
|
+
"numPassingAsserts": 0,
|
|
2177
|
+
"retryReasons": [],
|
|
2178
|
+
"status": "pending",
|
|
2179
|
+
"title": "detects two anagrams"
|
|
2180
|
+
},
|
|
2181
|
+
{
|
|
2182
|
+
"ancestorTitles": [
|
|
2183
|
+
"Anagram"
|
|
2184
|
+
],
|
|
2185
|
+
"duration": null,
|
|
2186
|
+
"failureDetails": [],
|
|
2187
|
+
"failureMessages": [],
|
|
2188
|
+
"fullName": "Anagram does not detect anagram subsets",
|
|
2189
|
+
"invocations": 1,
|
|
2190
|
+
"location": null,
|
|
2191
|
+
"numPassingAsserts": 0,
|
|
2192
|
+
"retryReasons": [],
|
|
2193
|
+
"status": "pending",
|
|
2194
|
+
"title": "does not detect anagram subsets"
|
|
2195
|
+
},
|
|
2196
|
+
{
|
|
2197
|
+
"ancestorTitles": [
|
|
2198
|
+
"Anagram"
|
|
2199
|
+
],
|
|
2200
|
+
"duration": null,
|
|
2201
|
+
"failureDetails": [],
|
|
2202
|
+
"failureMessages": [],
|
|
2203
|
+
"fullName": "Anagram detects anagram",
|
|
2204
|
+
"invocations": 1,
|
|
2205
|
+
"location": null,
|
|
2206
|
+
"numPassingAsserts": 0,
|
|
2207
|
+
"retryReasons": [],
|
|
2208
|
+
"status": "pending",
|
|
2209
|
+
"title": "detects anagram"
|
|
2210
|
+
},
|
|
2211
|
+
{
|
|
2212
|
+
"ancestorTitles": [
|
|
2213
|
+
"Anagram"
|
|
2214
|
+
],
|
|
2215
|
+
"duration": null,
|
|
2216
|
+
"failureDetails": [],
|
|
2217
|
+
"failureMessages": [],
|
|
2218
|
+
"fullName": "Anagram detects three anagrams",
|
|
2219
|
+
"invocations": 1,
|
|
2220
|
+
"location": null,
|
|
2221
|
+
"numPassingAsserts": 0,
|
|
2222
|
+
"retryReasons": [],
|
|
2223
|
+
"status": "pending",
|
|
2224
|
+
"title": "detects three anagrams"
|
|
2225
|
+
},
|
|
2226
|
+
{
|
|
2227
|
+
"ancestorTitles": [
|
|
2228
|
+
"Anagram"
|
|
2229
|
+
],
|
|
2230
|
+
"duration": null,
|
|
2231
|
+
"failureDetails": [],
|
|
2232
|
+
"failureMessages": [],
|
|
2233
|
+
"fullName": "Anagram detects multiple anagrams with different case",
|
|
2234
|
+
"invocations": 1,
|
|
2235
|
+
"location": null,
|
|
2236
|
+
"numPassingAsserts": 0,
|
|
2237
|
+
"retryReasons": [],
|
|
2238
|
+
"status": "pending",
|
|
2239
|
+
"title": "detects multiple anagrams with different case"
|
|
2240
|
+
},
|
|
2241
|
+
{
|
|
2242
|
+
"ancestorTitles": [
|
|
2243
|
+
"Anagram"
|
|
2244
|
+
],
|
|
2245
|
+
"duration": null,
|
|
2246
|
+
"failureDetails": [],
|
|
2247
|
+
"failureMessages": [],
|
|
2248
|
+
"fullName": "Anagram does not detect non-anagrams with identical checksum",
|
|
2249
|
+
"invocations": 1,
|
|
2250
|
+
"location": null,
|
|
2251
|
+
"numPassingAsserts": 0,
|
|
2252
|
+
"retryReasons": [],
|
|
2253
|
+
"status": "pending",
|
|
2254
|
+
"title": "does not detect non-anagrams with identical checksum"
|
|
2255
|
+
},
|
|
2256
|
+
{
|
|
2257
|
+
"ancestorTitles": [
|
|
2258
|
+
"Anagram"
|
|
2259
|
+
],
|
|
2260
|
+
"duration": null,
|
|
2261
|
+
"failureDetails": [],
|
|
2262
|
+
"failureMessages": [],
|
|
2263
|
+
"fullName": "Anagram detects anagrams case-insensitively",
|
|
2264
|
+
"invocations": 1,
|
|
2265
|
+
"location": null,
|
|
2266
|
+
"numPassingAsserts": 0,
|
|
2267
|
+
"retryReasons": [],
|
|
2268
|
+
"status": "pending",
|
|
2269
|
+
"title": "detects anagrams case-insensitively"
|
|
2270
|
+
},
|
|
2271
|
+
{
|
|
2272
|
+
"ancestorTitles": [
|
|
2273
|
+
"Anagram"
|
|
2274
|
+
],
|
|
2275
|
+
"duration": null,
|
|
2276
|
+
"failureDetails": [],
|
|
2277
|
+
"failureMessages": [],
|
|
2278
|
+
"fullName": "Anagram detects anagrams using case-insensitive subject",
|
|
2279
|
+
"invocations": 1,
|
|
2280
|
+
"location": null,
|
|
2281
|
+
"numPassingAsserts": 0,
|
|
2282
|
+
"retryReasons": [],
|
|
2283
|
+
"status": "pending",
|
|
2284
|
+
"title": "detects anagrams using case-insensitive subject"
|
|
2285
|
+
},
|
|
2286
|
+
{
|
|
2287
|
+
"ancestorTitles": [
|
|
2288
|
+
"Anagram"
|
|
2289
|
+
],
|
|
2290
|
+
"duration": null,
|
|
2291
|
+
"failureDetails": [],
|
|
2292
|
+
"failureMessages": [],
|
|
2293
|
+
"fullName": "Anagram detects anagrams using case-insensitive possible matches",
|
|
2294
|
+
"invocations": 1,
|
|
2295
|
+
"location": null,
|
|
2296
|
+
"numPassingAsserts": 0,
|
|
2297
|
+
"retryReasons": [],
|
|
2298
|
+
"status": "pending",
|
|
2299
|
+
"title": "detects anagrams using case-insensitive possible matches"
|
|
2300
|
+
},
|
|
2301
|
+
{
|
|
2302
|
+
"ancestorTitles": [
|
|
2303
|
+
"Anagram"
|
|
2304
|
+
],
|
|
2305
|
+
"duration": null,
|
|
2306
|
+
"failureDetails": [],
|
|
2307
|
+
"failureMessages": [],
|
|
2308
|
+
"fullName": "Anagram does not detect an anagram if the original word is repeated",
|
|
2309
|
+
"invocations": 1,
|
|
2310
|
+
"location": null,
|
|
2311
|
+
"numPassingAsserts": 0,
|
|
2312
|
+
"retryReasons": [],
|
|
2313
|
+
"status": "pending",
|
|
2314
|
+
"title": "does not detect an anagram if the original word is repeated"
|
|
2315
|
+
},
|
|
2316
|
+
{
|
|
2317
|
+
"ancestorTitles": [
|
|
2318
|
+
"Anagram"
|
|
2319
|
+
],
|
|
2320
|
+
"duration": null,
|
|
2321
|
+
"failureDetails": [],
|
|
2322
|
+
"failureMessages": [],
|
|
2323
|
+
"fullName": "Anagram anagrams must use all letters exactly once",
|
|
2324
|
+
"invocations": 1,
|
|
2325
|
+
"location": null,
|
|
2326
|
+
"numPassingAsserts": 0,
|
|
2327
|
+
"retryReasons": [],
|
|
2328
|
+
"status": "pending",
|
|
2329
|
+
"title": "anagrams must use all letters exactly once"
|
|
2330
|
+
},
|
|
2331
|
+
{
|
|
2332
|
+
"ancestorTitles": [
|
|
2333
|
+
"Anagram"
|
|
2334
|
+
],
|
|
2335
|
+
"duration": null,
|
|
2336
|
+
"failureDetails": [],
|
|
2337
|
+
"failureMessages": [],
|
|
2338
|
+
"fullName": "Anagram words are not anagrams of themselves",
|
|
2339
|
+
"invocations": 1,
|
|
2340
|
+
"location": null,
|
|
2341
|
+
"numPassingAsserts": 0,
|
|
2342
|
+
"retryReasons": [],
|
|
2343
|
+
"status": "pending",
|
|
2344
|
+
"title": "words are not anagrams of themselves"
|
|
2345
|
+
},
|
|
2346
|
+
{
|
|
2347
|
+
"ancestorTitles": [
|
|
2348
|
+
"Anagram"
|
|
2349
|
+
],
|
|
2350
|
+
"duration": null,
|
|
2351
|
+
"failureDetails": [],
|
|
2352
|
+
"failureMessages": [],
|
|
2353
|
+
"fullName": "Anagram words are not anagrams of themselves even if letter case is partially different",
|
|
2354
|
+
"invocations": 1,
|
|
2355
|
+
"location": null,
|
|
2356
|
+
"numPassingAsserts": 0,
|
|
2357
|
+
"retryReasons": [],
|
|
2358
|
+
"status": "pending",
|
|
2359
|
+
"title": "words are not anagrams of themselves even if letter case is partially different"
|
|
2360
|
+
},
|
|
2361
|
+
{
|
|
2362
|
+
"ancestorTitles": [
|
|
2363
|
+
"Anagram"
|
|
2364
|
+
],
|
|
2365
|
+
"duration": null,
|
|
2366
|
+
"failureDetails": [],
|
|
2367
|
+
"failureMessages": [],
|
|
2368
|
+
"fullName": "Anagram words are not anagrams of themselves even if letter case is completely different",
|
|
2369
|
+
"invocations": 1,
|
|
2370
|
+
"location": null,
|
|
2371
|
+
"numPassingAsserts": 0,
|
|
2372
|
+
"retryReasons": [],
|
|
2373
|
+
"status": "pending",
|
|
2374
|
+
"title": "words are not anagrams of themselves even if letter case is completely different"
|
|
2375
|
+
},
|
|
2376
|
+
{
|
|
2377
|
+
"ancestorTitles": [
|
|
2378
|
+
"Anagram"
|
|
2379
|
+
],
|
|
2380
|
+
"duration": null,
|
|
2381
|
+
"failureDetails": [],
|
|
2382
|
+
"failureMessages": [],
|
|
2383
|
+
"fullName": "Anagram words other than themselves can be anagrams",
|
|
2384
|
+
"invocations": 1,
|
|
2385
|
+
"location": null,
|
|
2386
|
+
"numPassingAsserts": 0,
|
|
2387
|
+
"retryReasons": [],
|
|
2388
|
+
"status": "pending",
|
|
2389
|
+
"title": "words other than themselves can be anagrams"
|
|
2390
|
+
},
|
|
2391
|
+
{
|
|
2392
|
+
"ancestorTitles": [
|
|
2393
|
+
"Anagram"
|
|
2394
|
+
],
|
|
2395
|
+
"duration": null,
|
|
2396
|
+
"failureDetails": [],
|
|
2397
|
+
"failureMessages": [],
|
|
2398
|
+
"fullName": "Anagram handles case of greek letters",
|
|
2399
|
+
"invocations": 1,
|
|
2400
|
+
"location": null,
|
|
2401
|
+
"numPassingAsserts": 0,
|
|
2402
|
+
"retryReasons": [],
|
|
2403
|
+
"status": "pending",
|
|
2404
|
+
"title": "handles case of greek letters"
|
|
2405
|
+
},
|
|
2406
|
+
{
|
|
2407
|
+
"ancestorTitles": [
|
|
2408
|
+
"Anagram"
|
|
2409
|
+
],
|
|
2410
|
+
"duration": null,
|
|
2411
|
+
"failureDetails": [],
|
|
2412
|
+
"failureMessages": [],
|
|
2413
|
+
"fullName": "Anagram different characters may have the same bytes",
|
|
2414
|
+
"invocations": 1,
|
|
2415
|
+
"location": null,
|
|
2416
|
+
"numPassingAsserts": 0,
|
|
2417
|
+
"retryReasons": [],
|
|
2418
|
+
"status": "pending",
|
|
2419
|
+
"title": "different characters may have the same bytes"
|
|
2420
|
+
}
|
|
2421
|
+
],
|
|
2422
|
+
"endTime": 1754264480689,
|
|
2423
|
+
"message": "",
|
|
2424
|
+
"name": "/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/anagram/anagram.spec.js",
|
|
2425
|
+
"startTime": 1754264480578,
|
|
2426
|
+
"status": "focused",
|
|
2427
|
+
"summary": ""
|
|
2428
|
+
}
|
|
2429
|
+
],
|
|
2430
|
+
"wasInterrupted": false
|
|
2431
|
+
}
|
|
2432
|
+
},
|
|
2433
|
+
"timeElapsed": 304.771,
|
|
2434
|
+
"cost": 0,
|
|
2435
|
+
"startTime": "2025-08-03T23:36:15.928Z",
|
|
2436
|
+
"endTime": "2025-08-03T23:41:20.699Z",
|
|
2437
|
+
"finalOutput": "Task terminated due to limits reached. Turn: 13/30, Cost: $0.0000/$1.0000, Runtime: 304126ms/300000ms"
|
|
2438
|
+
},
|
|
2439
|
+
{
|
|
2440
|
+
"exerciseName": "armstrong-numbers",
|
|
2441
|
+
"status": "success",
|
|
2442
|
+
"turns": 8,
|
|
2443
|
+
"testResult": {
|
|
2444
|
+
"passed": 0,
|
|
2445
|
+
"failed": 1,
|
|
2446
|
+
"total": 11,
|
|
2447
|
+
"skipped": 10,
|
|
2448
|
+
"success": false,
|
|
2449
|
+
"output": "{\"numFailedTestSuites\":1,\"numFailedTests\":1,\"numPassedTestSuites\":0,\"numPassedTests\":0,\"numPendingTestSuites\":0,\"numPendingTests\":10,\"numRuntimeErrorTestSuites\":0,\"numTodoTests\":0,\"numTotalTestSuites\":1,\"numTotalTests\":11,\"openHandles\":[],\"snapshot\":{\"added\":0,\"didUpdate\":false,\"failure\":false,\"filesAdded\":0,\"filesRemoved\":0,\"filesRemovedList\":[],\"filesUnmatched\":0,\"filesUpdated\":0,\"matched\":0,\"total\":0,\"unchecked\":0,\"uncheckedKeysByFile\":[],\"unmatched\":0,\"updated\":0},\"startTime\":1754264894506,\"success\":false,\"testResults\":[{\"assertionResults\":[{\"ancestorTitles\":[\"Armstrong Numbers\"],\"duration\":1,\"failureDetails\":[{}],\"failureMessages\":[\"Error: Remove this line and implement the function\\n at isArmstrongNumber (/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/armstrong-numbers/armstrong-numbers.js:7:9)\\n at Object.<anonymous> (/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/armstrong-numbers/armstrong-numbers.spec.js:6:29)\\n at Promise.then.completed (/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/armstrong-numbers/node_modules/jest-circus/build/utils.js:298:28)\\n at new Promise (<anonymous>)\\n at callAsyncCircusFn (/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/armstrong-numbers/node_modules/jest-circus/build/utils.js:231:10)\\n at _callCircusTest (/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/armstrong-numbers/node_modules/jest-circus/build/run.js:316:40)\\n at _runTest (/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/armstrong-numbers/node_modules/jest-circus/build/run.js:252:3)\\n at _runTestsForDescribeBlock (/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/armstrong-numbers/node_modules/jest-circus/build/run.js:126:9)\\n at _runTestsForDescribeBlock (/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/armstrong-numbers/node_modules/jest-circus/build/run.js:121:9)\\n at run (/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/armstrong-numbers/node_modules/jest-circus/build/run.js:71:3)\\n at runAndTransformResultsToJestFormat (/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/armstrong-numbers/node_modules/jest-circus/build/legacy-code-todo-rewrite/jestAdapterInit.js:122:21)\\n at jestAdapter (/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/armstrong-numbers/node_modules/jest-circus/build/legacy-code-todo-rewrite/jestAdapter.js:79:19)\\n at runTestInternal (/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/armstrong-numbers/node_modules/jest-runner/build/runTest.js:367:16)\\n at runTest (/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/armstrong-numbers/node_modules/jest-runner/build/runTest.js:444:34)\"],\"fullName\":\"Armstrong Numbers Zero is an Armstrong number\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"failed\",\"title\":\"Zero is an Armstrong number\"},{\"ancestorTitles\":[\"Armstrong Numbers\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Armstrong Numbers Single-digit numbers are Armstrong numbers\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"Single-digit numbers are Armstrong numbers\"},{\"ancestorTitles\":[\"Armstrong Numbers\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Armstrong Numbers There are no two-digit Armstrong numbers\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"There are no two-digit Armstrong numbers\"},{\"ancestorTitles\":[\"Armstrong Numbers\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Armstrong Numbers Three-digit number that is an Armstrong number\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"Three-digit number that is an Armstrong number\"},{\"ancestorTitles\":[\"Armstrong Numbers\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Armstrong Numbers Three-digit number that is not an Armstrong number\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"Three-digit number that is not an Armstrong number\"},{\"ancestorTitles\":[\"Armstrong Numbers\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Armstrong Numbers Four-digit number that is an Armstrong number\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"Four-digit number that is an Armstrong number\"},{\"ancestorTitles\":[\"Armstrong Numbers\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Armstrong Numbers Four-digit number that is not an Armstrong number\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"Four-digit number that is not an Armstrong number\"},{\"ancestorTitles\":[\"Armstrong Numbers\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Armstrong Numbers Seven-digit number that is an Armstrong number\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"Seven-digit number that is an Armstrong number\"},{\"ancestorTitles\":[\"Armstrong Numbers\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Armstrong Numbers Seven-digit number that is not an Armstrong number\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"Seven-digit number that is not an Armstrong number\"},{\"ancestorTitles\":[\"Armstrong Numbers\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Armstrong Numbers Armstrong number containing seven zeroes\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"Armstrong number containing seven zeroes\"},{\"ancestorTitles\":[\"Armstrong Numbers\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Armstrong Numbers The largest and last Armstrong number\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"The largest and last Armstrong number\"}],\"endTime\":1754264894623,\"message\":\" ● Armstrong Numbers › Zero is an Armstrong number\\n\\n Remove this line and implement the function\\n\\n 5 |\\n 6 | export const isArmstrongNumber = () => {\\n > 7 | throw new Error('Remove this line and implement the function');\\n | ^\\n 8 | };\\n 9 |\\n\\n at isArmstrongNumber (armstrong-numbers.js:7:9)\\n at Object.<anonymous> (armstrong-numbers.spec.js:6:29)\\n\",\"name\":\"/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/armstrong-numbers/armstrong-numbers.spec.js\",\"startTime\":1754264894525,\"status\":\"failed\",\"summary\":\"\"}],\"wasInterrupted\":false}\n",
|
|
2450
|
+
"details": {
|
|
2451
|
+
"numFailedTestSuites": 1,
|
|
2452
|
+
"numFailedTests": 1,
|
|
2453
|
+
"numPassedTestSuites": 0,
|
|
2454
|
+
"numPassedTests": 0,
|
|
2455
|
+
"numPendingTestSuites": 0,
|
|
2456
|
+
"numPendingTests": 10,
|
|
2457
|
+
"numRuntimeErrorTestSuites": 0,
|
|
2458
|
+
"numTodoTests": 0,
|
|
2459
|
+
"numTotalTestSuites": 1,
|
|
2460
|
+
"numTotalTests": 11,
|
|
2461
|
+
"openHandles": [],
|
|
2462
|
+
"snapshot": {
|
|
2463
|
+
"added": 0,
|
|
2464
|
+
"didUpdate": false,
|
|
2465
|
+
"failure": false,
|
|
2466
|
+
"filesAdded": 0,
|
|
2467
|
+
"filesRemoved": 0,
|
|
2468
|
+
"filesRemovedList": [],
|
|
2469
|
+
"filesUnmatched": 0,
|
|
2470
|
+
"filesUpdated": 0,
|
|
2471
|
+
"matched": 0,
|
|
2472
|
+
"total": 0,
|
|
2473
|
+
"unchecked": 0,
|
|
2474
|
+
"uncheckedKeysByFile": [],
|
|
2475
|
+
"unmatched": 0,
|
|
2476
|
+
"updated": 0
|
|
2477
|
+
},
|
|
2478
|
+
"startTime": 1754264894506,
|
|
2479
|
+
"success": false,
|
|
2480
|
+
"testResults": [
|
|
2481
|
+
{
|
|
2482
|
+
"assertionResults": [
|
|
2483
|
+
{
|
|
2484
|
+
"ancestorTitles": [
|
|
2485
|
+
"Armstrong Numbers"
|
|
2486
|
+
],
|
|
2487
|
+
"duration": 1,
|
|
2488
|
+
"failureDetails": [
|
|
2489
|
+
{}
|
|
2490
|
+
],
|
|
2491
|
+
"failureMessages": [
|
|
2492
|
+
"Error: Remove this line and implement the function\n at isArmstrongNumber (/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/armstrong-numbers/armstrong-numbers.js:7:9)\n at Object.<anonymous> (/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/armstrong-numbers/armstrong-numbers.spec.js:6:29)\n at Promise.then.completed (/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/armstrong-numbers/node_modules/jest-circus/build/utils.js:298:28)\n at new Promise (<anonymous>)\n at callAsyncCircusFn (/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/armstrong-numbers/node_modules/jest-circus/build/utils.js:231:10)\n at _callCircusTest (/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/armstrong-numbers/node_modules/jest-circus/build/run.js:316:40)\n at _runTest (/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/armstrong-numbers/node_modules/jest-circus/build/run.js:252:3)\n at _runTestsForDescribeBlock (/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/armstrong-numbers/node_modules/jest-circus/build/run.js:126:9)\n at _runTestsForDescribeBlock (/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/armstrong-numbers/node_modules/jest-circus/build/run.js:121:9)\n at run (/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/armstrong-numbers/node_modules/jest-circus/build/run.js:71:3)\n at runAndTransformResultsToJestFormat (/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/armstrong-numbers/node_modules/jest-circus/build/legacy-code-todo-rewrite/jestAdapterInit.js:122:21)\n at jestAdapter (/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/armstrong-numbers/node_modules/jest-circus/build/legacy-code-todo-rewrite/jestAdapter.js:79:19)\n at runTestInternal (/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/armstrong-numbers/node_modules/jest-runner/build/runTest.js:367:16)\n at runTest (/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/armstrong-numbers/node_modules/jest-runner/build/runTest.js:444:34)"
|
|
2493
|
+
],
|
|
2494
|
+
"fullName": "Armstrong Numbers Zero is an Armstrong number",
|
|
2495
|
+
"invocations": 1,
|
|
2496
|
+
"location": null,
|
|
2497
|
+
"numPassingAsserts": 0,
|
|
2498
|
+
"retryReasons": [],
|
|
2499
|
+
"status": "failed",
|
|
2500
|
+
"title": "Zero is an Armstrong number"
|
|
2501
|
+
},
|
|
2502
|
+
{
|
|
2503
|
+
"ancestorTitles": [
|
|
2504
|
+
"Armstrong Numbers"
|
|
2505
|
+
],
|
|
2506
|
+
"duration": null,
|
|
2507
|
+
"failureDetails": [],
|
|
2508
|
+
"failureMessages": [],
|
|
2509
|
+
"fullName": "Armstrong Numbers Single-digit numbers are Armstrong numbers",
|
|
2510
|
+
"invocations": 1,
|
|
2511
|
+
"location": null,
|
|
2512
|
+
"numPassingAsserts": 0,
|
|
2513
|
+
"retryReasons": [],
|
|
2514
|
+
"status": "pending",
|
|
2515
|
+
"title": "Single-digit numbers are Armstrong numbers"
|
|
2516
|
+
},
|
|
2517
|
+
{
|
|
2518
|
+
"ancestorTitles": [
|
|
2519
|
+
"Armstrong Numbers"
|
|
2520
|
+
],
|
|
2521
|
+
"duration": null,
|
|
2522
|
+
"failureDetails": [],
|
|
2523
|
+
"failureMessages": [],
|
|
2524
|
+
"fullName": "Armstrong Numbers There are no two-digit Armstrong numbers",
|
|
2525
|
+
"invocations": 1,
|
|
2526
|
+
"location": null,
|
|
2527
|
+
"numPassingAsserts": 0,
|
|
2528
|
+
"retryReasons": [],
|
|
2529
|
+
"status": "pending",
|
|
2530
|
+
"title": "There are no two-digit Armstrong numbers"
|
|
2531
|
+
},
|
|
2532
|
+
{
|
|
2533
|
+
"ancestorTitles": [
|
|
2534
|
+
"Armstrong Numbers"
|
|
2535
|
+
],
|
|
2536
|
+
"duration": null,
|
|
2537
|
+
"failureDetails": [],
|
|
2538
|
+
"failureMessages": [],
|
|
2539
|
+
"fullName": "Armstrong Numbers Three-digit number that is an Armstrong number",
|
|
2540
|
+
"invocations": 1,
|
|
2541
|
+
"location": null,
|
|
2542
|
+
"numPassingAsserts": 0,
|
|
2543
|
+
"retryReasons": [],
|
|
2544
|
+
"status": "pending",
|
|
2545
|
+
"title": "Three-digit number that is an Armstrong number"
|
|
2546
|
+
},
|
|
2547
|
+
{
|
|
2548
|
+
"ancestorTitles": [
|
|
2549
|
+
"Armstrong Numbers"
|
|
2550
|
+
],
|
|
2551
|
+
"duration": null,
|
|
2552
|
+
"failureDetails": [],
|
|
2553
|
+
"failureMessages": [],
|
|
2554
|
+
"fullName": "Armstrong Numbers Three-digit number that is not an Armstrong number",
|
|
2555
|
+
"invocations": 1,
|
|
2556
|
+
"location": null,
|
|
2557
|
+
"numPassingAsserts": 0,
|
|
2558
|
+
"retryReasons": [],
|
|
2559
|
+
"status": "pending",
|
|
2560
|
+
"title": "Three-digit number that is not an Armstrong number"
|
|
2561
|
+
},
|
|
2562
|
+
{
|
|
2563
|
+
"ancestorTitles": [
|
|
2564
|
+
"Armstrong Numbers"
|
|
2565
|
+
],
|
|
2566
|
+
"duration": null,
|
|
2567
|
+
"failureDetails": [],
|
|
2568
|
+
"failureMessages": [],
|
|
2569
|
+
"fullName": "Armstrong Numbers Four-digit number that is an Armstrong number",
|
|
2570
|
+
"invocations": 1,
|
|
2571
|
+
"location": null,
|
|
2572
|
+
"numPassingAsserts": 0,
|
|
2573
|
+
"retryReasons": [],
|
|
2574
|
+
"status": "pending",
|
|
2575
|
+
"title": "Four-digit number that is an Armstrong number"
|
|
2576
|
+
},
|
|
2577
|
+
{
|
|
2578
|
+
"ancestorTitles": [
|
|
2579
|
+
"Armstrong Numbers"
|
|
2580
|
+
],
|
|
2581
|
+
"duration": null,
|
|
2582
|
+
"failureDetails": [],
|
|
2583
|
+
"failureMessages": [],
|
|
2584
|
+
"fullName": "Armstrong Numbers Four-digit number that is not an Armstrong number",
|
|
2585
|
+
"invocations": 1,
|
|
2586
|
+
"location": null,
|
|
2587
|
+
"numPassingAsserts": 0,
|
|
2588
|
+
"retryReasons": [],
|
|
2589
|
+
"status": "pending",
|
|
2590
|
+
"title": "Four-digit number that is not an Armstrong number"
|
|
2591
|
+
},
|
|
2592
|
+
{
|
|
2593
|
+
"ancestorTitles": [
|
|
2594
|
+
"Armstrong Numbers"
|
|
2595
|
+
],
|
|
2596
|
+
"duration": null,
|
|
2597
|
+
"failureDetails": [],
|
|
2598
|
+
"failureMessages": [],
|
|
2599
|
+
"fullName": "Armstrong Numbers Seven-digit number that is an Armstrong number",
|
|
2600
|
+
"invocations": 1,
|
|
2601
|
+
"location": null,
|
|
2602
|
+
"numPassingAsserts": 0,
|
|
2603
|
+
"retryReasons": [],
|
|
2604
|
+
"status": "pending",
|
|
2605
|
+
"title": "Seven-digit number that is an Armstrong number"
|
|
2606
|
+
},
|
|
2607
|
+
{
|
|
2608
|
+
"ancestorTitles": [
|
|
2609
|
+
"Armstrong Numbers"
|
|
2610
|
+
],
|
|
2611
|
+
"duration": null,
|
|
2612
|
+
"failureDetails": [],
|
|
2613
|
+
"failureMessages": [],
|
|
2614
|
+
"fullName": "Armstrong Numbers Seven-digit number that is not an Armstrong number",
|
|
2615
|
+
"invocations": 1,
|
|
2616
|
+
"location": null,
|
|
2617
|
+
"numPassingAsserts": 0,
|
|
2618
|
+
"retryReasons": [],
|
|
2619
|
+
"status": "pending",
|
|
2620
|
+
"title": "Seven-digit number that is not an Armstrong number"
|
|
2621
|
+
},
|
|
2622
|
+
{
|
|
2623
|
+
"ancestorTitles": [
|
|
2624
|
+
"Armstrong Numbers"
|
|
2625
|
+
],
|
|
2626
|
+
"duration": null,
|
|
2627
|
+
"failureDetails": [],
|
|
2628
|
+
"failureMessages": [],
|
|
2629
|
+
"fullName": "Armstrong Numbers Armstrong number containing seven zeroes",
|
|
2630
|
+
"invocations": 1,
|
|
2631
|
+
"location": null,
|
|
2632
|
+
"numPassingAsserts": 0,
|
|
2633
|
+
"retryReasons": [],
|
|
2634
|
+
"status": "pending",
|
|
2635
|
+
"title": "Armstrong number containing seven zeroes"
|
|
2636
|
+
},
|
|
2637
|
+
{
|
|
2638
|
+
"ancestorTitles": [
|
|
2639
|
+
"Armstrong Numbers"
|
|
2640
|
+
],
|
|
2641
|
+
"duration": null,
|
|
2642
|
+
"failureDetails": [],
|
|
2643
|
+
"failureMessages": [],
|
|
2644
|
+
"fullName": "Armstrong Numbers The largest and last Armstrong number",
|
|
2645
|
+
"invocations": 1,
|
|
2646
|
+
"location": null,
|
|
2647
|
+
"numPassingAsserts": 0,
|
|
2648
|
+
"retryReasons": [],
|
|
2649
|
+
"status": "pending",
|
|
2650
|
+
"title": "The largest and last Armstrong number"
|
|
2651
|
+
}
|
|
2652
|
+
],
|
|
2653
|
+
"endTime": 1754264894623,
|
|
2654
|
+
"message": " ● Armstrong Numbers › Zero is an Armstrong number\n\n Remove this line and implement the function\n\n 5 |\n 6 | export const isArmstrongNumber = () => {\n > 7 | throw new Error('Remove this line and implement the function');\n | ^\n 8 | };\n 9 |\n\n at isArmstrongNumber (armstrong-numbers.js:7:9)\n at Object.<anonymous> (armstrong-numbers.spec.js:6:29)\n",
|
|
2655
|
+
"name": "/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/armstrong-numbers/armstrong-numbers.spec.js",
|
|
2656
|
+
"startTime": 1754264894525,
|
|
2657
|
+
"status": "failed",
|
|
2658
|
+
"summary": ""
|
|
2659
|
+
}
|
|
2660
|
+
],
|
|
2661
|
+
"wasInterrupted": false
|
|
2662
|
+
}
|
|
2663
|
+
},
|
|
2664
|
+
"timeElapsed": 413.913,
|
|
2665
|
+
"cost": 0,
|
|
2666
|
+
"startTime": "2025-08-03T23:41:20.720Z",
|
|
2667
|
+
"endTime": "2025-08-03T23:48:14.633Z",
|
|
2668
|
+
"finalOutput": "Task terminated due to limits reached. Turn: 8/30, Cost: $0.0000/$1.0000, Runtime: 413244ms/300000ms"
|
|
2669
|
+
},
|
|
2670
|
+
{
|
|
2671
|
+
"exerciseName": "atbash-cipher",
|
|
2672
|
+
"status": "success",
|
|
2673
|
+
"turns": 16,
|
|
2674
|
+
"testResult": {
|
|
2675
|
+
"passed": 14,
|
|
2676
|
+
"failed": 0,
|
|
2677
|
+
"total": 14,
|
|
2678
|
+
"skipped": 0,
|
|
2679
|
+
"success": true,
|
|
2680
|
+
"output": "{\"numFailedTestSuites\":0,\"numFailedTests\":0,\"numPassedTestSuites\":1,\"numPassedTests\":14,\"numPendingTestSuites\":0,\"numPendingTests\":0,\"numRuntimeErrorTestSuites\":0,\"numTodoTests\":0,\"numTotalTestSuites\":1,\"numTotalTests\":14,\"openHandles\":[],\"snapshot\":{\"added\":0,\"didUpdate\":false,\"failure\":false,\"filesAdded\":0,\"filesRemoved\":0,\"filesRemovedList\":[],\"filesUnmatched\":0,\"filesUpdated\":0,\"matched\":0,\"total\":0,\"unchecked\":0,\"uncheckedKeysByFile\":[],\"unmatched\":0,\"updated\":0},\"startTime\":1754265234800,\"success\":true,\"testResults\":[{\"assertionResults\":[{\"ancestorTitles\":[\"Atbash Cipher\",\"encode\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Atbash Cipher encode encode yes\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"encode yes\"},{\"ancestorTitles\":[\"Atbash Cipher\",\"encode\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Atbash Cipher encode encode no\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"encode no\"},{\"ancestorTitles\":[\"Atbash Cipher\",\"encode\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Atbash Cipher encode encode OMG\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"encode OMG\"},{\"ancestorTitles\":[\"Atbash Cipher\",\"encode\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Atbash Cipher encode encode spaces\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"encode spaces\"},{\"ancestorTitles\":[\"Atbash Cipher\",\"encode\"],\"duration\":1,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Atbash Cipher encode encode mindblowingly\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"encode mindblowingly\"},{\"ancestorTitles\":[\"Atbash Cipher\",\"encode\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Atbash Cipher encode encode numbers\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"encode numbers\"},{\"ancestorTitles\":[\"Atbash Cipher\",\"encode\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Atbash Cipher encode encode deep thought\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"encode deep thought\"},{\"ancestorTitles\":[\"Atbash Cipher\",\"encode\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Atbash Cipher encode encode all the letters\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"encode all the letters\"},{\"ancestorTitles\":[\"Atbash Cipher\",\"decode\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Atbash Cipher decode decode exercism\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"decode exercism\"},{\"ancestorTitles\":[\"Atbash Cipher\",\"decode\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Atbash Cipher decode decode a sentence\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"decode a sentence\"},{\"ancestorTitles\":[\"Atbash Cipher\",\"decode\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Atbash Cipher decode decode numbers\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"decode numbers\"},{\"ancestorTitles\":[\"Atbash Cipher\",\"decode\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Atbash Cipher decode decode all the letters\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"decode all the letters\"},{\"ancestorTitles\":[\"Atbash Cipher\",\"decode\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Atbash Cipher decode decode with too many spaces\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"decode with too many spaces\"},{\"ancestorTitles\":[\"Atbash Cipher\",\"decode\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Atbash Cipher decode decode with no spaces\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"decode with no spaces\"}],\"endTime\":1754265234920,\"message\":\"\",\"name\":\"/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/atbash-cipher/atbash-cipher.spec.js\",\"startTime\":1754265234820,\"status\":\"passed\",\"summary\":\"\"}],\"wasInterrupted\":false}\n",
|
|
2681
|
+
"details": {
|
|
2682
|
+
"numFailedTestSuites": 0,
|
|
2683
|
+
"numFailedTests": 0,
|
|
2684
|
+
"numPassedTestSuites": 1,
|
|
2685
|
+
"numPassedTests": 14,
|
|
2686
|
+
"numPendingTestSuites": 0,
|
|
2687
|
+
"numPendingTests": 0,
|
|
2688
|
+
"numRuntimeErrorTestSuites": 0,
|
|
2689
|
+
"numTodoTests": 0,
|
|
2690
|
+
"numTotalTestSuites": 1,
|
|
2691
|
+
"numTotalTests": 14,
|
|
2692
|
+
"openHandles": [],
|
|
2693
|
+
"snapshot": {
|
|
2694
|
+
"added": 0,
|
|
2695
|
+
"didUpdate": false,
|
|
2696
|
+
"failure": false,
|
|
2697
|
+
"filesAdded": 0,
|
|
2698
|
+
"filesRemoved": 0,
|
|
2699
|
+
"filesRemovedList": [],
|
|
2700
|
+
"filesUnmatched": 0,
|
|
2701
|
+
"filesUpdated": 0,
|
|
2702
|
+
"matched": 0,
|
|
2703
|
+
"total": 0,
|
|
2704
|
+
"unchecked": 0,
|
|
2705
|
+
"uncheckedKeysByFile": [],
|
|
2706
|
+
"unmatched": 0,
|
|
2707
|
+
"updated": 0
|
|
2708
|
+
},
|
|
2709
|
+
"startTime": 1754265234800,
|
|
2710
|
+
"success": true,
|
|
2711
|
+
"testResults": [
|
|
2712
|
+
{
|
|
2713
|
+
"assertionResults": [
|
|
2714
|
+
{
|
|
2715
|
+
"ancestorTitles": [
|
|
2716
|
+
"Atbash Cipher",
|
|
2717
|
+
"encode"
|
|
2718
|
+
],
|
|
2719
|
+
"duration": 0,
|
|
2720
|
+
"failureDetails": [],
|
|
2721
|
+
"failureMessages": [],
|
|
2722
|
+
"fullName": "Atbash Cipher encode encode yes",
|
|
2723
|
+
"invocations": 1,
|
|
2724
|
+
"location": null,
|
|
2725
|
+
"numPassingAsserts": 1,
|
|
2726
|
+
"retryReasons": [],
|
|
2727
|
+
"status": "passed",
|
|
2728
|
+
"title": "encode yes"
|
|
2729
|
+
},
|
|
2730
|
+
{
|
|
2731
|
+
"ancestorTitles": [
|
|
2732
|
+
"Atbash Cipher",
|
|
2733
|
+
"encode"
|
|
2734
|
+
],
|
|
2735
|
+
"duration": 0,
|
|
2736
|
+
"failureDetails": [],
|
|
2737
|
+
"failureMessages": [],
|
|
2738
|
+
"fullName": "Atbash Cipher encode encode no",
|
|
2739
|
+
"invocations": 1,
|
|
2740
|
+
"location": null,
|
|
2741
|
+
"numPassingAsserts": 1,
|
|
2742
|
+
"retryReasons": [],
|
|
2743
|
+
"status": "passed",
|
|
2744
|
+
"title": "encode no"
|
|
2745
|
+
},
|
|
2746
|
+
{
|
|
2747
|
+
"ancestorTitles": [
|
|
2748
|
+
"Atbash Cipher",
|
|
2749
|
+
"encode"
|
|
2750
|
+
],
|
|
2751
|
+
"duration": 0,
|
|
2752
|
+
"failureDetails": [],
|
|
2753
|
+
"failureMessages": [],
|
|
2754
|
+
"fullName": "Atbash Cipher encode encode OMG",
|
|
2755
|
+
"invocations": 1,
|
|
2756
|
+
"location": null,
|
|
2757
|
+
"numPassingAsserts": 1,
|
|
2758
|
+
"retryReasons": [],
|
|
2759
|
+
"status": "passed",
|
|
2760
|
+
"title": "encode OMG"
|
|
2761
|
+
},
|
|
2762
|
+
{
|
|
2763
|
+
"ancestorTitles": [
|
|
2764
|
+
"Atbash Cipher",
|
|
2765
|
+
"encode"
|
|
2766
|
+
],
|
|
2767
|
+
"duration": 0,
|
|
2768
|
+
"failureDetails": [],
|
|
2769
|
+
"failureMessages": [],
|
|
2770
|
+
"fullName": "Atbash Cipher encode encode spaces",
|
|
2771
|
+
"invocations": 1,
|
|
2772
|
+
"location": null,
|
|
2773
|
+
"numPassingAsserts": 1,
|
|
2774
|
+
"retryReasons": [],
|
|
2775
|
+
"status": "passed",
|
|
2776
|
+
"title": "encode spaces"
|
|
2777
|
+
},
|
|
2778
|
+
{
|
|
2779
|
+
"ancestorTitles": [
|
|
2780
|
+
"Atbash Cipher",
|
|
2781
|
+
"encode"
|
|
2782
|
+
],
|
|
2783
|
+
"duration": 1,
|
|
2784
|
+
"failureDetails": [],
|
|
2785
|
+
"failureMessages": [],
|
|
2786
|
+
"fullName": "Atbash Cipher encode encode mindblowingly",
|
|
2787
|
+
"invocations": 1,
|
|
2788
|
+
"location": null,
|
|
2789
|
+
"numPassingAsserts": 1,
|
|
2790
|
+
"retryReasons": [],
|
|
2791
|
+
"status": "passed",
|
|
2792
|
+
"title": "encode mindblowingly"
|
|
2793
|
+
},
|
|
2794
|
+
{
|
|
2795
|
+
"ancestorTitles": [
|
|
2796
|
+
"Atbash Cipher",
|
|
2797
|
+
"encode"
|
|
2798
|
+
],
|
|
2799
|
+
"duration": 0,
|
|
2800
|
+
"failureDetails": [],
|
|
2801
|
+
"failureMessages": [],
|
|
2802
|
+
"fullName": "Atbash Cipher encode encode numbers",
|
|
2803
|
+
"invocations": 1,
|
|
2804
|
+
"location": null,
|
|
2805
|
+
"numPassingAsserts": 1,
|
|
2806
|
+
"retryReasons": [],
|
|
2807
|
+
"status": "passed",
|
|
2808
|
+
"title": "encode numbers"
|
|
2809
|
+
},
|
|
2810
|
+
{
|
|
2811
|
+
"ancestorTitles": [
|
|
2812
|
+
"Atbash Cipher",
|
|
2813
|
+
"encode"
|
|
2814
|
+
],
|
|
2815
|
+
"duration": 0,
|
|
2816
|
+
"failureDetails": [],
|
|
2817
|
+
"failureMessages": [],
|
|
2818
|
+
"fullName": "Atbash Cipher encode encode deep thought",
|
|
2819
|
+
"invocations": 1,
|
|
2820
|
+
"location": null,
|
|
2821
|
+
"numPassingAsserts": 1,
|
|
2822
|
+
"retryReasons": [],
|
|
2823
|
+
"status": "passed",
|
|
2824
|
+
"title": "encode deep thought"
|
|
2825
|
+
},
|
|
2826
|
+
{
|
|
2827
|
+
"ancestorTitles": [
|
|
2828
|
+
"Atbash Cipher",
|
|
2829
|
+
"encode"
|
|
2830
|
+
],
|
|
2831
|
+
"duration": 0,
|
|
2832
|
+
"failureDetails": [],
|
|
2833
|
+
"failureMessages": [],
|
|
2834
|
+
"fullName": "Atbash Cipher encode encode all the letters",
|
|
2835
|
+
"invocations": 1,
|
|
2836
|
+
"location": null,
|
|
2837
|
+
"numPassingAsserts": 1,
|
|
2838
|
+
"retryReasons": [],
|
|
2839
|
+
"status": "passed",
|
|
2840
|
+
"title": "encode all the letters"
|
|
2841
|
+
},
|
|
2842
|
+
{
|
|
2843
|
+
"ancestorTitles": [
|
|
2844
|
+
"Atbash Cipher",
|
|
2845
|
+
"decode"
|
|
2846
|
+
],
|
|
2847
|
+
"duration": 0,
|
|
2848
|
+
"failureDetails": [],
|
|
2849
|
+
"failureMessages": [],
|
|
2850
|
+
"fullName": "Atbash Cipher decode decode exercism",
|
|
2851
|
+
"invocations": 1,
|
|
2852
|
+
"location": null,
|
|
2853
|
+
"numPassingAsserts": 1,
|
|
2854
|
+
"retryReasons": [],
|
|
2855
|
+
"status": "passed",
|
|
2856
|
+
"title": "decode exercism"
|
|
2857
|
+
},
|
|
2858
|
+
{
|
|
2859
|
+
"ancestorTitles": [
|
|
2860
|
+
"Atbash Cipher",
|
|
2861
|
+
"decode"
|
|
2862
|
+
],
|
|
2863
|
+
"duration": 0,
|
|
2864
|
+
"failureDetails": [],
|
|
2865
|
+
"failureMessages": [],
|
|
2866
|
+
"fullName": "Atbash Cipher decode decode a sentence",
|
|
2867
|
+
"invocations": 1,
|
|
2868
|
+
"location": null,
|
|
2869
|
+
"numPassingAsserts": 1,
|
|
2870
|
+
"retryReasons": [],
|
|
2871
|
+
"status": "passed",
|
|
2872
|
+
"title": "decode a sentence"
|
|
2873
|
+
},
|
|
2874
|
+
{
|
|
2875
|
+
"ancestorTitles": [
|
|
2876
|
+
"Atbash Cipher",
|
|
2877
|
+
"decode"
|
|
2878
|
+
],
|
|
2879
|
+
"duration": 0,
|
|
2880
|
+
"failureDetails": [],
|
|
2881
|
+
"failureMessages": [],
|
|
2882
|
+
"fullName": "Atbash Cipher decode decode numbers",
|
|
2883
|
+
"invocations": 1,
|
|
2884
|
+
"location": null,
|
|
2885
|
+
"numPassingAsserts": 1,
|
|
2886
|
+
"retryReasons": [],
|
|
2887
|
+
"status": "passed",
|
|
2888
|
+
"title": "decode numbers"
|
|
2889
|
+
},
|
|
2890
|
+
{
|
|
2891
|
+
"ancestorTitles": [
|
|
2892
|
+
"Atbash Cipher",
|
|
2893
|
+
"decode"
|
|
2894
|
+
],
|
|
2895
|
+
"duration": 0,
|
|
2896
|
+
"failureDetails": [],
|
|
2897
|
+
"failureMessages": [],
|
|
2898
|
+
"fullName": "Atbash Cipher decode decode all the letters",
|
|
2899
|
+
"invocations": 1,
|
|
2900
|
+
"location": null,
|
|
2901
|
+
"numPassingAsserts": 1,
|
|
2902
|
+
"retryReasons": [],
|
|
2903
|
+
"status": "passed",
|
|
2904
|
+
"title": "decode all the letters"
|
|
2905
|
+
},
|
|
2906
|
+
{
|
|
2907
|
+
"ancestorTitles": [
|
|
2908
|
+
"Atbash Cipher",
|
|
2909
|
+
"decode"
|
|
2910
|
+
],
|
|
2911
|
+
"duration": 0,
|
|
2912
|
+
"failureDetails": [],
|
|
2913
|
+
"failureMessages": [],
|
|
2914
|
+
"fullName": "Atbash Cipher decode decode with too many spaces",
|
|
2915
|
+
"invocations": 1,
|
|
2916
|
+
"location": null,
|
|
2917
|
+
"numPassingAsserts": 1,
|
|
2918
|
+
"retryReasons": [],
|
|
2919
|
+
"status": "passed",
|
|
2920
|
+
"title": "decode with too many spaces"
|
|
2921
|
+
},
|
|
2922
|
+
{
|
|
2923
|
+
"ancestorTitles": [
|
|
2924
|
+
"Atbash Cipher",
|
|
2925
|
+
"decode"
|
|
2926
|
+
],
|
|
2927
|
+
"duration": 0,
|
|
2928
|
+
"failureDetails": [],
|
|
2929
|
+
"failureMessages": [],
|
|
2930
|
+
"fullName": "Atbash Cipher decode decode with no spaces",
|
|
2931
|
+
"invocations": 1,
|
|
2932
|
+
"location": null,
|
|
2933
|
+
"numPassingAsserts": 1,
|
|
2934
|
+
"retryReasons": [],
|
|
2935
|
+
"status": "passed",
|
|
2936
|
+
"title": "decode with no spaces"
|
|
2937
|
+
}
|
|
2938
|
+
],
|
|
2939
|
+
"endTime": 1754265234920,
|
|
2940
|
+
"message": "",
|
|
2941
|
+
"name": "/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/atbash-cipher/atbash-cipher.spec.js",
|
|
2942
|
+
"startTime": 1754265234820,
|
|
2943
|
+
"status": "passed",
|
|
2944
|
+
"summary": ""
|
|
2945
|
+
}
|
|
2946
|
+
],
|
|
2947
|
+
"wasInterrupted": false
|
|
2948
|
+
}
|
|
2949
|
+
},
|
|
2950
|
+
"timeElapsed": 340.274,
|
|
2951
|
+
"cost": 0,
|
|
2952
|
+
"startTime": "2025-08-03T23:48:14.658Z",
|
|
2953
|
+
"endTime": "2025-08-03T23:53:54.932Z",
|
|
2954
|
+
"finalOutput": "Task terminated due to limits reached. Turn: 16/30, Cost: $0.0000/$1.0000, Runtime: 339549ms/300000ms"
|
|
2955
|
+
},
|
|
2956
|
+
{
|
|
2957
|
+
"exerciseName": "bank-account",
|
|
2958
|
+
"status": "success",
|
|
2959
|
+
"turns": 17,
|
|
2960
|
+
"testResult": {
|
|
2961
|
+
"passed": 0,
|
|
2962
|
+
"failed": 0,
|
|
2963
|
+
"total": 0,
|
|
2964
|
+
"success": false,
|
|
2965
|
+
"output": "Command failed: npx jest --json --verbose\n● Multiple configurations found:\n\n * /Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/bank-account/jest.config.js\n * /Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/bank-account/jest.config.cjs\n\n Implicit config resolution does not allow multiple configuration files.\n Either remove unused config files or select one explicitly with `--config`.\n\n Configuration Documentation:\n https://jestjs.io/docs/configuration\n\n",
|
|
2966
|
+
"errorMessage": "Command failed: npx jest --json --verbose\n● Multiple configurations found:\n\n * /Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/bank-account/jest.config.js\n * /Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/bank-account/jest.config.cjs\n\n Implicit config resolution does not allow multiple configuration files.\n Either remove unused config files or select one explicitly with `--config`.\n\n Configuration Documentation:\n https://jestjs.io/docs/configuration\n\n",
|
|
2967
|
+
"details": {
|
|
2968
|
+
"status": 1,
|
|
2969
|
+
"signal": null,
|
|
2970
|
+
"output": [
|
|
2971
|
+
null,
|
|
2972
|
+
"",
|
|
2973
|
+
"● Multiple configurations found:\n\n * /Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/bank-account/jest.config.js\n * /Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/bank-account/jest.config.cjs\n\n Implicit config resolution does not allow multiple configuration files.\n Either remove unused config files or select one explicitly with `--config`.\n\n Configuration Documentation:\n https://jestjs.io/docs/configuration\n\n"
|
|
2974
|
+
],
|
|
2975
|
+
"pid": 90562,
|
|
2976
|
+
"stdout": "",
|
|
2977
|
+
"stderr": "● Multiple configurations found:\n\n * /Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/bank-account/jest.config.js\n * /Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/bank-account/jest.config.cjs\n\n Implicit config resolution does not allow multiple configuration files.\n Either remove unused config files or select one explicitly with `--config`.\n\n Configuration Documentation:\n https://jestjs.io/docs/configuration\n\n"
|
|
2978
|
+
}
|
|
2979
|
+
},
|
|
2980
|
+
"timeElapsed": 321.654,
|
|
2981
|
+
"cost": 0,
|
|
2982
|
+
"startTime": "2025-08-03T23:53:54.960Z",
|
|
2983
|
+
"endTime": "2025-08-03T23:59:16.614Z",
|
|
2984
|
+
"finalOutput": "Task terminated due to limits reached. Turn: 17/30, Cost: $0.0000/$1.0000, Runtime: 321302ms/300000ms"
|
|
2985
|
+
}
|
|
2986
|
+
],
|
|
2987
|
+
"summary": {
|
|
2988
|
+
"totalExercises": 10,
|
|
2989
|
+
"successCount": 10,
|
|
2990
|
+
"testableExercises": 10,
|
|
2991
|
+
"testsPassedCount": 7,
|
|
2992
|
+
"testsFailedCount": 3,
|
|
2993
|
+
"testPassRate": 0.7,
|
|
2994
|
+
"agentSuccessRate": 1,
|
|
2995
|
+
"failureCount": 0,
|
|
2996
|
+
"timeoutCount": 0,
|
|
2997
|
+
"costLimitCount": 0,
|
|
2998
|
+
"turnLimitCount": 0,
|
|
2999
|
+
"totalTime": 3002.689,
|
|
3000
|
+
"totalCost": 0,
|
|
3001
|
+
"averageTurns": 14.5,
|
|
3002
|
+
"averageTime": 300.2689,
|
|
3003
|
+
"successRate": 0.7
|
|
3004
|
+
},
|
|
3005
|
+
"startTime": "2025-08-03T23:09:13.612Z",
|
|
3006
|
+
"endTime": "2025-08-03T23:59:16.640Z"
|
|
3007
|
+
}
|