jettypod 4.1.2 → 4.1.4
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/.nvmrc +1 -0
- package/docs/COMPLETE-TESTING-STRATEGY.md +970 -0
- package/docs/DECISIONS.md +10 -12
- package/docs/NODE_VERSION.md +83 -0
- package/docs/TDD-INFRASTRUCTURE-STRATEGY.md +1374 -0
- package/docs/TESTING-FOR-NON-ENGINEERS.md +1588 -0
- package/docs/TESTING-STRATEGY-AUDIT.md +698 -0
- package/hooks/post-checkout +17 -0
- package/hooks/post-merge +17 -0
- package/hooks/pre-commit +30 -0
- package/jettypod.js +259 -120
- package/lib/coverage-tracker.js +218 -0
- package/lib/database.js +2 -0
- package/lib/db-export.js +192 -0
- package/lib/db-import.js +193 -0
- package/lib/external-transition-handler.js +32 -0
- package/lib/git-hook-helpers.js +174 -0
- package/lib/git-root.js +90 -0
- package/lib/infrastructure-chore-generator.js +45 -0
- package/lib/install-hooks.js +52 -0
- package/lib/jettypod-backup.js +238 -0
- package/lib/merge-lock.js +193 -0
- package/lib/migrations/012-add-worktree-path.js +38 -0
- package/lib/migrations/013-worktrees-table.js +86 -0
- package/lib/migrations/014-migrate-worktree-data.js +161 -0
- package/lib/migrations/015-merge-locks-table.js +67 -0
- package/lib/pattern-finder.js +152 -0
- package/lib/process-manager.js +140 -0
- package/lib/production-standards-reader.js +13 -2
- package/lib/production-standards-writer.js +85 -0
- package/lib/skills/feature-planning/dry-run-validator.js +135 -0
- package/lib/skills/feature-planning/validation-formatter.js +160 -0
- package/lib/smart-conflict-detection.js +168 -0
- package/lib/smart-fetch-rebase.js +614 -0
- package/lib/step-definition-parser.js +76 -0
- package/lib/unit-test-generator.js +232 -0
- package/lib/verification-command-generator.js +66 -0
- package/lib/worktree-diagnostics.js +413 -0
- package/lib/worktree-facade.js +174 -0
- package/lib/worktree-manager.js +636 -0
- package/lib/worktree-reconciler.js +429 -0
- package/package.json +30 -3
- package/skills-templates/external-transition/SKILL.md +34 -3
- package/skills-templates/feature-planning/SKILL.md +190 -24
- package/skills-templates/production-mode/SKILL.md +127 -9
- package/skills-templates/speed-mode/SKILL.md +454 -51
- package/skills-templates/stable-mode/SKILL.md +285 -76
- package/.claude/PROTECT_SKILLS.md +0 -28
- package/.claude/settings.json +0 -24
- package/.claude/settings.local.json +0 -16
- package/.claude/skills/epic-planning/SKILL.md +0 -297
- package/.claude/skills/external-transition/SKILL.md +0 -384
- package/.claude/skills/feature-planning/SKILL.md +0 -464
- package/.claude/skills/production-mode/SKILL.md +0 -369
- package/.claude/skills/speed-mode/SKILL.md +0 -481
- package/.claude/skills/stable-mode/SKILL.md +0 -713
- package/.claude/skills.backup-2025-11-10T23-33-09-368Z/epic-planning/SKILL.md +0 -297
- package/.claude/skills.backup-2025-11-10T23-33-09-368Z/feature-planning/SKILL.md +0 -464
- package/.claude/skills.backup-2025-11-10T23-33-09-368Z/speed-mode/SKILL.md +0 -467
- package/.claude/skills.backup-2025-11-10T23-33-09-368Z/stable-mode/SKILL.md +0 -673
- package/.claude/skills.backup-2025-11-11T16-15-10-070Z/epic-discover/SKILL.md +0 -297
- package/.claude/skills.backup-2025-11-11T16-42-43-212Z/epic-planning/SKILL.md +0 -297
- package/.claude/skills.backup-2025-11-11T16-42-43-212Z/feature-planning/SKILL.md +0 -464
- package/.claude/skills.backup-2025-11-11T16-42-43-212Z/speed-mode/SKILL.md +0 -467
- package/.claude/skills.backup-2025-11-11T16-42-43-212Z/stable-mode/SKILL.md +0 -673
- package/.claude/skills.backup-2025-11-11T17-06-09-783Z/epic-planning/SKILL.md +0 -297
- package/.claude/skills.backup-2025-11-11T17-06-09-783Z/feature-planning/SKILL.md +0 -464
- package/.claude/skills.backup-2025-11-11T17-06-09-783Z/speed-mode/SKILL.md +0 -467
- package/.claude/skills.backup-2025-11-11T17-06-09-783Z/stable-mode/SKILL.md +0 -673
- package/.devpod/current-work.json +0 -10
- package/.devpod/work.db +0 -0
- package/.github/workflows/test-safety.yml +0 -85
- package/.jettypod/config.json +0 -5
- package/.jettypod/current-work.json +0 -10
- package/.jettypod/hooks/README.md +0 -77
- package/.jettypod/hooks/protect-claude-md.js +0 -338
- package/.jettypod/test-work.db +0 -0
- package/.jettypod/work.db +0 -0
- package/CLAUDE.md +0 -49
- package/SPEED-STABLE-AUDIT.md +0 -853
- package/SYSTEM-BEHAVIOR.md +0 -2199
- package/TEST_SAFETY_AUDIT.md +0 -314
- package/TEST_SAFETY_IMPLEMENTATION.md +0 -97
- package/cucumber-report.html +0 -45
- package/dist/devpod-linux +0 -0
- package/dist/devpod-macos +0 -0
- package/dist/devpod-win.exe +0 -0
- package/docs/features/jettypod-standards-explained.md +0 -543
- package/docs/features/standards-inventory.md +0 -257
- package/features/auto-generate-production-chores.feature +0 -13
- package/features/backlog-command.feature +0 -26
- package/features/backlog-filtering-production.feature +0 -10
- package/features/claude-md-protection/steps.js +0 -498
- package/features/decisions/index.js +0 -490
- package/features/decisions/index.test.js +0 -208
- package/features/fix-text-wrapping.feature +0 -42
- package/features/git-hooks/git-hooks.feature +0 -30
- package/features/git-hooks/index.js +0 -93
- package/features/git-hooks/index.test.js +0 -137
- package/features/git-hooks/post-commit +0 -56
- package/features/git-hooks/post-merge +0 -47
- package/features/git-hooks/pre-commit +0 -28
- package/features/git-hooks/simple-steps.js +0 -53
- package/features/git-hooks/simple-test.feature +0 -10
- package/features/git-hooks/steps.js +0 -196
- package/features/jettypod-update-command.feature +0 -46
- package/features/mode-prompts/index.js +0 -95
- package/features/mode-prompts/simple-steps.js +0 -44
- package/features/mode-prompts/simple-test.feature +0 -9
- package/features/mode-prompts/validation.test.js +0 -120
- package/features/multiple-claude-instances.feature +0 -121
- package/features/production-mode-skill.feature +0 -121
- package/features/refactor-mode/steps.js +0 -217
- package/features/refactor-mode.feature +0 -49
- package/features/simplify-external-transition.feature +0 -166
- package/features/skills-update/index.test.js +0 -216
- package/features/step_definitions/backlog-command.steps.js +0 -37
- package/features/step_definitions/fix-text-wrapping.steps.js +0 -271
- package/features/step_definitions/multiple-claude-instances.steps.js +0 -621
- package/features/step_definitions/production-mode-skill.steps.js +0 -862
- package/features/step_definitions/simplify-external-transition.steps.js +0 -370
- package/features/step_definitions/terminal-logo.steps.js +0 -145
- package/features/step_definitions/update-command.steps.js +0 -183
- package/features/support/hooks.js +0 -9
- package/features/terminal-logo/index.js +0 -39
- package/features/terminal-logo/terminal-logo.feature +0 -30
- package/features/update-command/index.js +0 -181
- package/features/update-command/index.test.js +0 -225
- package/features/work-commands/bug-workflow-display.feature +0 -22
- package/features/work-commands/index.js +0 -498
- package/features/work-commands/simple-steps.js +0 -69
- package/features/work-commands/stable-tests.feature +0 -57
- package/features/work-commands/steps.js +0 -1174
- package/features/work-commands/validation.test.js +0 -88
- package/features/work-commands/work-commands.feature +0 -13
- package/features/work-tracking/discovery-validation.test.js +0 -228
- package/features/work-tracking/index.js +0 -1921
- package/features/work-tracking/mode-required.feature +0 -112
- package/features/work-tracking/phase-tracking.test.js +0 -482
- package/features/work-tracking/prototype-tracking.test.js +0 -485
- package/features/work-tracking/tree-view.test.js +0 -310
- package/features/work-tracking/work-set-mode.feature +0 -71
- package/features/work-tracking/work-start-mode.feature +0 -88
- package/full-test.txt +0 -0
- package/lib/bug-workflow.test.js +0 -177
- package/lib/claudemd.test.js +0 -195
- package/lib/config.test.js +0 -511
- package/lib/constants.test.js +0 -164
- package/lib/current-work.test.js +0 -146
- package/lib/database-project-config.test.js +0 -111
- package/lib/database.test.js +0 -106
- package/lib/decisions-generator.test.js +0 -457
- package/lib/decisions-helpers.test.js +0 -310
- package/lib/git-coordinator.js +0 -167
- package/lib/git.test.js +0 -145
- package/lib/migrations/002-default-work-item-modes.test.js +0 -351
- package/lib/production-chore-generator.test.js +0 -432
- package/lib/production-context-detector.test.js +0 -277
- package/lib/production-scenario-appender.test.js +0 -235
- package/lib/production-scenario-validator.test.js +0 -246
- package/lib/production-standards-reader.test.js +0 -270
- package/lib/project-state.test.js +0 -92
- package/lib/push-queue.js +0 -417
- package/lib/queue-processor.js +0 -74
- package/lib/test-helpers.js +0 -202
- package/lib/test-helpers.test.js +0 -255
- package/prototypes/2025-01-11-production-mode-autonomous.js +0 -119
- package/prototypes/2025-01-11-production-mode-collaborative.js +0 -166
- package/prototypes/2025-01-11-production-mode-guided.js +0 -217
- package/prototypes/2025-01-11-production-mode-smart-context.js +0 -347
- package/prototypes/2025-01-11-production-standards-example.md +0 -204
- package/prototypes/2025-11-10-backlog-filtering-tree-aware.js +0 -242
- package/prototypes/test/index.html +0 -1
- package/setup-dist-repo.sh +0 -68
- package/test-production-standards-engine.js +0 -130
- package/test-results.json +0 -2195
- package/test-safety-check.sh +0 -80
- package/work-item-tracking-plan.md +0 -199
- /package/{.jettypod/devpod.db → jettypod.db} +0 -0
package/cucumber-report.html
DELETED
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html lang="en">
|
|
3
|
-
<head>
|
|
4
|
-
<title>Cucumber</title>
|
|
5
|
-
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
|
|
6
|
-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
7
|
-
<link rel="icon" href="data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20class%3D%22ml-3%20ml-md-0%22%20viewBox%3D%220%200%2040.59%2046.31%22%20width%3D%2240.59%22%20height%3D%2246.31%22%3E%0A%20%20%20%20%3Cg%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20fill%3D%22%2323d96c%22%20fill-rule%3D%22evenodd%22%20d%3D%22M30.283%203.645q-.528-.317-1.08-.593a16.164%2016.164%200%2000-1.154-.518c-.124-.052-.247-.1-.372-.149-.343-.127-.689-.268-1.042-.371a19.427%2019.427%200%2010-9.792%2037.51v5.56c11.676-1.753%2022.016-10.979%2022.787-23.093.459-7.289-3.193-14.73-9.347-18.346z%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20fill%3D%22%23173647%22%20d%3D%22M15.787%2046.307v-5.935A20.472%2020.472%200%201126.959%201.015c.274.08.557.187.832.291l.248.093c.165.064.291.113.417.167.348.137.739.313%201.208.543q.589.295%201.153.633c6.393%203.756%2010.354%2011.518%209.857%2019.316-.763%2012-10.722%2022.122-23.679%2024.067zm4.8-44.214h-.026a18.366%2018.366%200%2000-3.524%2036.408l.85.165v5.18c11.392-2.224%2020.009-11.272%2020.686-21.922.448-7.033-3.1-14.018-8.83-17.383l-.008-.005A14.691%2014.691%200%200027.654%203.5a5.74%205.74%200%2000-.344-.138l-.27-.1a9.49%209.49%200%2000-.708-.249%2018.425%2018.425%200%2000-5.743-.92z%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20fill%3D%22%23173647%22%20fill-rule%3D%22evenodd%22%20d%3D%22M16.666%2010.58a1.8%201.8%200%20011.583.608%204.184%204.184%200%2001.728%201.107c.645%201.422%201.027%203.461.23%204.605a6.334%206.334%200%2001-3.981-3.087%203.236%203.236%200%2001-.347-1.339%201.957%201.957%200%20011.787-1.894zm-5.683%208.025a7.742%207.742%200%20001.218.737%205.789%205.789%200%20004.883-.138%206.116%206.116%200%2000-3.345-3.45%203.664%203.664%200%2000-1.442-.321%201.884%201.884%200%2000-.319%200%201.766%201.766%200%2000-.995%203.172zm6.1%203.433c-.777-.518-2.379-.309-3.312-.292a4.416%204.416%200%2000-1.666.352%203.5%203.5%200%2000-1.218.738%201.817%201.817%200%20001.409%203.171%203.3%203.3%200%20001.442-.321c1.436-.62%203.141-2.32%203.346-3.648zm2.61%202a6.556%206.556%200%2000-3.724%203.506%203.091%203.091%200%2000-.321%201.314%201.907%201.907%200%20003.3%201.346%207.422%207.422%200%2000.7-1.218c.621-1.333.866-3.72.046-4.948zm2.557-7.167a5.941%205.941%200%20003.7-3.167%203.243%203.243%200%2000.319-1.346%201.915%201.915%200%2000-1.794-1.954%201.832%201.832%200%2000-1.6.641%207.382%207.382%200%2000-.705%201.218c-.62%201.434-.842%203.48.081%204.603zm4.208%2012.115a3.244%203.244%200%2000-.321-1.345%205.869%205.869%200%2000-3.554-3.269%205.386%205.386%200%2000-.226%204.711%204.147%204.147%200%2000.7%201.121c1.133%201.23%203.505.32%203.402-1.218zm4.2-6.28a7.466%207.466%200%2000-1.217-.7%204.425%204.425%200%2000-1.666-.352%206.4%206.4%200%2000-3.188.555%205.959%205.959%200%20003.316%203.386%203.672%203.672%200%20001.442.32%201.8%201.8%200%20001.31-3.209z%22%2F%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E">
|
|
8
|
-
<style>
|
|
9
|
-
body{padding:0;margin:0}.html-formatter{max-width:1600px;min-height:100vh;margin:0 auto}
|
|
10
|
-
.XR3QM0DC8dUJX1FPQBu_{background-color:var(--cucumber-panel-accent-color, #e8e8e8);border:1px solid rgba(0,0,0,0)}.jjG3rnQfHnX9wBgX_idP{display:grid;grid-template-columns:repeat(12, 1fr);grid-template-rows:1fr 1fr;gap:1px;margin:0;text-align:center}.rfv832DGvJuGyzFuMjXC{grid-column-end:span 4;display:flex;flex-direction:column-reverse;justify-content:center;padding:1.5em;background-color:var(--cucumber-background-color, white);color:var(--cucumber-text-color, #222)}.ZObJrdGWGYZYqvRPTO7x,.ZObJrdGWGYZYqvRPTO7x~.rfv832DGvJuGyzFuMjXC{grid-column-end:span 3}.OFz0nWrlbIgqinwc4usO{font-weight:bold;font-size:1.25em;margin:0}.OFz0nWrlbIgqinwc4usO svg{max-width:2em}.xmSDOQ_c8MimWxT035vV{font-size:1em;margin-top:.25em;color:var(--cucumber-code-text-color, #666)}.PUJ_q_3Y8RQhAcXxakiL{display:inline-flex;gap:.25em}.PUJ_q_3Y8RQhAcXxakiL+.PUJ_q_3Y8RQhAcXxakiL{margin-left:1em}.PUJ_q_3Y8RQhAcXxakiL a{color:var(--cucumber-anchor-color, #297bde)}
|
|
11
|
-
.E4mSCqTkr4getx0W9smB{margin-bottom:1.5em}.E4mSCqTkr4getx0W9smB>*{border-top:0 !important}
|
|
12
|
-
.gUbOxW8Yux5FNeSfsI2O{position:relative;display:flex;align-items:center}.AEvAM9M_0ZxmJghPdVQs{color:var(--cucumber-anchor-color, #297bde);opacity:0;transition:all .35s ease-in-out;position:absolute;font-size:.75em;left:var(--cucumber-anchor-offset, -1.1em)}.gUbOxW8Yux5FNeSfsI2O:hover .AEvAM9M_0ZxmJghPdVQs{opacity:1}
|
|
13
|
-
.gXG0xG1TJk_4pdoSxoAf{white-space:pre-wrap;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:.875em;padding:.666em .75em;border-radius:.25em;margin:0;overflow-x:auto;background-color:var(--cucumber-error-background-color, #fff0f0);color:var(--cucumber-error-text-color, #bd0a2b)}
|
|
14
|
-
.J2h_F2WM3WVOOjWSISvA{position:relative;white-space:pre-wrap;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:.875em;padding:.666em .75em;border-radius:.25em;margin:0;overflow-x:auto;background-color:var(--cucumber-code-background-color, #f6f8fa);color:var(--cucumber-code-text-color, #666)}.Csls2DZsTVl5_RDKgLID{padding-left:3.25em}.Csls2DZsTVl5_RDKgLID::before{content:"Log";position:absolute;top:.666em;left:.75em;text-transform:uppercase;font-weight:bold;color:var(--cucumber-parameter-color, #297bde);opacity:.75}.BL_UrJNG5vfwcNU6hhPj{margin-right:.75em;opacity:.333}.zKWxtTmik48Yw6hm6NJT{max-width:100%;margin-top:.5em}.Kwg8ACzZ14UJrwu6pQDG{list-style:none;display:flex;flex-direction:column;align-items:flex-start;padding:0;margin:0}.Kwg8ACzZ14UJrwu6pQDG a{text-decoration:none;color:var(--cucumber-anchor-color, #297bde)}.Kwg8ACzZ14UJrwu6pQDG svg{margin-right:.5em}
|
|
15
|
-
.pzfx7tCRXyytC6g9SDxg{display:flex;align-items:center;gap:4px;background-color:rgba(0,0,0,0);color:var(--cucumber-anchor-color, #297bde);font-family:inherit;font-size:inherit;padding:0;border:0;margin:0 0 .5em 0;cursor:pointer}.pzfx7tCRXyytC6g9SDxg:hover,.pzfx7tCRXyytC6g9SDxg:focus{text-decoration:underline}
|
|
16
|
-
.IWgpmOz8r6Wj2YWzioT1{padding:0;margin:1em}.IWgpmOz8r6Wj2YWzioT1 a{color:var(--cucumber-anchor-color, #297bde)}
|
|
17
|
-
.MNkrrVMCDeB7mTXs5do4{border-collapse:collapse;margin:0}.MNkrrVMCDeB7mTXs5do4 thead tr{border-bottom:6px solid rgba(0,0,0,0)}.MNkrrVMCDeB7mTXs5do4 tr+tr{border-top:6px solid rgba(0,0,0,0)}.MNkrrVMCDeB7mTXs5do4 th,.MNkrrVMCDeB7mTXs5do4 td{padding:.4em .6em;border-width:2px;border-style:solid;border-top:none;border-bottom:none;border-color:var(--cucumber-keyword-color, #000080);color:var(--cucumber-parameter-color, #297bde)}
|
|
18
|
-
.buWCECLHpnDfpwKwugOX{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;color:var(--cucumber-docstring-color, #008080);padding-bottom:.25em;margin:0;overflow-x:auto}.buWCECLHpnDfpwKwugOX::before,.buWCECLHpnDfpwKwugOX::after{content:'"""';display:block;transform:translateY(0.25em)}.buWCECLHpnDfpwKwugOX::before{padding-bottom:.25em}.buWCECLHpnDfpwKwugOX::after{padding-top:.25em}
|
|
19
|
-
.KqWCaxcpp4sxz7A20RLA{font-weight:bold;color:var(--cucumber-keyword-color, #000080);margin-right:.5em}
|
|
20
|
-
.jraSbOu3Xpk7mbUgodqc{font-weight:normal;color:var(--cucumber-parameter-color, #297bde)}
|
|
21
|
-
.j0ln79cSlRB4hNiHeXjH[data-status=PASSED]{color:rgba(44,177,74,.667)}.j0ln79cSlRB4hNiHeXjH[data-status=SKIPPED]{color:rgba(0,160,204,.667)}.j0ln79cSlRB4hNiHeXjH[data-status=PENDING]{color:rgba(255,173,51,.667)}.j0ln79cSlRB4hNiHeXjH[data-status=UNDEFINED]{color:rgba(255,173,51,.667)}.j0ln79cSlRB4hNiHeXjH[data-status=AMBIGUOUS]{color:rgba(244,235,253,.667)}.j0ln79cSlRB4hNiHeXjH[data-status=FAILED]{color:rgba(187,0,0,.667)}.j0ln79cSlRB4hNiHeXjH[data-status=UNKNOWN]{color:rgba(182,190,203,.667)}
|
|
22
|
-
.UXBAOOwgLjqbpb8XD1WL{display:flex;--cucumber-anchor-offset: -3.25em}.kDEmgsysGXM7DgTGCWfs{width:1.5em;padding-top:.1em}.rIuf66pcn5inse3YjseZ{flex-grow:1;max-width:calc(100% - 1.5em)}.rIuf66pcn5inse3YjseZ>*+*{margin-top:.25em !important}
|
|
23
|
-
.vf7CPB8kAcns60tKI7vY{display:inline-block;font-weight:normal;padding:0;margin:0}
|
|
24
|
-
.bbjk27OORIAhv9IbGaBL{padding:0;margin:1em}.bbjk27OORIAhv9IbGaBL>li{list-style:none}.bbjk27OORIAhv9IbGaBL>li+li{margin-top:.25em}
|
|
25
|
-
.vIGVFeZhSpvtjMv28qFg{padding:0;margin:1em}
|
|
26
|
-
.R_7odAGRh9ZWASbUwK3j{margin-left:1rem}
|
|
27
|
-
.Fdmm0s4soB2pkvNYXQbv{border-collapse:collapse;margin:0}.Fdmm0s4soB2pkvNYXQbv thead tr{border-bottom:6px solid rgba(0,0,0,0)}.Fdmm0s4soB2pkvNYXQbv tr+tr{border-top:6px solid rgba(0,0,0,0)}.Fdmm0s4soB2pkvNYXQbv th,.Fdmm0s4soB2pkvNYXQbv td{padding:.4em .6em;border-width:2px;border-style:solid;border-top:none;border-bottom:none;border-color:var(--cucumber-keyword-color, #000080);color:var(--cucumber-parameter-color, #297bde)}.Fdmm0s4soB2pkvNYXQbv th:first-child,.Fdmm0s4soB2pkvNYXQbv td:first-child{border-left:none}.Fdmm0s4soB2pkvNYXQbv tbody tr{cursor:pointer}
|
|
28
|
-
.FbgC7RSK7PrGGsNDRAl2{padding:0;margin:0}.QRN0XyDjb8RR6B4I3C5w{display:inline;list-style-type:none;padding:8px 0;color:var(--cucumber-tag-color, #808000)}.QRN0XyDjb8RR6B4I3C5w:not(:last-child){margin-right:10px}
|
|
29
|
-
.ETQctlyGyWWjcMYVPHxW{transform:rotate(45deg)}
|
|
30
|
-
.X9zF5mRApmhkNHKRv89A{padding:0;margin:1em}.X9zF5mRApmhkNHKRv89A>li{list-style:none}.X9zF5mRApmhkNHKRv89A>li+li{margin-top:.25em}
|
|
31
|
-
.aNBioFoTxXGy8fl89aVN{padding-top:.35em;padding-left:.5em;padding-right:.5em}.uH0tV61h4vEwGIdnLhmB{border:1px solid var(--cucumber-panel-accent-color, #e8e8e8);border-radius:2px}.tIbY7PZ2bzsj9dKjbfxb+.tIbY7PZ2bzsj9dKjbfxb{border-top:1px solid var(--cucumber-panel-accent-color, #e8e8e8)}.oxCzU1rC8VLhLfVMMrX2{box-sizing:border-box;width:100%;padding:.75em 1em;border:none;background-color:var(--cucumber-panel-background-color, #f4f4f4);color:var(--cucumber-panel-text-color, #444);cursor:pointer;text-align:left}.oxCzU1rC8VLhLfVMMrX2:hover{background-color:var(--cucumber-panel-accent-color, #e8e8e8)}.g2StHf8iOGfwMQe5f9rk{transform-origin:center center;transition:transform .2s linear}.oxCzU1rC8VLhLfVMMrX2[aria-expanded=true] .g2StHf8iOGfwMQe5f9rk,.oxCzU1rC8VLhLfVMMrX2[aria-selected=true] .g2StHf8iOGfwMQe5f9rk{transform:rotate(90deg)}.aSGVb3Tv5B8Nz24vToKW{padding:1.25em}
|
|
32
|
-
.rioeqbTEi_lL8FESsJqA{display:flex;flex-direction:column;align-items:center;gap:.5em;padding-bottom:1.5em;text-align:center}.xvCoYo7NPDqD900sFMjr{font-size:3em;opacity:.125}
|
|
33
|
-
.qCGgrwvVkkINDRfqpvsj{box-sizing:border-box;display:flex;align-items:center;justify-content:space-between;width:100%;padding:1em;border:1px solid var(--cucumber-panel-accent-color, #e8e8e8);background-color:var(--cucumber-panel-background-color, #f4f4f4);color:var(--cucumber-panel-text-color, #444)}.bnRegjcAB_MU3kCnU0eO{position:relative;margin-top:-0.5em}.DnlYJBmP1_AfFSU3KSgD{position:absolute;left:0;margin-left:.4em;top:.5em;opacity:.666}.XhufRLVTP4kJj55pWlZQ{box-sizing:border-box;width:100%;padding:.5em 0 .5em 1.5em;font-family:inherit;font-size:inherit;background-color:rgba(0,0,0,0);color:var(--cucumber-text-color, #222);border:1px solid #ced4da;border-radius:.3em}.Pj6CVtDA4EslW8OfcTI9{display:block;font-size:.75em;line-height:1em;margin-top:.3em}.Pj6CVtDA4EslW8OfcTI9 a{color:var(--cucumber-anchor-color, #297bde)}.JPICQf5NjLq2IqfrDM06{display:flex;align-items:center;gap:.5em}.i7Lu8mj6UiHXs3uZahvK{display:flex;align-items:center;gap:.5em;list-style:none;padding:0;margin:0}.di7wOxuS_2Y1X70JnH4C{opacity:.666}.ue2HaGqIjpPqXt_Q__wa{display:flex;align-items:center;gap:1px;accent-color:var(--cucumber-anchor-color, #297bde)}
|
|
34
|
-
.jGf5f1r0vW6ApPrFIznv{list-style:none;display:flex;width:100%;padding:0;margin:0}.VlpRuYBlXtcShawgxgzA{box-sizing:border-box;flex-grow:1;min-width:11em;padding:.333em 2.5em;background-color:#000;color:#fff;white-space:nowrap;text-align:center;text-transform:uppercase}.VlpRuYBlXtcShawgxgzA[data-status=PASSED]{background-color:#2cb14a}.VlpRuYBlXtcShawgxgzA[data-status=SKIPPED]{background-color:#00a0cc}.VlpRuYBlXtcShawgxgzA[data-status=PENDING]{background-color:#ffad33}.VlpRuYBlXtcShawgxgzA[data-status=UNDEFINED]{background-color:#ffad33}.VlpRuYBlXtcShawgxgzA[data-status=AMBIGUOUS]{background-color:#f4ebfd}.VlpRuYBlXtcShawgxgzA[data-status=FAILED]{background-color:#b00}.VlpRuYBlXtcShawgxgzA[data-status=UNKNOWN]{background-color:#b6becb}
|
|
35
|
-
.g84sy6xgJUyJIzpsyG5S{font-size:14px;font-family:"Inter var",ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";color:var(--cucumber-text-color, #222);background:var(--cucumber-background-color, white)}.S07ZPK5i38Whpt0ARQ6p{--cucumber-background-color: #1d1d26;--cucumber-text-color: #c9c9d1;--cucumber-anchor-color: #4caaee;--cucumber-keyword-color: #d89077;--cucumber-parameter-color: #4caaee;--cucumber-tag-color: #85a658;--cucumber-docstring-color: #66a565;--cucumber-error-background-color: #cf6679;--cucumber-error-text-color: #222;--cucumber-code-background-color: #282a36;--cucumber-code-text-color: #f8f8f2;--cucumber-panel-background-color: #282a36;--cucumber-panel-accent-color: #313442;--cucumber-panel-text-color: #f8f8f2}@media all and (prefers-color-scheme: dark){.pPHXjw4HiiEZ76UmW2np{--cucumber-background-color: #1d1d26;--cucumber-text-color: #c9c9d1;--cucumber-anchor-color: #4caaee;--cucumber-keyword-color: #d89077;--cucumber-parameter-color: #4caaee;--cucumber-tag-color: #85a658;--cucumber-docstring-color: #66a565;--cucumber-error-background-color: #cf6679;--cucumber-error-text-color: #222;--cucumber-code-background-color: #282a36;--cucumber-code-text-color: #f8f8f2;--cucumber-panel-background-color: #282a36;--cucumber-panel-accent-color: #313442;--cucumber-panel-text-color: #f8f8f2}}
|
|
36
|
-
|
|
37
|
-
</style>
|
|
38
|
-
</head>
|
|
39
|
-
<body>
|
|
40
|
-
<div id="content">
|
|
41
|
-
</div>
|
|
42
|
-
<script>
|
|
43
|
-
window.CUCUMBER_MESSAGES = [{"meta":{"protocolVersion":"24.1.0","implementation":{"version":"10.9.0","name":"cucumber-js"},"cpu":{"name":"x64"},"os":{"name":"darwin","version":"22.6.0"},"runtime":{"name":"node.js","version":"20.19.2"}}},{"source":{"data":"Feature: DevPod Initialization\n As a developer\n I want to initialize DevPod in my project\n So that I have proper configuration and structure\n\n Scenario: Initialize DevPod with defaults\n Given a new project directory\n When I run \"devpod init\"\n Then the following files should exist:\n | .devpod\/config.json |\n | CLAUDE.md |\n And .devpod\/config.json should contain:\n | mode | discovery |\n | bundles | [\"core\"] |\n And CLAUDE.md should contain \"<mode>discovery<\/mode>\"\n\n Scenario: Initialize in existing project\n Given a project with 24 files\n When I run \"devpod init\"\n Then .devpod\/config.json should contain:\n | stage | growing |\n And CLAUDE.md should reflect the growing stage","uri":".gherkin\/features\/01-initialization.feature","mediaType":"text\/x.cucumber.gherkin+plain"}},{"gherkinDocument":{"feature":{"tags":[],"location":{"line":1,"column":1},"language":"en","keyword":"Feature","name":"DevPod Initialization","description":" As a developer\n I want to initialize DevPod in my project\n So that I have proper configuration and structure","children":[{"scenario":{"id":"bae49554-7c26-4c04-824c-0eb81a63c548","tags":[],"location":{"line":6,"column":3},"keyword":"Scenario","name":"Initialize DevPod with defaults","description":"","steps":[{"id":"c0d1db5c-e4cc-4e07-abe2-928443292167","location":{"line":7,"column":5},"keyword":"Given ","keywordType":"Context","text":"a new project directory"},{"id":"1e76350a-28a5-4c91-b554-ec7841a408b9","location":{"line":8,"column":5},"keyword":"When ","keywordType":"Action","text":"I run \"devpod init\""},{"id":"80fbb5fb-efc7-47c2-97b1-974b06e14a9c","location":{"line":9,"column":5},"keyword":"Then ","keywordType":"Outcome","text":"the following files should exist:","dataTable":{"location":{"line":10,"column":7},"rows":[{"id":"12540d95-7750-438c-bfb3-22208d1153f8","location":{"line":10,"column":7},"cells":[{"location":{"line":10,"column":9},"value":".devpod\/config.json"}]},{"id":"c1450887-5f9b-4dad-b37f-6378fc645c6b","location":{"line":11,"column":7},"cells":[{"location":{"line":11,"column":9},"value":"CLAUDE.md"}]}]}},{"id":"63f9c785-c4a6-4539-a435-47ce8f341496","location":{"line":12,"column":5},"keyword":"And ","keywordType":"Conjunction","text":".devpod\/config.json should contain:","dataTable":{"location":{"line":13,"column":7},"rows":[{"id":"3c353767-d9d7-4d53-b3c3-4c14d9eb096c","location":{"line":13,"column":7},"cells":[{"location":{"line":13,"column":9},"value":"mode"},{"location":{"line":13,"column":19},"value":"discovery"}]},{"id":"297e4db3-b6de-4644-b47c-1cdcec43e741","location":{"line":14,"column":7},"cells":[{"location":{"line":14,"column":9},"value":"bundles"},{"location":{"line":14,"column":19},"value":"[\"core\"]"}]}]}},{"id":"7cde1219-c859-4b59-bf75-85e9842f461d","location":{"line":15,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"CLAUDE.md should contain \"<mode>discovery<\/mode>\""}],"examples":[]}},{"scenario":{"id":"94359083-3714-4ccd-9f19-76570a1b8477","tags":[],"location":{"line":17,"column":3},"keyword":"Scenario","name":"Initialize in existing project","description":"","steps":[{"id":"ef01ab05-f692-4e01-84d5-f6ae0bdc1530","location":{"line":18,"column":5},"keyword":"Given ","keywordType":"Context","text":"a project with 24 files"},{"id":"3611de08-c826-4608-acb0-e486d5c24769","location":{"line":19,"column":5},"keyword":"When ","keywordType":"Action","text":"I run \"devpod init\""},{"id":"e3e4bd6d-5a0a-4415-99f3-d68cb85d880f","location":{"line":20,"column":5},"keyword":"Then ","keywordType":"Outcome","text":".devpod\/config.json should contain:","dataTable":{"location":{"line":21,"column":7},"rows":[{"id":"8eec968f-f487-4263-8119-92dec9af596d","location":{"line":21,"column":7},"cells":[{"location":{"line":21,"column":9},"value":"stage"},{"location":{"line":21,"column":17},"value":"growing"}]}]}},{"id":"d8f522b4-37ec-4db0-bf73-693f06e2ae38","location":{"line":22,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"CLAUDE.md should reflect the growing stage"}],"examples":[]}}]},"comments":[],"uri":".gherkin\/features\/01-initialization.feature"}},{"pickle":{"id":"65f15876-94fe-4c7d-9506-e9427f2ba3c1","uri":".gherkin\/features\/01-initialization.feature","astNodeIds":["bae49554-7c26-4c04-824c-0eb81a63c548"],"tags":[],"name":"Initialize DevPod with defaults","language":"en","steps":[{"id":"02df878b-ecbe-4e51-b642-299300f9b148","text":"a new project directory","type":"Context","astNodeIds":["c0d1db5c-e4cc-4e07-abe2-928443292167"]},{"id":"006e7a93-6a22-48e9-9efc-efa3fb28c818","text":"I run \"devpod init\"","type":"Action","astNodeIds":["1e76350a-28a5-4c91-b554-ec7841a408b9"]},{"id":"f75322d9-45d8-47bc-86a3-a67f35cba463","text":"the following files should exist:","type":"Outcome","argument":{"dataTable":{"rows":[{"cells":[{"value":".devpod\/config.json"}]},{"cells":[{"value":"CLAUDE.md"}]}]}},"astNodeIds":["80fbb5fb-efc7-47c2-97b1-974b06e14a9c"]},{"id":"470302b7-b515-4b28-bdb9-b353c57646ee","text":".devpod\/config.json should contain:","type":"Outcome","argument":{"dataTable":{"rows":[{"cells":[{"value":"mode"},{"value":"discovery"}]},{"cells":[{"value":"bundles"},{"value":"[\"core\"]"}]}]}},"astNodeIds":["63f9c785-c4a6-4539-a435-47ce8f341496"]},{"id":"9e4c0878-c011-4f52-aaa6-f8e50c30a941","text":"CLAUDE.md should contain \"<mode>discovery<\/mode>\"","type":"Outcome","astNodeIds":["7cde1219-c859-4b59-bf75-85e9842f461d"]}]}},{"pickle":{"id":"f2bbc42e-8140-4255-8e71-3fe7653cb5af","uri":".gherkin\/features\/01-initialization.feature","astNodeIds":["94359083-3714-4ccd-9f19-76570a1b8477"],"tags":[],"name":"Initialize in existing project","language":"en","steps":[{"id":"4e049730-963b-4e45-befa-5aef2c7168e0","text":"a project with 24 files","type":"Context","astNodeIds":["ef01ab05-f692-4e01-84d5-f6ae0bdc1530"]},{"id":"24905825-2367-4293-ae1a-0151e5c2c961","text":"I run \"devpod init\"","type":"Action","astNodeIds":["3611de08-c826-4608-acb0-e486d5c24769"]},{"id":"fa71653e-c252-440c-b17b-0795e1d7f9f9","text":".devpod\/config.json should contain:","type":"Outcome","argument":{"dataTable":{"rows":[{"cells":[{"value":"stage"},{"value":"growing"}]}]}},"astNodeIds":["e3e4bd6d-5a0a-4415-99f3-d68cb85d880f"]},{"id":"eab0fb06-52f5-4cd1-ac8d-a6f3534d9db5","text":"CLAUDE.md should reflect the growing stage","type":"Outcome","astNodeIds":["d8f522b4-37ec-4db0-bf73-693f06e2ae38"]}]}},{"source":{"data":"Feature: Mode Switching\n As a developer\n I want to switch between different DevPod modes\n So that I can work with the right approach for my situation\n\n Scenario: Switch to Speed Mode\n Given DevPod is initialized\n When I run \"devpod speed\"\n Then .devpod\/config.json mode should be \"speed\"\n And CLAUDE.md should contain \"<mode>speed<\/mode>\"\n And CLAUDE.md should contain \"Ship working code quickly\"\n\n Scenario: Switch to Discovery Mode\n Given DevPod is initialized in speed mode\n When I run \"devpod discovery\"\n Then .devpod\/config.json mode should be \"discovery\"\n And CLAUDE.md should contain \"<mode>discovery<\/mode>\"\n And CLAUDE.md should contain \"Explore multiple approaches to find the best solution\"\n\n Scenario: Switch to Production Mode\n Given DevPod is initialized\n When I run \"devpod production\"\n Then .devpod\/config.json mode should be \"production\"\n And CLAUDE.md should contain \"<mode>production<\/mode>\"\n And CLAUDE.md should contain \"Build robust, tested, production-ready systems\"\n\n Scenario: Switch to Recovery Mode\n Given DevPod is initialized\n When I run \"devpod recovery\"\n Then .devpod\/config.json mode should be \"recovery\"\n And CLAUDE.md should contain \"<mode>recovery<\/mode>\"\n And CLAUDE.md should contain \"Restore service and fix issues systematically\"","uri":".gherkin\/features\/02-mode-switching.feature","mediaType":"text\/x.cucumber.gherkin+plain"}},{"gherkinDocument":{"feature":{"tags":[],"location":{"line":1,"column":1},"language":"en","keyword":"Feature","name":"Mode Switching","description":" As a developer\n I want to switch between different DevPod modes\n So that I can work with the right approach for my situation","children":[{"scenario":{"id":"5da94975-0176-4833-a659-b372ff0f2b18","tags":[],"location":{"line":6,"column":3},"keyword":"Scenario","name":"Switch to Speed Mode","description":"","steps":[{"id":"abec8372-be9d-48bf-bb98-efcadd01c19c","location":{"line":7,"column":5},"keyword":"Given ","keywordType":"Context","text":"DevPod is initialized"},{"id":"1f33f403-9b0f-48c3-8da6-35d038f4efb2","location":{"line":8,"column":5},"keyword":"When ","keywordType":"Action","text":"I run \"devpod speed\""},{"id":"eee6f641-e112-4623-8bb8-b074c618782b","location":{"line":9,"column":5},"keyword":"Then ","keywordType":"Outcome","text":".devpod\/config.json mode should be \"speed\""},{"id":"2be49164-2fb0-4ef3-9c05-462898121a1b","location":{"line":10,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"CLAUDE.md should contain \"<mode>speed<\/mode>\""},{"id":"d3279dc3-df7f-486a-9f62-e82fc5643395","location":{"line":11,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"CLAUDE.md should contain \"Ship working code quickly\""}],"examples":[]}},{"scenario":{"id":"49db630a-cea2-40a3-8658-724151be5307","tags":[],"location":{"line":13,"column":3},"keyword":"Scenario","name":"Switch to Discovery Mode","description":"","steps":[{"id":"44a16868-03f5-494c-928b-ea7df8022716","location":{"line":14,"column":5},"keyword":"Given ","keywordType":"Context","text":"DevPod is initialized in speed mode"},{"id":"02affd29-fa11-43af-aa58-e9232335a713","location":{"line":15,"column":5},"keyword":"When ","keywordType":"Action","text":"I run \"devpod discovery\""},{"id":"fecc7501-961d-46bf-836b-6723b145fec5","location":{"line":16,"column":5},"keyword":"Then ","keywordType":"Outcome","text":".devpod\/config.json mode should be \"discovery\""},{"id":"5a47859a-e6c1-4f96-8c09-413d69d50b2f","location":{"line":17,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"CLAUDE.md should contain \"<mode>discovery<\/mode>\""},{"id":"9f4e6e3e-7805-4fe9-82cf-efd41cf85aa7","location":{"line":18,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"CLAUDE.md should contain \"Explore multiple approaches to find the best solution\""}],"examples":[]}},{"scenario":{"id":"e4cc654c-b97b-4e51-985c-9b12c5358302","tags":[],"location":{"line":20,"column":3},"keyword":"Scenario","name":"Switch to Production Mode","description":"","steps":[{"id":"629a59e6-11a8-44db-9f07-550088cef554","location":{"line":21,"column":5},"keyword":"Given ","keywordType":"Context","text":"DevPod is initialized"},{"id":"0c1582e7-2660-44c8-92c0-3ea52c164a2e","location":{"line":22,"column":5},"keyword":"When ","keywordType":"Action","text":"I run \"devpod production\""},{"id":"3f9072b6-c4d5-4d1a-85a6-8be8251d8775","location":{"line":23,"column":5},"keyword":"Then ","keywordType":"Outcome","text":".devpod\/config.json mode should be \"production\""},{"id":"2921cc32-a9fb-421a-a647-82511609c7f8","location":{"line":24,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"CLAUDE.md should contain \"<mode>production<\/mode>\""},{"id":"765e9740-73e6-4968-ace1-55131a556ce1","location":{"line":25,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"CLAUDE.md should contain \"Build robust, tested, production-ready systems\""}],"examples":[]}},{"scenario":{"id":"57ccb080-7f4f-4ddc-a7b3-f396499d6b19","tags":[],"location":{"line":27,"column":3},"keyword":"Scenario","name":"Switch to Recovery Mode","description":"","steps":[{"id":"48a92724-3408-4e54-bcc0-9a4bbb79fea0","location":{"line":28,"column":5},"keyword":"Given ","keywordType":"Context","text":"DevPod is initialized"},{"id":"fc3559a1-7704-4087-96f5-248259971403","location":{"line":29,"column":5},"keyword":"When ","keywordType":"Action","text":"I run \"devpod recovery\""},{"id":"a8533adc-15a6-4b96-9bec-9b8d73d18fc8","location":{"line":30,"column":5},"keyword":"Then ","keywordType":"Outcome","text":".devpod\/config.json mode should be \"recovery\""},{"id":"9c5c2c0d-e40a-4a8c-8e6c-cd491ca96858","location":{"line":31,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"CLAUDE.md should contain \"<mode>recovery<\/mode>\""},{"id":"4a813c87-e1a7-43f3-aaf5-d254cec12b24","location":{"line":32,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"CLAUDE.md should contain \"Restore service and fix issues systematically\""}],"examples":[]}}]},"comments":[],"uri":".gherkin\/features\/02-mode-switching.feature"}},{"pickle":{"id":"b07cae4a-4baa-4c1d-9d6a-0eb53a0ab697","uri":".gherkin\/features\/02-mode-switching.feature","astNodeIds":["5da94975-0176-4833-a659-b372ff0f2b18"],"tags":[],"name":"Switch to Speed Mode","language":"en","steps":[{"id":"ce5109e9-33c0-4328-8cd9-ab60598f58e6","text":"DevPod is initialized","type":"Context","astNodeIds":["abec8372-be9d-48bf-bb98-efcadd01c19c"]},{"id":"77352728-7567-45e6-846e-c3f0d28de970","text":"I run \"devpod speed\"","type":"Action","astNodeIds":["1f33f403-9b0f-48c3-8da6-35d038f4efb2"]},{"id":"f492d780-8708-43f1-beb5-979bcfb2c762","text":".devpod\/config.json mode should be \"speed\"","type":"Outcome","astNodeIds":["eee6f641-e112-4623-8bb8-b074c618782b"]},{"id":"bf69c907-f6c9-437f-8090-a061ac3d831b","text":"CLAUDE.md should contain \"<mode>speed<\/mode>\"","type":"Outcome","astNodeIds":["2be49164-2fb0-4ef3-9c05-462898121a1b"]},{"id":"d293b07f-5f54-4f98-aaad-da9ab7af48e2","text":"CLAUDE.md should contain \"Ship working code quickly\"","type":"Outcome","astNodeIds":["d3279dc3-df7f-486a-9f62-e82fc5643395"]}]}},{"pickle":{"id":"4cd3b0da-1c52-40ce-8a04-3433fe5efd9d","uri":".gherkin\/features\/02-mode-switching.feature","astNodeIds":["49db630a-cea2-40a3-8658-724151be5307"],"tags":[],"name":"Switch to Discovery Mode","language":"en","steps":[{"id":"9ea9eb41-c433-42a0-b7d3-e77dcdf6edf9","text":"DevPod is initialized in speed mode","type":"Context","astNodeIds":["44a16868-03f5-494c-928b-ea7df8022716"]},{"id":"1befd115-2fce-4a00-af33-33fba27fccc4","text":"I run \"devpod discovery\"","type":"Action","astNodeIds":["02affd29-fa11-43af-aa58-e9232335a713"]},{"id":"c98ac9ae-f33d-47ef-b25b-bbb56f0683cb","text":".devpod\/config.json mode should be \"discovery\"","type":"Outcome","astNodeIds":["fecc7501-961d-46bf-836b-6723b145fec5"]},{"id":"ad45590c-bec9-40e1-a075-990fd19278ae","text":"CLAUDE.md should contain \"<mode>discovery<\/mode>\"","type":"Outcome","astNodeIds":["5a47859a-e6c1-4f96-8c09-413d69d50b2f"]},{"id":"c5d5074f-201c-421e-bf71-c658ee61945d","text":"CLAUDE.md should contain \"Explore multiple approaches to find the best solution\"","type":"Outcome","astNodeIds":["9f4e6e3e-7805-4fe9-82cf-efd41cf85aa7"]}]}},{"pickle":{"id":"409a3361-0883-4fa6-89aa-b7ad79ba086a","uri":".gherkin\/features\/02-mode-switching.feature","astNodeIds":["e4cc654c-b97b-4e51-985c-9b12c5358302"],"tags":[],"name":"Switch to Production Mode","language":"en","steps":[{"id":"ac33e660-757c-42ae-b3d6-7244b8261b02","text":"DevPod is initialized","type":"Context","astNodeIds":["629a59e6-11a8-44db-9f07-550088cef554"]},{"id":"aa38514e-4113-4548-9737-3a5328d243d1","text":"I run \"devpod production\"","type":"Action","astNodeIds":["0c1582e7-2660-44c8-92c0-3ea52c164a2e"]},{"id":"6868f921-6dc2-4af1-ac9b-7f5a4a559ea1","text":".devpod\/config.json mode should be \"production\"","type":"Outcome","astNodeIds":["3f9072b6-c4d5-4d1a-85a6-8be8251d8775"]},{"id":"8fc7a480-517d-4115-b0fe-39ca881a54e8","text":"CLAUDE.md should contain \"<mode>production<\/mode>\"","type":"Outcome","astNodeIds":["2921cc32-a9fb-421a-a647-82511609c7f8"]},{"id":"f0dd218e-0be6-4cbe-9949-62761a72c203","text":"CLAUDE.md should contain \"Build robust, tested, production-ready systems\"","type":"Outcome","astNodeIds":["765e9740-73e6-4968-ace1-55131a556ce1"]}]}},{"pickle":{"id":"0bb40dfb-dcda-461c-8388-146d3b72bbc0","uri":".gherkin\/features\/02-mode-switching.feature","astNodeIds":["57ccb080-7f4f-4ddc-a7b3-f396499d6b19"],"tags":[],"name":"Switch to Recovery Mode","language":"en","steps":[{"id":"22852ee6-cf76-43c1-98be-a457a7ac1b9f","text":"DevPod is initialized","type":"Context","astNodeIds":["48a92724-3408-4e54-bcc0-9a4bbb79fea0"]},{"id":"5bf222ec-5af1-43ca-b05a-d72fed89d4ae","text":"I run \"devpod recovery\"","type":"Action","astNodeIds":["fc3559a1-7704-4087-96f5-248259971403"]},{"id":"5677f701-9f83-408c-85c9-5ef897ee4a5b","text":".devpod\/config.json mode should be \"recovery\"","type":"Outcome","astNodeIds":["a8533adc-15a6-4b96-9bec-9b8d73d18fc8"]},{"id":"46930aa9-b03d-4e14-9875-065c9e1739a7","text":"CLAUDE.md should contain \"<mode>recovery<\/mode>\"","type":"Outcome","astNodeIds":["9c5c2c0d-e40a-4a8c-8e6c-cd491ca96858"]},{"id":"3360d1f1-d53a-4ece-93b3-c497c6c993f5","text":"CLAUDE.md should contain \"Restore service and fix issues systematically\"","type":"Outcome","astNodeIds":["4a813c87-e1a7-43f3-aaf5-d254cec12b24"]}]}},{"source":{"data":"Feature: Project Stage Management\n As a developer\n I want to set my project stage\n So that standards are filtered appropriately for my project maturity\n\n Scenario: Set stage to empty\n Given DevPod is initialized\n When I run \"devpod stage empty\"\n Then .devpod\/config.json stage should be \"empty\"\n And CLAUDE.md should contain \"<stage>empty<\/stage>\"\n\n Scenario: Set stage to starting\n Given DevPod is initialized\n When I run \"devpod stage starting\"\n Then .devpod\/config.json stage should be \"starting\"\n And CLAUDE.md should contain \"<stage>starting<\/stage>\"\n\n Scenario: Set stage to growing\n Given DevPod is initialized\n When I run \"devpod stage growing\"\n Then .devpod\/config.json stage should be \"growing\"\n And CLAUDE.md should contain \"<stage>growing<\/stage>\"\n\n Scenario: Set stage to mature\n Given DevPod is initialized\n When I run \"devpod stage mature\"\n Then .devpod\/config.json stage should be \"mature\"\n And CLAUDE.md should contain \"<stage>mature<\/stage>\"\n\n Scenario: Set stage to production\n Given DevPod is initialized\n When I run \"devpod stage production\"\n Then .devpod\/config.json stage should be \"production\"\n And CLAUDE.md should contain \"<stage>production<\/stage>\"","uri":".gherkin\/features\/03-stage-management.feature","mediaType":"text\/x.cucumber.gherkin+plain"}},{"gherkinDocument":{"feature":{"tags":[],"location":{"line":1,"column":1},"language":"en","keyword":"Feature","name":"Project Stage Management","description":" As a developer\n I want to set my project stage\n So that standards are filtered appropriately for my project maturity","children":[{"scenario":{"id":"fb96af4a-588b-43a1-a87d-6a683e45b013","tags":[],"location":{"line":6,"column":3},"keyword":"Scenario","name":"Set stage to empty","description":"","steps":[{"id":"1878a2c0-277e-40ff-b578-2e3646b2bb59","location":{"line":7,"column":5},"keyword":"Given ","keywordType":"Context","text":"DevPod is initialized"},{"id":"0f7d827d-2b4f-4219-9478-9e19e5631680","location":{"line":8,"column":5},"keyword":"When ","keywordType":"Action","text":"I run \"devpod stage empty\""},{"id":"4a9a4e6d-2340-428d-a90b-edfa034fd99f","location":{"line":9,"column":5},"keyword":"Then ","keywordType":"Outcome","text":".devpod\/config.json stage should be \"empty\""},{"id":"d4acc092-6b25-4287-a935-bc8416ad9a2b","location":{"line":10,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"CLAUDE.md should contain \"<stage>empty<\/stage>\""}],"examples":[]}},{"scenario":{"id":"9ca8efd0-5910-438a-ab59-601ca958bc33","tags":[],"location":{"line":12,"column":3},"keyword":"Scenario","name":"Set stage to starting","description":"","steps":[{"id":"c6dc67b1-2605-464f-9841-1998f28b4d42","location":{"line":13,"column":5},"keyword":"Given ","keywordType":"Context","text":"DevPod is initialized"},{"id":"a4df85c0-2c8a-439b-8e41-2f8091667c8e","location":{"line":14,"column":5},"keyword":"When ","keywordType":"Action","text":"I run \"devpod stage starting\""},{"id":"7b16eda7-8989-48c1-881a-d6cdf070ced0","location":{"line":15,"column":5},"keyword":"Then ","keywordType":"Outcome","text":".devpod\/config.json stage should be \"starting\""},{"id":"f1986148-ea66-4721-a12f-d18c462875cf","location":{"line":16,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"CLAUDE.md should contain \"<stage>starting<\/stage>\""}],"examples":[]}},{"scenario":{"id":"b575a64b-b890-4ff9-a692-5968e841f2e7","tags":[],"location":{"line":18,"column":3},"keyword":"Scenario","name":"Set stage to growing","description":"","steps":[{"id":"552ca339-c6bc-498d-81d1-5a21d094eb6a","location":{"line":19,"column":5},"keyword":"Given ","keywordType":"Context","text":"DevPod is initialized"},{"id":"ad157d49-147c-4104-98cd-93f782c26415","location":{"line":20,"column":5},"keyword":"When ","keywordType":"Action","text":"I run \"devpod stage growing\""},{"id":"c37d1dbc-4c78-414d-b6d0-b2488c1effa8","location":{"line":21,"column":5},"keyword":"Then ","keywordType":"Outcome","text":".devpod\/config.json stage should be \"growing\""},{"id":"e60ac7e6-cd08-4623-9e1e-31c440439d37","location":{"line":22,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"CLAUDE.md should contain \"<stage>growing<\/stage>\""}],"examples":[]}},{"scenario":{"id":"1833274e-231c-41f0-a917-69c0d7f5352e","tags":[],"location":{"line":24,"column":3},"keyword":"Scenario","name":"Set stage to mature","description":"","steps":[{"id":"d7f767d8-a66c-4151-b641-f5a6561f79cc","location":{"line":25,"column":5},"keyword":"Given ","keywordType":"Context","text":"DevPod is initialized"},{"id":"b8bbf844-a45a-43a1-8a8c-7782cc08b8ce","location":{"line":26,"column":5},"keyword":"When ","keywordType":"Action","text":"I run \"devpod stage mature\""},{"id":"0fa6c988-5a86-4eb9-96f3-1c4ab5d3e9a8","location":{"line":27,"column":5},"keyword":"Then ","keywordType":"Outcome","text":".devpod\/config.json stage should be \"mature\""},{"id":"79017d51-f82b-4030-b77b-4322150d5e3d","location":{"line":28,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"CLAUDE.md should contain \"<stage>mature<\/stage>\""}],"examples":[]}},{"scenario":{"id":"9ef9b228-bf3c-437c-95a7-3f6900e580c5","tags":[],"location":{"line":30,"column":3},"keyword":"Scenario","name":"Set stage to production","description":"","steps":[{"id":"226b4d3b-fba4-4a76-bd1a-3cf870210138","location":{"line":31,"column":5},"keyword":"Given ","keywordType":"Context","text":"DevPod is initialized"},{"id":"1b7553f2-df1f-4114-b2e4-37461c11393f","location":{"line":32,"column":5},"keyword":"When ","keywordType":"Action","text":"I run \"devpod stage production\""},{"id":"cb79b67d-fc4e-4ee5-9aad-e1a6ec3f22a9","location":{"line":33,"column":5},"keyword":"Then ","keywordType":"Outcome","text":".devpod\/config.json stage should be \"production\""},{"id":"d2619f25-4271-4cfa-9dc2-7f3dd9ab2c02","location":{"line":34,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"CLAUDE.md should contain \"<stage>production<\/stage>\""}],"examples":[]}}]},"comments":[],"uri":".gherkin\/features\/03-stage-management.feature"}},{"pickle":{"id":"77fb4bdd-a53d-4262-98d3-7da2302176ad","uri":".gherkin\/features\/03-stage-management.feature","astNodeIds":["fb96af4a-588b-43a1-a87d-6a683e45b013"],"tags":[],"name":"Set stage to empty","language":"en","steps":[{"id":"a7c0f5a2-35fc-4512-90ee-c2fc09cd1733","text":"DevPod is initialized","type":"Context","astNodeIds":["1878a2c0-277e-40ff-b578-2e3646b2bb59"]},{"id":"ef84ceec-d3ed-424a-8997-841643eb19b9","text":"I run \"devpod stage empty\"","type":"Action","astNodeIds":["0f7d827d-2b4f-4219-9478-9e19e5631680"]},{"id":"7fa74533-2368-49e3-ad88-73d0f83f7a10","text":".devpod\/config.json stage should be \"empty\"","type":"Outcome","astNodeIds":["4a9a4e6d-2340-428d-a90b-edfa034fd99f"]},{"id":"cf92d87b-6682-46d4-82a5-feca707847ba","text":"CLAUDE.md should contain \"<stage>empty<\/stage>\"","type":"Outcome","astNodeIds":["d4acc092-6b25-4287-a935-bc8416ad9a2b"]}]}},{"pickle":{"id":"e828cb72-4882-4f0a-bfb6-b4b31b88fd61","uri":".gherkin\/features\/03-stage-management.feature","astNodeIds":["9ca8efd0-5910-438a-ab59-601ca958bc33"],"tags":[],"name":"Set stage to starting","language":"en","steps":[{"id":"9911b5de-f486-4d75-ab27-5ab7cad9b366","text":"DevPod is initialized","type":"Context","astNodeIds":["c6dc67b1-2605-464f-9841-1998f28b4d42"]},{"id":"064ed56f-4114-4ddc-9636-064bd17649fc","text":"I run \"devpod stage starting\"","type":"Action","astNodeIds":["a4df85c0-2c8a-439b-8e41-2f8091667c8e"]},{"id":"3bdab65e-58f5-4b50-89a7-367a4a92c9da","text":".devpod\/config.json stage should be \"starting\"","type":"Outcome","astNodeIds":["7b16eda7-8989-48c1-881a-d6cdf070ced0"]},{"id":"350b63d3-e963-4208-a963-1ec98d91f62f","text":"CLAUDE.md should contain \"<stage>starting<\/stage>\"","type":"Outcome","astNodeIds":["f1986148-ea66-4721-a12f-d18c462875cf"]}]}},{"pickle":{"id":"8ad1899d-3436-4b9e-8629-1526b283b209","uri":".gherkin\/features\/03-stage-management.feature","astNodeIds":["b575a64b-b890-4ff9-a692-5968e841f2e7"],"tags":[],"name":"Set stage to growing","language":"en","steps":[{"id":"fcdc4f65-59f4-45d2-9907-964d9593c99c","text":"DevPod is initialized","type":"Context","astNodeIds":["552ca339-c6bc-498d-81d1-5a21d094eb6a"]},{"id":"bf8855fc-a2b1-4cdd-b7b6-54f40f8ec283","text":"I run \"devpod stage growing\"","type":"Action","astNodeIds":["ad157d49-147c-4104-98cd-93f782c26415"]},{"id":"b2b7ecc6-05f5-4e41-ab3e-d6d335e3eccf","text":".devpod\/config.json stage should be \"growing\"","type":"Outcome","astNodeIds":["c37d1dbc-4c78-414d-b6d0-b2488c1effa8"]},{"id":"2d60d99d-5d16-43c7-af77-03e85ac878f8","text":"CLAUDE.md should contain \"<stage>growing<\/stage>\"","type":"Outcome","astNodeIds":["e60ac7e6-cd08-4623-9e1e-31c440439d37"]}]}},{"pickle":{"id":"7b6ba9a6-f813-439c-b00d-0b0b47d37a61","uri":".gherkin\/features\/03-stage-management.feature","astNodeIds":["1833274e-231c-41f0-a917-69c0d7f5352e"],"tags":[],"name":"Set stage to mature","language":"en","steps":[{"id":"c771a914-c992-423b-8147-9ebd3f787f1a","text":"DevPod is initialized","type":"Context","astNodeIds":["d7f767d8-a66c-4151-b641-f5a6561f79cc"]},{"id":"971f5f06-e512-4116-920e-8fdf3656ebe1","text":"I run \"devpod stage mature\"","type":"Action","astNodeIds":["b8bbf844-a45a-43a1-8a8c-7782cc08b8ce"]},{"id":"fa33dbf1-44c5-4004-826a-a001cd2e0c42","text":".devpod\/config.json stage should be \"mature\"","type":"Outcome","astNodeIds":["0fa6c988-5a86-4eb9-96f3-1c4ab5d3e9a8"]},{"id":"bbb8db36-57b4-4b29-a31d-2bc2e8c6813b","text":"CLAUDE.md should contain \"<stage>mature<\/stage>\"","type":"Outcome","astNodeIds":["79017d51-f82b-4030-b77b-4322150d5e3d"]}]}},{"pickle":{"id":"838533c2-798f-4d55-b9fe-a7c4c6228d55","uri":".gherkin\/features\/03-stage-management.feature","astNodeIds":["9ef9b228-bf3c-437c-95a7-3f6900e580c5"],"tags":[],"name":"Set stage to production","language":"en","steps":[{"id":"84dcef6d-5181-438a-a720-4804fac01f6f","text":"DevPod is initialized","type":"Context","astNodeIds":["226b4d3b-fba4-4a76-bd1a-3cf870210138"]},{"id":"30a5ea7b-1850-4881-a0b0-0efff009b633","text":"I run \"devpod stage production\"","type":"Action","astNodeIds":["1b7553f2-df1f-4114-b2e4-37461c11393f"]},{"id":"cb10f541-e15e-4033-8e50-6c8796fb4489","text":".devpod\/config.json stage should be \"production\"","type":"Outcome","astNodeIds":["cb79b67d-fc4e-4ee5-9aad-e1a6ec3f22a9"]},{"id":"c6591f38-4295-41bb-9f95-b713341e5222","text":"CLAUDE.md should contain \"<stage>production<\/stage>\"","type":"Outcome","astNodeIds":["d2619f25-4271-4cfa-9dc2-7f3dd9ab2c02"]}]}},{"source":{"data":"Feature: Standards Prescription System\n As a developer\n I want standards to appear based on violations and context\n So that I see only relevant standards when I need them\n\n Background:\n Given DevPod is initialized\n And comprehensive standards library contains 4+ standards\n\n Scenario: Critical standards always appear\n Given stage is \"starting\"\n And mode is \"speed\"\n And bundles are [\"core\"]\n When I run \"devpod generate\"\n Then CLAUDE.md should contain critical standards for \"core\" bundle\n And CLAUDE.md should not contain non-critical standards\n\n Scenario: Standards appear after violation threshold\n Given mode is \"speed\"\n And no violations exist\n When I record 2 violations for \"file.naming.constants\"\n And I run \"devpod generate\"\n Then CLAUDE.md should not contain \"WATCH:\"\n When I record 1 more violation for \"file.naming.constants\"\n And I run \"devpod generate\"\n Then CLAUDE.md should contain \"WATCH:\"\n And CLAUDE.md should contain \"SCREAMING_SNAKE for constants\"\n And CLAUDE.md should contain \"(3 violations)\"\n\n Scenario: Speed mode filters by priority\n Given mode is \"speed\"\n And no violations exist\n When I record 5 violations for \"imports.order\"\n And I run \"devpod generate\"\n Then CLAUDE.md should not contain \"Import order\"\n\n Scenario: Discovery mode shows all priorities\n Given mode is \"discovery\"\n And no violations exist\n When I record 5 violations for \"imports.order\"\n And I run \"devpod generate\"\n Then CLAUDE.md should contain \"Import order\"\n\n Scenario: React detection adds React criticals\n Given package.json contains \"react\" dependency\n When I run \"devpod generate\"\n Then CLAUDE.md should contain React critical standards\n\n Scenario: Bundle addition adds critical standards\n Given bundles are [\"core\"]\n When I run \"devpod standards add auth\"\n And I run \"devpod generate\"\n Then bundles should be [\"core\", \"auth\"]\n And CLAUDE.md should contain critical standards for \"auth\" bundle\n\n Scenario: Stage filtering is cumulative\n Given stage is \"growing\"\n When I run \"devpod generate\"\n Then CLAUDE.md should contain standards for stages [\"empty\", \"starting\", \"growing\"]\n And CLAUDE.md should not contain standards for stage \"mature\"","uri":".gherkin\/features\/05-standards-filtering.feature","mediaType":"text\/x.cucumber.gherkin+plain"}},{"gherkinDocument":{"feature":{"tags":[],"location":{"line":1,"column":1},"language":"en","keyword":"Feature","name":"Standards Prescription System","description":" As a developer\n I want standards to appear based on violations and context\n So that I see only relevant standards when I need them","children":[{"background":{"id":"e1ea81ca-119f-40d9-8a90-47b76d5e49a7","location":{"line":6,"column":3},"keyword":"Background","name":"","description":"","steps":[{"id":"7ef8c75c-443e-4437-8b61-22061052af51","location":{"line":7,"column":5},"keyword":"Given ","keywordType":"Context","text":"DevPod is initialized"},{"id":"a5e80eb4-df52-414c-a1fd-df1bd6dd750f","location":{"line":8,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"comprehensive standards library contains 4+ standards"}]}},{"scenario":{"id":"f497c088-1050-49c4-91d1-9d2c62af7547","tags":[],"location":{"line":10,"column":3},"keyword":"Scenario","name":"Critical standards always appear","description":"","steps":[{"id":"97555871-ee2f-411b-8dc6-30836388ec91","location":{"line":11,"column":5},"keyword":"Given ","keywordType":"Context","text":"stage is \"starting\""},{"id":"ccdddda1-6c39-4370-8cbb-eff58a99b928","location":{"line":12,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"mode is \"speed\""},{"id":"058505f2-af8c-413a-afc3-b33aa7e7293b","location":{"line":13,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"bundles are [\"core\"]"},{"id":"1f0d069d-d732-4295-85bf-2a69f07aa728","location":{"line":14,"column":5},"keyword":"When ","keywordType":"Action","text":"I run \"devpod generate\""},{"id":"16ff173f-49a1-4794-b022-8f310cac295f","location":{"line":15,"column":5},"keyword":"Then ","keywordType":"Outcome","text":"CLAUDE.md should contain critical standards for \"core\" bundle"},{"id":"f8af2d1e-4f25-49a7-8c63-a3bb2c1c55f5","location":{"line":16,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"CLAUDE.md should not contain non-critical standards"}],"examples":[]}},{"scenario":{"id":"0984259a-191a-4472-98ad-05dfd3ee016c","tags":[],"location":{"line":18,"column":3},"keyword":"Scenario","name":"Standards appear after violation threshold","description":"","steps":[{"id":"7a8839cd-87ee-47bb-b06a-08d1e43ec3f9","location":{"line":19,"column":5},"keyword":"Given ","keywordType":"Context","text":"mode is \"speed\""},{"id":"3360fccc-7f13-4e05-846b-15fbb6b48230","location":{"line":20,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"no violations exist"},{"id":"18952f3b-5780-4232-87d2-889157ed9a88","location":{"line":21,"column":5},"keyword":"When ","keywordType":"Action","text":"I record 2 violations for \"file.naming.constants\""},{"id":"0058b30f-8058-4cee-ae3c-60160a4d32d0","location":{"line":22,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"I run \"devpod generate\""},{"id":"696329cd-7846-4139-ac03-cf78b48faa04","location":{"line":23,"column":5},"keyword":"Then ","keywordType":"Outcome","text":"CLAUDE.md should not contain \"WATCH:\""},{"id":"87e8552a-727f-41f1-9812-d6c1d943e2e0","location":{"line":24,"column":5},"keyword":"When ","keywordType":"Action","text":"I record 1 more violation for \"file.naming.constants\""},{"id":"500a77b3-a778-44ab-900c-0483390a1eed","location":{"line":25,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"I run \"devpod generate\""},{"id":"b741cde2-f398-4065-80ca-919de1f0ce87","location":{"line":26,"column":5},"keyword":"Then ","keywordType":"Outcome","text":"CLAUDE.md should contain \"WATCH:\""},{"id":"d2b10106-e364-4c39-b950-8481a1873eee","location":{"line":27,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"CLAUDE.md should contain \"SCREAMING_SNAKE for constants\""},{"id":"d3e5eddf-f881-4996-ba1b-e3d76706d057","location":{"line":28,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"CLAUDE.md should contain \"(3 violations)\""}],"examples":[]}},{"scenario":{"id":"835aa6a4-db16-461a-a76f-a61ab1c1c598","tags":[],"location":{"line":30,"column":3},"keyword":"Scenario","name":"Speed mode filters by priority","description":"","steps":[{"id":"77fca816-e374-439f-be79-931e9ef2740b","location":{"line":31,"column":5},"keyword":"Given ","keywordType":"Context","text":"mode is \"speed\""},{"id":"0075d015-118a-4bfc-9441-17a5dacf10ba","location":{"line":32,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"no violations exist"},{"id":"7ab65669-8120-4217-ad32-6f6f4c8638d5","location":{"line":33,"column":5},"keyword":"When ","keywordType":"Action","text":"I record 5 violations for \"imports.order\""},{"id":"9f51f156-f715-49dc-b174-281d322621d4","location":{"line":34,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"I run \"devpod generate\""},{"id":"3e87f922-2e0d-4257-afb2-de2448074fb9","location":{"line":35,"column":5},"keyword":"Then ","keywordType":"Outcome","text":"CLAUDE.md should not contain \"Import order\""}],"examples":[]}},{"scenario":{"id":"86ddb45e-400d-44c8-9686-0931974925c0","tags":[],"location":{"line":37,"column":3},"keyword":"Scenario","name":"Discovery mode shows all priorities","description":"","steps":[{"id":"d1692baf-72b9-4e60-a9c8-8c042c5edf60","location":{"line":38,"column":5},"keyword":"Given ","keywordType":"Context","text":"mode is \"discovery\""},{"id":"f5330bd9-9185-4016-b884-071817c22f28","location":{"line":39,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"no violations exist"},{"id":"ad03a11b-8cf8-47bf-8229-9a2a6f97a6c5","location":{"line":40,"column":5},"keyword":"When ","keywordType":"Action","text":"I record 5 violations for \"imports.order\""},{"id":"a885a345-a83c-4238-a224-45847d58cffc","location":{"line":41,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"I run \"devpod generate\""},{"id":"6a804a33-6ba8-4d5b-bb0d-b9f7e735b8db","location":{"line":42,"column":5},"keyword":"Then ","keywordType":"Outcome","text":"CLAUDE.md should contain \"Import order\""}],"examples":[]}},{"scenario":{"id":"282757c2-fa17-496d-8299-3f6bcac891cd","tags":[],"location":{"line":44,"column":3},"keyword":"Scenario","name":"React detection adds React criticals","description":"","steps":[{"id":"75ba77f1-882e-406f-9896-69198e06a9b4","location":{"line":45,"column":5},"keyword":"Given ","keywordType":"Context","text":"package.json contains \"react\" dependency"},{"id":"860b9a3b-9cb1-4f9b-92c1-f31481c4bbcb","location":{"line":46,"column":5},"keyword":"When ","keywordType":"Action","text":"I run \"devpod generate\""},{"id":"706755ee-8f93-4f29-b2ca-ae6da818e2f1","location":{"line":47,"column":5},"keyword":"Then ","keywordType":"Outcome","text":"CLAUDE.md should contain React critical standards"}],"examples":[]}},{"scenario":{"id":"77ae6f28-5deb-41d3-b42d-e40829424b9c","tags":[],"location":{"line":49,"column":3},"keyword":"Scenario","name":"Bundle addition adds critical standards","description":"","steps":[{"id":"e487de18-4dcb-4db4-897b-d26a8279d0e2","location":{"line":50,"column":5},"keyword":"Given ","keywordType":"Context","text":"bundles are [\"core\"]"},{"id":"5d89a228-6573-4526-8859-3740525c1dda","location":{"line":51,"column":5},"keyword":"When ","keywordType":"Action","text":"I run \"devpod standards add auth\""},{"id":"4cf4448c-38db-4dcb-aaf2-1842ad4f02d3","location":{"line":52,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"I run \"devpod generate\""},{"id":"52376d22-45dc-4c02-961b-8779e5d0da1e","location":{"line":53,"column":5},"keyword":"Then ","keywordType":"Outcome","text":"bundles should be [\"core\", \"auth\"]"},{"id":"44d202eb-f1ef-4718-ab85-802116378cdb","location":{"line":54,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"CLAUDE.md should contain critical standards for \"auth\" bundle"}],"examples":[]}},{"scenario":{"id":"93b6d643-3599-41d3-bd23-04671b015ab4","tags":[],"location":{"line":56,"column":3},"keyword":"Scenario","name":"Stage filtering is cumulative","description":"","steps":[{"id":"20a76a41-8660-4eac-b772-97cb302815de","location":{"line":57,"column":5},"keyword":"Given ","keywordType":"Context","text":"stage is \"growing\""},{"id":"7bf008fb-a6f1-47cb-863a-26f2925829d9","location":{"line":58,"column":5},"keyword":"When ","keywordType":"Action","text":"I run \"devpod generate\""},{"id":"226bded4-9984-4d6b-8e9d-1b0a99f573d4","location":{"line":59,"column":5},"keyword":"Then ","keywordType":"Outcome","text":"CLAUDE.md should contain standards for stages [\"empty\", \"starting\", \"growing\"]"},{"id":"68a05d09-4230-4b19-bb35-32ea01655e35","location":{"line":60,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"CLAUDE.md should not contain standards for stage \"mature\""}],"examples":[]}}]},"comments":[],"uri":".gherkin\/features\/05-standards-filtering.feature"}},{"pickle":{"id":"1b899754-dcb2-4374-9106-f7405492f55a","uri":".gherkin\/features\/05-standards-filtering.feature","astNodeIds":["f497c088-1050-49c4-91d1-9d2c62af7547"],"tags":[],"name":"Critical standards always appear","language":"en","steps":[{"id":"defc8bbd-2c86-4910-be74-679b3a3a3c97","text":"DevPod is initialized","type":"Context","astNodeIds":["7ef8c75c-443e-4437-8b61-22061052af51"]},{"id":"bc2587ad-7b21-43b8-a05d-76d082ec24b5","text":"comprehensive standards library contains 4+ standards","type":"Context","astNodeIds":["a5e80eb4-df52-414c-a1fd-df1bd6dd750f"]},{"id":"3fee9320-ee2d-40e1-8b1c-fccfbecef59a","text":"stage is \"starting\"","type":"Context","astNodeIds":["97555871-ee2f-411b-8dc6-30836388ec91"]},{"id":"c8c17271-785f-482c-8e36-6bc37725735c","text":"mode is \"speed\"","type":"Context","astNodeIds":["ccdddda1-6c39-4370-8cbb-eff58a99b928"]},{"id":"5e838b16-e24f-49ec-9e53-b5a1765c8530","text":"bundles are [\"core\"]","type":"Context","astNodeIds":["058505f2-af8c-413a-afc3-b33aa7e7293b"]},{"id":"43ddb47d-383e-48df-bf24-5196ad088405","text":"I run \"devpod generate\"","type":"Action","astNodeIds":["1f0d069d-d732-4295-85bf-2a69f07aa728"]},{"id":"633b0106-4fa8-4142-8706-1e098b0442b1","text":"CLAUDE.md should contain critical standards for \"core\" bundle","type":"Outcome","astNodeIds":["16ff173f-49a1-4794-b022-8f310cac295f"]},{"id":"75f2f91b-0b1b-454d-b3a1-fc881876e898","text":"CLAUDE.md should not contain non-critical standards","type":"Outcome","astNodeIds":["f8af2d1e-4f25-49a7-8c63-a3bb2c1c55f5"]}]}},{"pickle":{"id":"cb6cf898-aa55-4f40-b337-3f96c1d72188","uri":".gherkin\/features\/05-standards-filtering.feature","astNodeIds":["0984259a-191a-4472-98ad-05dfd3ee016c"],"tags":[],"name":"Standards appear after violation threshold","language":"en","steps":[{"id":"a24a4117-274a-4ca9-8532-c76e9c22ce81","text":"DevPod is initialized","type":"Context","astNodeIds":["7ef8c75c-443e-4437-8b61-22061052af51"]},{"id":"112c4bf9-1619-40a3-b7b8-adc27cc84062","text":"comprehensive standards library contains 4+ standards","type":"Context","astNodeIds":["a5e80eb4-df52-414c-a1fd-df1bd6dd750f"]},{"id":"8e90f197-6abb-46e2-b056-8d9ee02d51ad","text":"mode is \"speed\"","type":"Context","astNodeIds":["7a8839cd-87ee-47bb-b06a-08d1e43ec3f9"]},{"id":"e2221231-c00c-433c-ab9d-109844857260","text":"no violations exist","type":"Context","astNodeIds":["3360fccc-7f13-4e05-846b-15fbb6b48230"]},{"id":"5040e672-52c4-406a-a11e-6a1bd08aefe8","text":"I record 2 violations for \"file.naming.constants\"","type":"Action","astNodeIds":["18952f3b-5780-4232-87d2-889157ed9a88"]},{"id":"af4d24a3-96b4-4f24-82c0-2e6a54b7dfec","text":"I run \"devpod generate\"","type":"Action","astNodeIds":["0058b30f-8058-4cee-ae3c-60160a4d32d0"]},{"id":"4b2ece42-738d-4df5-b545-b6da5d9bcf9f","text":"CLAUDE.md should not contain \"WATCH:\"","type":"Outcome","astNodeIds":["696329cd-7846-4139-ac03-cf78b48faa04"]},{"id":"18436f8c-5bc6-4e7f-8320-82817975c078","text":"I record 1 more violation for \"file.naming.constants\"","type":"Action","astNodeIds":["87e8552a-727f-41f1-9812-d6c1d943e2e0"]},{"id":"3498cf6c-4356-4df7-b5ef-1f1c0aef6c27","text":"I run \"devpod generate\"","type":"Action","astNodeIds":["500a77b3-a778-44ab-900c-0483390a1eed"]},{"id":"e3f0d5ca-8b87-49b9-a514-3bbd121c3f5e","text":"CLAUDE.md should contain \"WATCH:\"","type":"Outcome","astNodeIds":["b741cde2-f398-4065-80ca-919de1f0ce87"]},{"id":"98f7a11a-3138-41b9-8561-e997eed84a0b","text":"CLAUDE.md should contain \"SCREAMING_SNAKE for constants\"","type":"Outcome","astNodeIds":["d2b10106-e364-4c39-b950-8481a1873eee"]},{"id":"47307ed4-78b5-4e69-8b6d-a65e387e2eac","text":"CLAUDE.md should contain \"(3 violations)\"","type":"Outcome","astNodeIds":["d3e5eddf-f881-4996-ba1b-e3d76706d057"]}]}},{"pickle":{"id":"1db7aeab-6a63-4ae5-9768-881b34a696d2","uri":".gherkin\/features\/05-standards-filtering.feature","astNodeIds":["835aa6a4-db16-461a-a76f-a61ab1c1c598"],"tags":[],"name":"Speed mode filters by priority","language":"en","steps":[{"id":"39aa4374-6110-46cd-8d69-b812f302ac0e","text":"DevPod is initialized","type":"Context","astNodeIds":["7ef8c75c-443e-4437-8b61-22061052af51"]},{"id":"5dc6d889-68a7-47c7-8a03-ee6059068914","text":"comprehensive standards library contains 4+ standards","type":"Context","astNodeIds":["a5e80eb4-df52-414c-a1fd-df1bd6dd750f"]},{"id":"4ac5e0dd-331e-48bd-a5bc-78c2df38b896","text":"mode is \"speed\"","type":"Context","astNodeIds":["77fca816-e374-439f-be79-931e9ef2740b"]},{"id":"7b2a070a-0121-4cfc-9ee9-376fb197874c","text":"no violations exist","type":"Context","astNodeIds":["0075d015-118a-4bfc-9441-17a5dacf10ba"]},{"id":"ecc8e920-f618-4ecd-b0c2-3e4e3ffdaaa9","text":"I record 5 violations for \"imports.order\"","type":"Action","astNodeIds":["7ab65669-8120-4217-ad32-6f6f4c8638d5"]},{"id":"549e3d4e-621a-4907-afab-edc0b2775621","text":"I run \"devpod generate\"","type":"Action","astNodeIds":["9f51f156-f715-49dc-b174-281d322621d4"]},{"id":"fd593ebc-d258-46a6-bd35-6d5d5ed88f26","text":"CLAUDE.md should not contain \"Import order\"","type":"Outcome","astNodeIds":["3e87f922-2e0d-4257-afb2-de2448074fb9"]}]}},{"pickle":{"id":"b64e5aae-712f-4580-998b-68d5800be22a","uri":".gherkin\/features\/05-standards-filtering.feature","astNodeIds":["86ddb45e-400d-44c8-9686-0931974925c0"],"tags":[],"name":"Discovery mode shows all priorities","language":"en","steps":[{"id":"0f49a816-adaf-4dca-baec-3d15758d8b4b","text":"DevPod is initialized","type":"Context","astNodeIds":["7ef8c75c-443e-4437-8b61-22061052af51"]},{"id":"c599c0a6-b671-4f81-8276-213fdef398e9","text":"comprehensive standards library contains 4+ standards","type":"Context","astNodeIds":["a5e80eb4-df52-414c-a1fd-df1bd6dd750f"]},{"id":"9b14ba2d-b41a-4011-a9a0-4e9de3ebcc67","text":"mode is \"discovery\"","type":"Context","astNodeIds":["d1692baf-72b9-4e60-a9c8-8c042c5edf60"]},{"id":"bccc3e1f-d80b-4d09-ac0c-0d4a2f50e80e","text":"no violations exist","type":"Context","astNodeIds":["f5330bd9-9185-4016-b884-071817c22f28"]},{"id":"ed6c1295-3980-4ce0-b6c0-ac7825c3051c","text":"I record 5 violations for \"imports.order\"","type":"Action","astNodeIds":["ad03a11b-8cf8-47bf-8229-9a2a6f97a6c5"]},{"id":"88b466d8-476b-4c4d-b232-69af92f93deb","text":"I run \"devpod generate\"","type":"Action","astNodeIds":["a885a345-a83c-4238-a224-45847d58cffc"]},{"id":"43821acc-509b-449b-8247-f643d38d16ff","text":"CLAUDE.md should contain \"Import order\"","type":"Outcome","astNodeIds":["6a804a33-6ba8-4d5b-bb0d-b9f7e735b8db"]}]}},{"pickle":{"id":"dc903bf1-54ca-4bb3-a41c-e8a5f7e4bbb6","uri":".gherkin\/features\/05-standards-filtering.feature","astNodeIds":["282757c2-fa17-496d-8299-3f6bcac891cd"],"tags":[],"name":"React detection adds React criticals","language":"en","steps":[{"id":"4cd7f47e-616b-411b-943b-d67ebdffce96","text":"DevPod is initialized","type":"Context","astNodeIds":["7ef8c75c-443e-4437-8b61-22061052af51"]},{"id":"3ca644ca-0cad-40f2-82be-5492df3d0d47","text":"comprehensive standards library contains 4+ standards","type":"Context","astNodeIds":["a5e80eb4-df52-414c-a1fd-df1bd6dd750f"]},{"id":"e618f8c5-539d-4bde-bf0f-17d93c37c776","text":"package.json contains \"react\" dependency","type":"Context","astNodeIds":["75ba77f1-882e-406f-9896-69198e06a9b4"]},{"id":"7bd047d6-339a-4b64-97f3-6346c6151a45","text":"I run \"devpod generate\"","type":"Action","astNodeIds":["860b9a3b-9cb1-4f9b-92c1-f31481c4bbcb"]},{"id":"7b7d7c50-2e6d-418b-b7b4-15a1f62921f0","text":"CLAUDE.md should contain React critical standards","type":"Outcome","astNodeIds":["706755ee-8f93-4f29-b2ca-ae6da818e2f1"]}]}},{"pickle":{"id":"dee03da8-342d-43ce-ac8e-e6ccf43c1ca2","uri":".gherkin\/features\/05-standards-filtering.feature","astNodeIds":["77ae6f28-5deb-41d3-b42d-e40829424b9c"],"tags":[],"name":"Bundle addition adds critical standards","language":"en","steps":[{"id":"d134bdf0-9f99-4261-bd77-4c5b649acdf7","text":"DevPod is initialized","type":"Context","astNodeIds":["7ef8c75c-443e-4437-8b61-22061052af51"]},{"id":"e686a487-3995-4567-b443-149d201bcb5f","text":"comprehensive standards library contains 4+ standards","type":"Context","astNodeIds":["a5e80eb4-df52-414c-a1fd-df1bd6dd750f"]},{"id":"d83d9f10-4f5a-41dc-9984-bfe68d2bdd9e","text":"bundles are [\"core\"]","type":"Context","astNodeIds":["e487de18-4dcb-4db4-897b-d26a8279d0e2"]},{"id":"2d7564bf-177f-4b3e-a2f3-80a8c5b6aa01","text":"I run \"devpod standards add auth\"","type":"Action","astNodeIds":["5d89a228-6573-4526-8859-3740525c1dda"]},{"id":"69ee7ae4-8350-461a-a18a-95150a898b1c","text":"I run \"devpod generate\"","type":"Action","astNodeIds":["4cf4448c-38db-4dcb-aaf2-1842ad4f02d3"]},{"id":"422fd128-a36d-4f98-9f4a-a2da1c44888f","text":"bundles should be [\"core\", \"auth\"]","type":"Outcome","astNodeIds":["52376d22-45dc-4c02-961b-8779e5d0da1e"]},{"id":"4d76537b-f43d-415e-9dce-96724e0f80a4","text":"CLAUDE.md should contain critical standards for \"auth\" bundle","type":"Outcome","astNodeIds":["44d202eb-f1ef-4718-ab85-802116378cdb"]}]}},{"pickle":{"id":"30402f38-f1f9-4e07-b544-c77f84bd9e1a","uri":".gherkin\/features\/05-standards-filtering.feature","astNodeIds":["93b6d643-3599-41d3-bd23-04671b015ab4"],"tags":[],"name":"Stage filtering is cumulative","language":"en","steps":[{"id":"37387ec3-78a7-4906-a9df-3bb3f49dfc27","text":"DevPod is initialized","type":"Context","astNodeIds":["7ef8c75c-443e-4437-8b61-22061052af51"]},{"id":"6be6d3d1-2528-4319-a83c-afc9df68b4a4","text":"comprehensive standards library contains 4+ standards","type":"Context","astNodeIds":["a5e80eb4-df52-414c-a1fd-df1bd6dd750f"]},{"id":"f3148203-c53c-49d7-b0cd-ef74ce54151b","text":"stage is \"growing\"","type":"Context","astNodeIds":["20a76a41-8660-4eac-b772-97cb302815de"]},{"id":"37c05579-fc88-4a04-a18c-e523da7590c8","text":"I run \"devpod generate\"","type":"Action","astNodeIds":["7bf008fb-a6f1-47cb-863a-26f2925829d9"]},{"id":"77902efb-1329-4d98-9015-9fbb312b9adc","text":"CLAUDE.md should contain standards for stages [\"empty\", \"starting\", \"growing\"]","type":"Outcome","astNodeIds":["226bded4-9984-4d6b-8e9d-1b0a99f573d4"]},{"id":"61624805-02c9-455c-b09f-fe0b8537670e","text":"CLAUDE.md should not contain standards for stage \"mature\"","type":"Outcome","astNodeIds":["68a05d09-4230-4b19-bb35-32ea01655e35"]}]}},{"source":{"data":"Feature: CLAUDE.md Generation\n As a developer\n I want CLAUDE.md to be generated with complete context\n So that Claude AI understands my project state and provides appropriate guidance\n\n Scenario: CLAUDE.md includes all context\n Given mode is \"speed\"\n And stage is \"growing\"\n And bundles are [\"core\", \"auth\"]\n When I run \"devpod generate\"\n Then CLAUDE.md should contain \"<claude_context project=\\\"devpod-development\\\">\"\n And CLAUDE.md should contain \"<mission>\"\n And CLAUDE.md should contain \"Ship working code quickly\"\n And CLAUDE.md should contain \"<mode>speed<\/mode>\"\n And CLAUDE.md should contain \"<stage>growing<\/stage>\"\n And CLAUDE.md should contain \"Ship working code quickly\"\n And CLAUDE.md should contain \"<standards>\"\n\n Scenario: Standards are prescribed based on violations\n Given stage is \"starting\"\n And mode is \"speed\"\n And bundles are [\"core\"]\n And no violations have occurred\n When generating CLAUDE.md\n Then CLAUDE.md should not contain \"WATCH:\"\n When I record 3 violations for \"file.naming.constants\"\n And generating CLAUDE.md\n Then CLAUDE.md should contain \"WATCH:\"\n And CLAUDE.md should contain \"SCREAMING_SNAKE for constants (3 violations)\"\n\n Scenario: Mode affects priority filtering\n Given DevPod is initialized\n And standard \"imports.order\" has priority \"medium\"\n When I record 5 violations for \"imports.order\"\n And I run \"devpod speed\"\n And generating CLAUDE.md\n Then CLAUDE.md should not contain \"Import order\"\n When I run \"devpod discovery\"\n And generating CLAUDE.md\n Then CLAUDE.md should contain \"Import order\"\n\n\n Scenario: Project summary shows instruction only with generate command when not set\n Given DevPod is initialized\n When I run \"devpod generate\"\n Then CLAUDE.md should contain \"<CLAUDE_IMMEDIATE_AUTONOMOUS_ACTION>\"\n And CLAUDE.md should contain \"MANDATORY CLAUDE EXECUTION DIRECTIVE\"\n And CLAUDE.md should contain \"devpod describe\"\n And CLAUDE.md should contain \"<project_summary>\"\n And CLAUDE.md should contain \"Not yet set\"\n\n Scenario: Project summary persists without directive when switching modes\n Given DevPod is initialized\n When I run \"devpod describe 'CLI tool for adaptive development modes'\"\n And I run \"devpod speed\"\n Then CLAUDE.md should contain \"<project_summary>\"\n And CLAUDE.md should contain \"CLI tool for adaptive development modes\"\n And CLAUDE.md should not contain \"<CLAUDE_IMMEDIATE_AUTONOMOUS_ACTION>\"\n \n Scenario: Generate command shows directive when description not set\n Given DevPod is initialized\n When I run \"devpod generate\"\n Then CLAUDE.md should contain \"<CLAUDE_IMMEDIATE_AUTONOMOUS_ACTION>\"\n \n Scenario: Generate command does not show directive when description is set\n Given DevPod is initialized\n When I run \"devpod describe 'Test project'\"\n And I run \"devpod generate\"\n Then CLAUDE.md should not contain \"<CLAUDE_IMMEDIATE_AUTONOMOUS_ACTION>\"\n And CLAUDE.md should contain \"Test project\"\n And CLAUDE.md should not contain \"IMMEDIATE ACTION NEEDED\"\n\n Scenario: Mission tag shows mode-specific mission\n Given DevPod is initialized\n When I run \"devpod speed\"\n Then CLAUDE.md should contain \"<mission>\"\n And CLAUDE.md should contain \"Ship working code quickly (2 hours max but ideally way faster)\"\n When I run \"devpod discovery\"\n Then CLAUDE.md should contain \"Explore multiple approaches to find the best solution\"\n When I run \"devpod production\"\n Then CLAUDE.md should contain \"Build robust, tested, production-ready systems\"\n When I run \"devpod recovery\"\n Then CLAUDE.md should contain \"Restore service and fix issues systematically\"\n\n Scenario: Tech stack is auto-detected from package.json\n Given DevPod is initialized\n When I run \"devpod generate\"\n Then CLAUDE.md should contain \"<tech_stack>\"\n And CLAUDE.md should contain \"Node.js\"\n\n Scenario: Violation threshold triggers prescription\n Given DevPod is initialized\n And no violations have occurred\n When generating CLAUDE.md\n Then CLAUDE.md should not contain \"WATCH:\"\n When I record 3 violations for \"file.naming.constants\"\n And generating CLAUDE.md\n Then CLAUDE.md should contain \"WATCH:\"\n And CLAUDE.md should contain \"SCREAMING_SNAKE for constants (3 violations)\"\n\n Scenario: Minimal standards in speed mode with no violations\n Given DevPod is initialized\n When I run \"devpod speed\"\n And no violations have occurred\n And generating CLAUDE.md\n Then CLAUDE.md should contain only critical standards for active bundles\n And CLAUDE.md should not contain a WATCH section\n\n Scenario: Standards grow with violations\n Given DevPod is initialized\n When I record 3 violations for \"file.naming.constants\"\n And I run \"devpod generate\"\n Then CLAUDE.md should contain \"WATCH:\"\n And CLAUDE.md should contain \"SCREAMING_SNAKE for constants (3 violations)\"","uri":".gherkin\/features\/06-claude-generation.feature","mediaType":"text\/x.cucumber.gherkin+plain"}},{"gherkinDocument":{"feature":{"tags":[],"location":{"line":1,"column":1},"language":"en","keyword":"Feature","name":"CLAUDE.md Generation","description":" As a developer\n I want CLAUDE.md to be generated with complete context\n So that Claude AI understands my project state and provides appropriate guidance","children":[{"scenario":{"id":"0370c5c1-c28b-42fd-9a81-74aa9d2bab82","tags":[],"location":{"line":6,"column":3},"keyword":"Scenario","name":"CLAUDE.md includes all context","description":"","steps":[{"id":"f540f186-02f8-478a-b2fd-4e5ef434e16f","location":{"line":7,"column":5},"keyword":"Given ","keywordType":"Context","text":"mode is \"speed\""},{"id":"0fb510c2-9ac5-42c6-ae29-a68d8f58fda5","location":{"line":8,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"stage is \"growing\""},{"id":"a70653ac-40ae-4af2-8f84-2fe5972619ea","location":{"line":9,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"bundles are [\"core\", \"auth\"]"},{"id":"94214b59-e4b6-4093-8336-d28124339c21","location":{"line":10,"column":5},"keyword":"When ","keywordType":"Action","text":"I run \"devpod generate\""},{"id":"5c8c96fc-c612-4822-a1a4-9f56a045f18c","location":{"line":11,"column":5},"keyword":"Then ","keywordType":"Outcome","text":"CLAUDE.md should contain \"<claude_context project=\\\"devpod-development\\\">\""},{"id":"72751601-786d-4d24-bc38-9bd3ed1820a2","location":{"line":12,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"CLAUDE.md should contain \"<mission>\""},{"id":"ad503983-f006-4cfd-91ea-380607c054d5","location":{"line":13,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"CLAUDE.md should contain \"Ship working code quickly\""},{"id":"b34bb787-8d3e-4fc0-a230-e5bda71da95a","location":{"line":14,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"CLAUDE.md should contain \"<mode>speed<\/mode>\""},{"id":"ea88b942-5386-48b6-99d5-f4ad6236b02e","location":{"line":15,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"CLAUDE.md should contain \"<stage>growing<\/stage>\""},{"id":"b914afad-8669-4088-8804-2922b7e370cd","location":{"line":16,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"CLAUDE.md should contain \"Ship working code quickly\""},{"id":"6c0a5e45-ca16-411a-a545-4d447d9477cb","location":{"line":17,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"CLAUDE.md should contain \"<standards>\""}],"examples":[]}},{"scenario":{"id":"8ea67c26-a388-443d-96c5-6f54ade34a01","tags":[],"location":{"line":19,"column":3},"keyword":"Scenario","name":"Standards are prescribed based on violations","description":"","steps":[{"id":"cab6cadf-521f-446b-b690-b6f8ca1464a9","location":{"line":20,"column":5},"keyword":"Given ","keywordType":"Context","text":"stage is \"starting\""},{"id":"20236e4e-fe3b-4878-95de-a8f3de09d3a9","location":{"line":21,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"mode is \"speed\""},{"id":"1d3cd37d-5e75-49b5-9daa-d07ff5c1224c","location":{"line":22,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"bundles are [\"core\"]"},{"id":"1d7b1108-885f-41cc-9ee3-c7110574f99b","location":{"line":23,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"no violations have occurred"},{"id":"db58bb6c-3476-4a19-8a48-b51992106058","location":{"line":24,"column":5},"keyword":"When ","keywordType":"Action","text":"generating CLAUDE.md"},{"id":"1317d4fe-48a7-44e6-aa20-72970de480d1","location":{"line":25,"column":5},"keyword":"Then ","keywordType":"Outcome","text":"CLAUDE.md should not contain \"WATCH:\""},{"id":"431f5fa3-571e-4ba7-bc4d-c095986a5c36","location":{"line":26,"column":5},"keyword":"When ","keywordType":"Action","text":"I record 3 violations for \"file.naming.constants\""},{"id":"adefd271-129c-420c-ae61-98e0c2375364","location":{"line":27,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"generating CLAUDE.md"},{"id":"dd50fc4e-6640-4576-a21a-13f0b2380c10","location":{"line":28,"column":5},"keyword":"Then ","keywordType":"Outcome","text":"CLAUDE.md should contain \"WATCH:\""},{"id":"2056ba04-79da-4b37-b4dd-e88cfd1fa85d","location":{"line":29,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"CLAUDE.md should contain \"SCREAMING_SNAKE for constants (3 violations)\""}],"examples":[]}},{"scenario":{"id":"4ee76fe2-e179-418b-8978-9716d5f21e00","tags":[],"location":{"line":31,"column":3},"keyword":"Scenario","name":"Mode affects priority filtering","description":"","steps":[{"id":"b38a32ff-028d-418c-8717-53185a6b4b11","location":{"line":32,"column":5},"keyword":"Given ","keywordType":"Context","text":"DevPod is initialized"},{"id":"59ab2bd3-2eee-4cd5-81f5-f7411a486a00","location":{"line":33,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"standard \"imports.order\" has priority \"medium\""},{"id":"b9a749a9-5bd3-4b65-b122-894bb606e8c7","location":{"line":34,"column":5},"keyword":"When ","keywordType":"Action","text":"I record 5 violations for \"imports.order\""},{"id":"08bde8d2-1b81-4b3f-bf82-bc8a30f19b18","location":{"line":35,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"I run \"devpod speed\""},{"id":"156802e4-32dc-4e48-a0eb-52243e2333bb","location":{"line":36,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"generating CLAUDE.md"},{"id":"035ef57f-3ab6-40e4-8af2-beee7809bd0b","location":{"line":37,"column":5},"keyword":"Then ","keywordType":"Outcome","text":"CLAUDE.md should not contain \"Import order\""},{"id":"cb1a07fa-be2f-4a47-8de8-07d1fca9611d","location":{"line":38,"column":5},"keyword":"When ","keywordType":"Action","text":"I run \"devpod discovery\""},{"id":"5be40558-8641-41cc-9975-e79d97836356","location":{"line":39,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"generating CLAUDE.md"},{"id":"d97eb55f-f915-4619-99ff-497b2c185ac9","location":{"line":40,"column":5},"keyword":"Then ","keywordType":"Outcome","text":"CLAUDE.md should contain \"Import order\""}],"examples":[]}},{"scenario":{"id":"4c608a3d-0486-48c6-9c5d-82b7e269a8e8","tags":[],"location":{"line":43,"column":3},"keyword":"Scenario","name":"Project summary shows instruction only with generate command when not set","description":"","steps":[{"id":"b8a89038-fbad-4a8f-835a-1947aa66a58c","location":{"line":44,"column":5},"keyword":"Given ","keywordType":"Context","text":"DevPod is initialized"},{"id":"0b1f1fc3-aaf2-454e-be70-b1fe85cfac8f","location":{"line":45,"column":5},"keyword":"When ","keywordType":"Action","text":"I run \"devpod generate\""},{"id":"48a02354-a1bf-4a25-a98f-6beb24c02dee","location":{"line":46,"column":5},"keyword":"Then ","keywordType":"Outcome","text":"CLAUDE.md should contain \"<CLAUDE_IMMEDIATE_AUTONOMOUS_ACTION>\""},{"id":"68fa1e23-52cd-4826-b70b-b922829e1a51","location":{"line":47,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"CLAUDE.md should contain \"MANDATORY CLAUDE EXECUTION DIRECTIVE\""},{"id":"40afa9d3-9f5b-475a-91ee-5f59d389f2ec","location":{"line":48,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"CLAUDE.md should contain \"devpod describe\""},{"id":"b1ec7afd-fb04-4bb0-8d8b-711538699826","location":{"line":49,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"CLAUDE.md should contain \"<project_summary>\""},{"id":"644c18f3-6dd0-4975-825e-e5e895b2aae9","location":{"line":50,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"CLAUDE.md should contain \"Not yet set\""}],"examples":[]}},{"scenario":{"id":"cce5afb4-ba6e-42db-8903-42ab0063d999","tags":[],"location":{"line":52,"column":3},"keyword":"Scenario","name":"Project summary persists without directive when switching modes","description":"","steps":[{"id":"37e79167-02f2-4b19-a54c-3e27a57d3e6f","location":{"line":53,"column":5},"keyword":"Given ","keywordType":"Context","text":"DevPod is initialized"},{"id":"11065265-5159-4375-888f-b56a4aa0ca47","location":{"line":54,"column":5},"keyword":"When ","keywordType":"Action","text":"I run \"devpod describe 'CLI tool for adaptive development modes'\""},{"id":"fd2e0a8e-732e-4e93-bd09-92b106134598","location":{"line":55,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"I run \"devpod speed\""},{"id":"4bbe8f9b-ea43-4f0e-b229-6ca24cdbdbf5","location":{"line":56,"column":5},"keyword":"Then ","keywordType":"Outcome","text":"CLAUDE.md should contain \"<project_summary>\""},{"id":"385d2142-79d3-4106-a8ed-9233dffbb8b2","location":{"line":57,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"CLAUDE.md should contain \"CLI tool for adaptive development modes\""},{"id":"eed8d8b4-e53f-4f8d-ac2b-76eb2b139bbb","location":{"line":58,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"CLAUDE.md should not contain \"<CLAUDE_IMMEDIATE_AUTONOMOUS_ACTION>\""}],"examples":[]}},{"scenario":{"id":"8e0d462d-08d6-499c-9d62-d2ad445fa05a","tags":[],"location":{"line":60,"column":3},"keyword":"Scenario","name":"Generate command shows directive when description not set","description":"","steps":[{"id":"a22c16e2-1076-4d74-adc6-6bd08ab4aad6","location":{"line":61,"column":5},"keyword":"Given ","keywordType":"Context","text":"DevPod is initialized"},{"id":"ad25309a-907d-485b-8788-530d151d17f4","location":{"line":62,"column":5},"keyword":"When ","keywordType":"Action","text":"I run \"devpod generate\""},{"id":"76bfea44-b0a1-4c30-852f-625165ccc4af","location":{"line":63,"column":5},"keyword":"Then ","keywordType":"Outcome","text":"CLAUDE.md should contain \"<CLAUDE_IMMEDIATE_AUTONOMOUS_ACTION>\""}],"examples":[]}},{"scenario":{"id":"b6fa62e7-c754-4df3-9477-5d701ff054d5","tags":[],"location":{"line":65,"column":3},"keyword":"Scenario","name":"Generate command does not show directive when description is set","description":"","steps":[{"id":"3eb57692-794e-4c24-9593-b3c71cb0050f","location":{"line":66,"column":5},"keyword":"Given ","keywordType":"Context","text":"DevPod is initialized"},{"id":"748660d4-6057-4646-a791-e2c592d70b59","location":{"line":67,"column":5},"keyword":"When ","keywordType":"Action","text":"I run \"devpod describe 'Test project'\""},{"id":"7b2606f6-11df-41a1-9e6a-049b9f34d9ec","location":{"line":68,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"I run \"devpod generate\""},{"id":"a38d9784-96f8-490f-bb9c-682e019cb35b","location":{"line":69,"column":5},"keyword":"Then ","keywordType":"Outcome","text":"CLAUDE.md should not contain \"<CLAUDE_IMMEDIATE_AUTONOMOUS_ACTION>\""},{"id":"b543fd8c-61e5-4316-bb6f-0ff034b9d3ff","location":{"line":70,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"CLAUDE.md should contain \"Test project\""},{"id":"ec23647a-769d-41f0-b28d-3c11c922f546","location":{"line":71,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"CLAUDE.md should not contain \"IMMEDIATE ACTION NEEDED\""}],"examples":[]}},{"scenario":{"id":"2bd1213e-0630-4808-9e3d-69f05f863366","tags":[],"location":{"line":73,"column":3},"keyword":"Scenario","name":"Mission tag shows mode-specific mission","description":"","steps":[{"id":"181231db-2b80-4ae7-8b74-cf3992d9e980","location":{"line":74,"column":5},"keyword":"Given ","keywordType":"Context","text":"DevPod is initialized"},{"id":"dc6710be-7f96-4349-9d89-14d87fe521d9","location":{"line":75,"column":5},"keyword":"When ","keywordType":"Action","text":"I run \"devpod speed\""},{"id":"e1fa9110-eeb0-42f9-9f17-df51c2487935","location":{"line":76,"column":5},"keyword":"Then ","keywordType":"Outcome","text":"CLAUDE.md should contain \"<mission>\""},{"id":"a9440f1c-ed8f-4a14-9662-357de03b98ac","location":{"line":77,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"CLAUDE.md should contain \"Ship working code quickly (2 hours max but ideally way faster)\""},{"id":"bbae4821-f0d3-4d9a-9c0b-22bdc9018f02","location":{"line":78,"column":5},"keyword":"When ","keywordType":"Action","text":"I run \"devpod discovery\""},{"id":"27af52ad-6812-4c22-a83e-62ce8efc7bff","location":{"line":79,"column":5},"keyword":"Then ","keywordType":"Outcome","text":"CLAUDE.md should contain \"Explore multiple approaches to find the best solution\""},{"id":"c7aa5e60-7245-4388-930a-9efcffa9b4c8","location":{"line":80,"column":5},"keyword":"When ","keywordType":"Action","text":"I run \"devpod production\""},{"id":"ea289c85-b050-4612-be14-94acdccd4a0a","location":{"line":81,"column":5},"keyword":"Then ","keywordType":"Outcome","text":"CLAUDE.md should contain \"Build robust, tested, production-ready systems\""},{"id":"767a08be-6afa-416c-9de1-3939e69b2f16","location":{"line":82,"column":5},"keyword":"When ","keywordType":"Action","text":"I run \"devpod recovery\""},{"id":"730c515f-404e-4363-a7f1-03fcf757cd70","location":{"line":83,"column":5},"keyword":"Then ","keywordType":"Outcome","text":"CLAUDE.md should contain \"Restore service and fix issues systematically\""}],"examples":[]}},{"scenario":{"id":"3a8ee271-2ff5-498b-b5ce-044d0fab2bf7","tags":[],"location":{"line":85,"column":3},"keyword":"Scenario","name":"Tech stack is auto-detected from package.json","description":"","steps":[{"id":"e5635e9f-7d8a-4dee-9886-eb459a343b75","location":{"line":86,"column":5},"keyword":"Given ","keywordType":"Context","text":"DevPod is initialized"},{"id":"36df4199-25c6-4d39-917a-1b1517d63759","location":{"line":87,"column":5},"keyword":"When ","keywordType":"Action","text":"I run \"devpod generate\""},{"id":"d28f9c77-ec56-44bb-b618-b83fe7af6234","location":{"line":88,"column":5},"keyword":"Then ","keywordType":"Outcome","text":"CLAUDE.md should contain \"<tech_stack>\""},{"id":"7906e682-5535-4fab-8508-2e683d7a9aa0","location":{"line":89,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"CLAUDE.md should contain \"Node.js\""}],"examples":[]}},{"scenario":{"id":"2e3cd139-47d1-4eaf-ae0e-d5fd42565f53","tags":[],"location":{"line":91,"column":3},"keyword":"Scenario","name":"Violation threshold triggers prescription","description":"","steps":[{"id":"9c21a7aa-4eef-411d-b707-d508d6f1127e","location":{"line":92,"column":5},"keyword":"Given ","keywordType":"Context","text":"DevPod is initialized"},{"id":"22be72df-e8fe-4bd1-af1f-1ce0020c222b","location":{"line":93,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"no violations have occurred"},{"id":"7528fae3-1d42-42a1-a946-4c49958e4a29","location":{"line":94,"column":5},"keyword":"When ","keywordType":"Action","text":"generating CLAUDE.md"},{"id":"f09ff876-e9f9-4943-ae12-1708e03bcc07","location":{"line":95,"column":5},"keyword":"Then ","keywordType":"Outcome","text":"CLAUDE.md should not contain \"WATCH:\""},{"id":"6e3a5b56-667c-462d-bcb8-6b5510065735","location":{"line":96,"column":5},"keyword":"When ","keywordType":"Action","text":"I record 3 violations for \"file.naming.constants\""},{"id":"0dacc7e5-07c3-4352-b0a8-4370c5ebc675","location":{"line":97,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"generating CLAUDE.md"},{"id":"3857ee7d-0e0e-4dfe-aa59-078256fb1b76","location":{"line":98,"column":5},"keyword":"Then ","keywordType":"Outcome","text":"CLAUDE.md should contain \"WATCH:\""},{"id":"66feaabd-7085-4e45-9221-6657c9df7755","location":{"line":99,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"CLAUDE.md should contain \"SCREAMING_SNAKE for constants (3 violations)\""}],"examples":[]}},{"scenario":{"id":"4377853d-8d63-4780-b467-2a890d570e9f","tags":[],"location":{"line":101,"column":3},"keyword":"Scenario","name":"Minimal standards in speed mode with no violations","description":"","steps":[{"id":"e0f6d427-6f65-496d-b25b-0778200e5962","location":{"line":102,"column":5},"keyword":"Given ","keywordType":"Context","text":"DevPod is initialized"},{"id":"1a9dd0ec-c269-4044-992b-8a7ffb3a8cbd","location":{"line":103,"column":5},"keyword":"When ","keywordType":"Action","text":"I run \"devpod speed\""},{"id":"2745383d-c117-4281-b11d-28f1c288bc8a","location":{"line":104,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"no violations have occurred"},{"id":"e4065d93-35da-4665-be22-4cc6f98ebfd8","location":{"line":105,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"generating CLAUDE.md"},{"id":"01e093d0-810d-4344-9d4c-ab1bb05e56cd","location":{"line":106,"column":5},"keyword":"Then ","keywordType":"Outcome","text":"CLAUDE.md should contain only critical standards for active bundles"},{"id":"43babf61-5fb5-4be3-82fc-c522c7276680","location":{"line":107,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"CLAUDE.md should not contain a WATCH section"}],"examples":[]}},{"scenario":{"id":"8ca79885-6d9e-4c90-bf0e-59b9e71deea4","tags":[],"location":{"line":109,"column":3},"keyword":"Scenario","name":"Standards grow with violations","description":"","steps":[{"id":"4e5706e9-1a68-4139-b93b-5e0cf1a7be2d","location":{"line":110,"column":5},"keyword":"Given ","keywordType":"Context","text":"DevPod is initialized"},{"id":"86b4b4ef-fede-453b-8254-5bb6891f06d7","location":{"line":111,"column":5},"keyword":"When ","keywordType":"Action","text":"I record 3 violations for \"file.naming.constants\""},{"id":"6b0fb194-c655-4a29-9ffb-442d747ad05a","location":{"line":112,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"I run \"devpod generate\""},{"id":"601c5f45-5820-4bdc-90ce-bd8c859dea1d","location":{"line":113,"column":5},"keyword":"Then ","keywordType":"Outcome","text":"CLAUDE.md should contain \"WATCH:\""},{"id":"9c716319-da08-4a1a-9a24-487df8ff6f76","location":{"line":114,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"CLAUDE.md should contain \"SCREAMING_SNAKE for constants (3 violations)\""}],"examples":[]}}]},"comments":[],"uri":".gherkin\/features\/06-claude-generation.feature"}},{"pickle":{"id":"b52427b1-b6b2-49bb-9d34-1eb61703514d","uri":".gherkin\/features\/06-claude-generation.feature","astNodeIds":["0370c5c1-c28b-42fd-9a81-74aa9d2bab82"],"tags":[],"name":"CLAUDE.md includes all context","language":"en","steps":[{"id":"9bb563c4-f4a6-4b68-a72c-db5c9a2e6104","text":"mode is \"speed\"","type":"Context","astNodeIds":["f540f186-02f8-478a-b2fd-4e5ef434e16f"]},{"id":"f1d74ad9-5129-471d-9e99-1a736eeb14cd","text":"stage is \"growing\"","type":"Context","astNodeIds":["0fb510c2-9ac5-42c6-ae29-a68d8f58fda5"]},{"id":"fa73355a-b044-43bf-bad6-518991f0bc19","text":"bundles are [\"core\", \"auth\"]","type":"Context","astNodeIds":["a70653ac-40ae-4af2-8f84-2fe5972619ea"]},{"id":"2f36438c-5663-486a-93f6-90a100f4f504","text":"I run \"devpod generate\"","type":"Action","astNodeIds":["94214b59-e4b6-4093-8336-d28124339c21"]},{"id":"7012fcc6-333f-4b4b-93d8-3d93e4f8cd2d","text":"CLAUDE.md should contain \"<claude_context project=\\\"devpod-development\\\">\"","type":"Outcome","astNodeIds":["5c8c96fc-c612-4822-a1a4-9f56a045f18c"]},{"id":"d9b033b6-5b85-49bb-8dd7-95cebf10eb19","text":"CLAUDE.md should contain \"<mission>\"","type":"Outcome","astNodeIds":["72751601-786d-4d24-bc38-9bd3ed1820a2"]},{"id":"c50f4a0a-d1d0-4ad9-8ed9-f7e476801abf","text":"CLAUDE.md should contain \"Ship working code quickly\"","type":"Outcome","astNodeIds":["ad503983-f006-4cfd-91ea-380607c054d5"]},{"id":"cae76c3f-aabd-4a97-a01d-af13df3a637c","text":"CLAUDE.md should contain \"<mode>speed<\/mode>\"","type":"Outcome","astNodeIds":["b34bb787-8d3e-4fc0-a230-e5bda71da95a"]},{"id":"50deae86-5e22-4963-a966-321ebf7d26a0","text":"CLAUDE.md should contain \"<stage>growing<\/stage>\"","type":"Outcome","astNodeIds":["ea88b942-5386-48b6-99d5-f4ad6236b02e"]},{"id":"0e22f735-cd9f-4cda-91e0-e2eaba3b0109","text":"CLAUDE.md should contain \"Ship working code quickly\"","type":"Outcome","astNodeIds":["b914afad-8669-4088-8804-2922b7e370cd"]},{"id":"44ed9ee9-be38-48ad-b6bd-a1c85b24703e","text":"CLAUDE.md should contain \"<standards>\"","type":"Outcome","astNodeIds":["6c0a5e45-ca16-411a-a545-4d447d9477cb"]}]}},{"pickle":{"id":"a2e6c31e-b843-4f49-92a7-02f32d979694","uri":".gherkin\/features\/06-claude-generation.feature","astNodeIds":["8ea67c26-a388-443d-96c5-6f54ade34a01"],"tags":[],"name":"Standards are prescribed based on violations","language":"en","steps":[{"id":"07f64907-8124-443a-a33f-a60f09b039a2","text":"stage is \"starting\"","type":"Context","astNodeIds":["cab6cadf-521f-446b-b690-b6f8ca1464a9"]},{"id":"775524ad-c7de-4a00-8eb6-13ad2bb950fc","text":"mode is \"speed\"","type":"Context","astNodeIds":["20236e4e-fe3b-4878-95de-a8f3de09d3a9"]},{"id":"2846b49f-98b9-4c95-8a92-d0236e912946","text":"bundles are [\"core\"]","type":"Context","astNodeIds":["1d3cd37d-5e75-49b5-9daa-d07ff5c1224c"]},{"id":"767bddce-a8db-4d3d-bdc1-c4b0b5c8fb00","text":"no violations have occurred","type":"Context","astNodeIds":["1d7b1108-885f-41cc-9ee3-c7110574f99b"]},{"id":"828d7d9a-46f3-48fb-b328-4e902333ebb5","text":"generating CLAUDE.md","type":"Action","astNodeIds":["db58bb6c-3476-4a19-8a48-b51992106058"]},{"id":"f02f0125-4a60-4d81-aafc-901108acc2dc","text":"CLAUDE.md should not contain \"WATCH:\"","type":"Outcome","astNodeIds":["1317d4fe-48a7-44e6-aa20-72970de480d1"]},{"id":"9379ec41-9799-4c18-bb83-0d3a5a51ae68","text":"I record 3 violations for \"file.naming.constants\"","type":"Action","astNodeIds":["431f5fa3-571e-4ba7-bc4d-c095986a5c36"]},{"id":"95d1f137-93eb-468e-b9c6-d78d491e3511","text":"generating CLAUDE.md","type":"Action","astNodeIds":["adefd271-129c-420c-ae61-98e0c2375364"]},{"id":"8cd1ed4d-0f99-4c21-85c3-dd66a996b3e4","text":"CLAUDE.md should contain \"WATCH:\"","type":"Outcome","astNodeIds":["dd50fc4e-6640-4576-a21a-13f0b2380c10"]},{"id":"e271e34b-28a9-4789-b52c-022e97ce3b8e","text":"CLAUDE.md should contain \"SCREAMING_SNAKE for constants (3 violations)\"","type":"Outcome","astNodeIds":["2056ba04-79da-4b37-b4dd-e88cfd1fa85d"]}]}},{"pickle":{"id":"8189b7fe-0032-47d5-95fe-2878917e840e","uri":".gherkin\/features\/06-claude-generation.feature","astNodeIds":["4ee76fe2-e179-418b-8978-9716d5f21e00"],"tags":[],"name":"Mode affects priority filtering","language":"en","steps":[{"id":"6d7b1b06-14c2-4ea4-8bbc-d08d8569eb3b","text":"DevPod is initialized","type":"Context","astNodeIds":["b38a32ff-028d-418c-8717-53185a6b4b11"]},{"id":"1be95d24-1059-4117-9dd2-8840cbcf5351","text":"standard \"imports.order\" has priority \"medium\"","type":"Context","astNodeIds":["59ab2bd3-2eee-4cd5-81f5-f7411a486a00"]},{"id":"06726a08-8c57-4ee1-b33f-440451b96629","text":"I record 5 violations for \"imports.order\"","type":"Action","astNodeIds":["b9a749a9-5bd3-4b65-b122-894bb606e8c7"]},{"id":"a6102d24-ee2c-437e-860b-9726d7dc48bc","text":"I run \"devpod speed\"","type":"Action","astNodeIds":["08bde8d2-1b81-4b3f-bf82-bc8a30f19b18"]},{"id":"a1401ad1-8ec1-4352-8a7d-e88dd9dd3cab","text":"generating CLAUDE.md","type":"Action","astNodeIds":["156802e4-32dc-4e48-a0eb-52243e2333bb"]},{"id":"69c94838-7d69-4ea0-9749-d9771e9f807d","text":"CLAUDE.md should not contain \"Import order\"","type":"Outcome","astNodeIds":["035ef57f-3ab6-40e4-8af2-beee7809bd0b"]},{"id":"05612874-bbfc-4ec5-89ef-8742e5991770","text":"I run \"devpod discovery\"","type":"Action","astNodeIds":["cb1a07fa-be2f-4a47-8de8-07d1fca9611d"]},{"id":"8ba1a276-86c2-4bfc-9d19-e7370ce74039","text":"generating CLAUDE.md","type":"Action","astNodeIds":["5be40558-8641-41cc-9975-e79d97836356"]},{"id":"02a63b97-4655-425e-b346-998409e447e7","text":"CLAUDE.md should contain \"Import order\"","type":"Outcome","astNodeIds":["d97eb55f-f915-4619-99ff-497b2c185ac9"]}]}},{"pickle":{"id":"98b2d449-24d4-4504-8c56-481f6a864fd8","uri":".gherkin\/features\/06-claude-generation.feature","astNodeIds":["4c608a3d-0486-48c6-9c5d-82b7e269a8e8"],"tags":[],"name":"Project summary shows instruction only with generate command when not set","language":"en","steps":[{"id":"252d4508-296b-434c-92f7-16f385414655","text":"DevPod is initialized","type":"Context","astNodeIds":["b8a89038-fbad-4a8f-835a-1947aa66a58c"]},{"id":"5c55b4b7-d1c0-4c05-bef3-0293302f068f","text":"I run \"devpod generate\"","type":"Action","astNodeIds":["0b1f1fc3-aaf2-454e-be70-b1fe85cfac8f"]},{"id":"b356c4ae-dad0-4a9c-9c9c-5276afc55853","text":"CLAUDE.md should contain \"<CLAUDE_IMMEDIATE_AUTONOMOUS_ACTION>\"","type":"Outcome","astNodeIds":["48a02354-a1bf-4a25-a98f-6beb24c02dee"]},{"id":"fe9f3e4c-171b-4fed-bdb9-7ca65e920af8","text":"CLAUDE.md should contain \"MANDATORY CLAUDE EXECUTION DIRECTIVE\"","type":"Outcome","astNodeIds":["68fa1e23-52cd-4826-b70b-b922829e1a51"]},{"id":"3d5aa8c6-f2bd-4343-9725-1efcc30d728d","text":"CLAUDE.md should contain \"devpod describe\"","type":"Outcome","astNodeIds":["40afa9d3-9f5b-475a-91ee-5f59d389f2ec"]},{"id":"d8791e06-adcc-4549-a3e6-7c863e609fdd","text":"CLAUDE.md should contain \"<project_summary>\"","type":"Outcome","astNodeIds":["b1ec7afd-fb04-4bb0-8d8b-711538699826"]},{"id":"92ec9d3b-8952-4d3e-a13a-02236326adfb","text":"CLAUDE.md should contain \"Not yet set\"","type":"Outcome","astNodeIds":["644c18f3-6dd0-4975-825e-e5e895b2aae9"]}]}},{"pickle":{"id":"79501b5b-f5d9-42c4-b6ef-f2914fc7a208","uri":".gherkin\/features\/06-claude-generation.feature","astNodeIds":["cce5afb4-ba6e-42db-8903-42ab0063d999"],"tags":[],"name":"Project summary persists without directive when switching modes","language":"en","steps":[{"id":"cd1ac53d-985f-4f72-b2f2-2b273ee02bfe","text":"DevPod is initialized","type":"Context","astNodeIds":["37e79167-02f2-4b19-a54c-3e27a57d3e6f"]},{"id":"763f2bc2-ad24-4b2e-ab99-33cbb7f135ff","text":"I run \"devpod describe 'CLI tool for adaptive development modes'\"","type":"Action","astNodeIds":["11065265-5159-4375-888f-b56a4aa0ca47"]},{"id":"63493359-c2c0-4a7e-9fbf-5b6bdc0d3e4b","text":"I run \"devpod speed\"","type":"Action","astNodeIds":["fd2e0a8e-732e-4e93-bd09-92b106134598"]},{"id":"4c29b18c-4962-4a1f-bab3-308d988049b1","text":"CLAUDE.md should contain \"<project_summary>\"","type":"Outcome","astNodeIds":["4bbe8f9b-ea43-4f0e-b229-6ca24cdbdbf5"]},{"id":"0aec79a3-f9bf-459d-86a2-a276353ff009","text":"CLAUDE.md should contain \"CLI tool for adaptive development modes\"","type":"Outcome","astNodeIds":["385d2142-79d3-4106-a8ed-9233dffbb8b2"]},{"id":"4ffd9c76-5a08-4108-87c9-b2f5df6120a3","text":"CLAUDE.md should not contain \"<CLAUDE_IMMEDIATE_AUTONOMOUS_ACTION>\"","type":"Outcome","astNodeIds":["eed8d8b4-e53f-4f8d-ac2b-76eb2b139bbb"]}]}},{"pickle":{"id":"09b6bc2e-4725-4dcf-aab2-94cadeaaa8dc","uri":".gherkin\/features\/06-claude-generation.feature","astNodeIds":["8e0d462d-08d6-499c-9d62-d2ad445fa05a"],"tags":[],"name":"Generate command shows directive when description not set","language":"en","steps":[{"id":"37550139-01d1-4709-9a9a-4ffb502377c0","text":"DevPod is initialized","type":"Context","astNodeIds":["a22c16e2-1076-4d74-adc6-6bd08ab4aad6"]},{"id":"91344f78-21b6-451a-b0c0-942f9a93d7eb","text":"I run \"devpod generate\"","type":"Action","astNodeIds":["ad25309a-907d-485b-8788-530d151d17f4"]},{"id":"030f8a8b-f7e7-4380-9fb8-30496ff47fac","text":"CLAUDE.md should contain \"<CLAUDE_IMMEDIATE_AUTONOMOUS_ACTION>\"","type":"Outcome","astNodeIds":["76bfea44-b0a1-4c30-852f-625165ccc4af"]}]}},{"pickle":{"id":"2e787941-7526-40c0-bd28-ef8bd9b1390b","uri":".gherkin\/features\/06-claude-generation.feature","astNodeIds":["b6fa62e7-c754-4df3-9477-5d701ff054d5"],"tags":[],"name":"Generate command does not show directive when description is set","language":"en","steps":[{"id":"c9bc16c2-dc8b-4f2e-9b9a-f7d97a95239b","text":"DevPod is initialized","type":"Context","astNodeIds":["3eb57692-794e-4c24-9593-b3c71cb0050f"]},{"id":"8cd7dd33-2107-41d8-9bf2-50c41462fa70","text":"I run \"devpod describe 'Test project'\"","type":"Action","astNodeIds":["748660d4-6057-4646-a791-e2c592d70b59"]},{"id":"8e3a5bcf-ea14-458d-a22b-270dc05ee2c7","text":"I run \"devpod generate\"","type":"Action","astNodeIds":["7b2606f6-11df-41a1-9e6a-049b9f34d9ec"]},{"id":"2e98866e-981b-4e43-bd23-9e1542660fa5","text":"CLAUDE.md should not contain \"<CLAUDE_IMMEDIATE_AUTONOMOUS_ACTION>\"","type":"Outcome","astNodeIds":["a38d9784-96f8-490f-bb9c-682e019cb35b"]},{"id":"6764b6e0-3846-413d-b38c-ccc563514334","text":"CLAUDE.md should contain \"Test project\"","type":"Outcome","astNodeIds":["b543fd8c-61e5-4316-bb6f-0ff034b9d3ff"]},{"id":"7dad8faf-a047-4e01-a675-3620686efc17","text":"CLAUDE.md should not contain \"IMMEDIATE ACTION NEEDED\"","type":"Outcome","astNodeIds":["ec23647a-769d-41f0-b28d-3c11c922f546"]}]}},{"pickle":{"id":"27f54152-d9e9-4b88-bbdc-bec27f95d9da","uri":".gherkin\/features\/06-claude-generation.feature","astNodeIds":["2bd1213e-0630-4808-9e3d-69f05f863366"],"tags":[],"name":"Mission tag shows mode-specific mission","language":"en","steps":[{"id":"eb4edd09-3ddd-404a-b8f4-daa48b766f43","text":"DevPod is initialized","type":"Context","astNodeIds":["181231db-2b80-4ae7-8b74-cf3992d9e980"]},{"id":"b5e851d8-841c-46d0-880e-00ad62450330","text":"I run \"devpod speed\"","type":"Action","astNodeIds":["dc6710be-7f96-4349-9d89-14d87fe521d9"]},{"id":"492afda6-8e09-4f0e-ba98-78da7e4a1124","text":"CLAUDE.md should contain \"<mission>\"","type":"Outcome","astNodeIds":["e1fa9110-eeb0-42f9-9f17-df51c2487935"]},{"id":"b3fdeeda-97fc-4c51-b96a-9ac8482d081b","text":"CLAUDE.md should contain \"Ship working code quickly (2 hours max but ideally way faster)\"","type":"Outcome","astNodeIds":["a9440f1c-ed8f-4a14-9662-357de03b98ac"]},{"id":"af7b6a14-5964-4b88-9762-f05f2966180a","text":"I run \"devpod discovery\"","type":"Action","astNodeIds":["bbae4821-f0d3-4d9a-9c0b-22bdc9018f02"]},{"id":"25352dae-aeb3-4ffc-b261-19df68516dff","text":"CLAUDE.md should contain \"Explore multiple approaches to find the best solution\"","type":"Outcome","astNodeIds":["27af52ad-6812-4c22-a83e-62ce8efc7bff"]},{"id":"4c9476a0-1639-4c90-9739-a8f513d7f6ac","text":"I run \"devpod production\"","type":"Action","astNodeIds":["c7aa5e60-7245-4388-930a-9efcffa9b4c8"]},{"id":"f1aa91c5-ffb2-4837-a39a-7c028342e2bf","text":"CLAUDE.md should contain \"Build robust, tested, production-ready systems\"","type":"Outcome","astNodeIds":["ea289c85-b050-4612-be14-94acdccd4a0a"]},{"id":"0d5b6dd0-0a28-46b6-8dce-14678d840850","text":"I run \"devpod recovery\"","type":"Action","astNodeIds":["767a08be-6afa-416c-9de1-3939e69b2f16"]},{"id":"73b05d64-8117-4aca-82ec-cebae115ff07","text":"CLAUDE.md should contain \"Restore service and fix issues systematically\"","type":"Outcome","astNodeIds":["730c515f-404e-4363-a7f1-03fcf757cd70"]}]}},{"pickle":{"id":"57b2c98d-239d-472a-8d9d-9392bf93e623","uri":".gherkin\/features\/06-claude-generation.feature","astNodeIds":["3a8ee271-2ff5-498b-b5ce-044d0fab2bf7"],"tags":[],"name":"Tech stack is auto-detected from package.json","language":"en","steps":[{"id":"4c77d36e-f87e-48ad-88b7-0aed3ab00607","text":"DevPod is initialized","type":"Context","astNodeIds":["e5635e9f-7d8a-4dee-9886-eb459a343b75"]},{"id":"d024d646-8e9d-468a-a200-e08ea5d9a511","text":"I run \"devpod generate\"","type":"Action","astNodeIds":["36df4199-25c6-4d39-917a-1b1517d63759"]},{"id":"36af76ca-6703-496e-9be2-34a8a251cd4a","text":"CLAUDE.md should contain \"<tech_stack>\"","type":"Outcome","astNodeIds":["d28f9c77-ec56-44bb-b618-b83fe7af6234"]},{"id":"3c859874-a0ea-4b98-8a3d-39fbcfdc0e5a","text":"CLAUDE.md should contain \"Node.js\"","type":"Outcome","astNodeIds":["7906e682-5535-4fab-8508-2e683d7a9aa0"]}]}},{"pickle":{"id":"4185b394-067f-4c0c-8d93-3221dd434f15","uri":".gherkin\/features\/06-claude-generation.feature","astNodeIds":["2e3cd139-47d1-4eaf-ae0e-d5fd42565f53"],"tags":[],"name":"Violation threshold triggers prescription","language":"en","steps":[{"id":"9bd60fe1-173b-4ae5-816e-96894bbe510d","text":"DevPod is initialized","type":"Context","astNodeIds":["9c21a7aa-4eef-411d-b707-d508d6f1127e"]},{"id":"5dc26e78-7880-49bb-94ca-4f9a7aedc20c","text":"no violations have occurred","type":"Context","astNodeIds":["22be72df-e8fe-4bd1-af1f-1ce0020c222b"]},{"id":"e17a6242-250d-4c83-89cc-c9ded3fc3eb9","text":"generating CLAUDE.md","type":"Action","astNodeIds":["7528fae3-1d42-42a1-a946-4c49958e4a29"]},{"id":"b3888e67-eb97-439f-935b-4bbf8897d162","text":"CLAUDE.md should not contain \"WATCH:\"","type":"Outcome","astNodeIds":["f09ff876-e9f9-4943-ae12-1708e03bcc07"]},{"id":"5b21093e-11da-4196-91dc-a5ce4c80f8a8","text":"I record 3 violations for \"file.naming.constants\"","type":"Action","astNodeIds":["6e3a5b56-667c-462d-bcb8-6b5510065735"]},{"id":"e1561a98-3782-4f9e-9904-8d3fb4d468ce","text":"generating CLAUDE.md","type":"Action","astNodeIds":["0dacc7e5-07c3-4352-b0a8-4370c5ebc675"]},{"id":"0db80ea0-b67f-4bf1-8547-d18fe3cf7b1d","text":"CLAUDE.md should contain \"WATCH:\"","type":"Outcome","astNodeIds":["3857ee7d-0e0e-4dfe-aa59-078256fb1b76"]},{"id":"afd06771-5cf7-49d9-a96c-04d04b8c8a49","text":"CLAUDE.md should contain \"SCREAMING_SNAKE for constants (3 violations)\"","type":"Outcome","astNodeIds":["66feaabd-7085-4e45-9221-6657c9df7755"]}]}},{"pickle":{"id":"59d9c6e8-fc09-49f7-b1de-5e3dd5770bc8","uri":".gherkin\/features\/06-claude-generation.feature","astNodeIds":["4377853d-8d63-4780-b467-2a890d570e9f"],"tags":[],"name":"Minimal standards in speed mode with no violations","language":"en","steps":[{"id":"67d502b1-afce-4b63-9f4a-742a0afc603a","text":"DevPod is initialized","type":"Context","astNodeIds":["e0f6d427-6f65-496d-b25b-0778200e5962"]},{"id":"972c40fa-5e2a-4e85-bc41-db2e2530f421","text":"I run \"devpod speed\"","type":"Action","astNodeIds":["1a9dd0ec-c269-4044-992b-8a7ffb3a8cbd"]},{"id":"e53052cc-2241-4407-affc-93ef12bad406","text":"no violations have occurred","type":"Action","astNodeIds":["2745383d-c117-4281-b11d-28f1c288bc8a"]},{"id":"34ab2373-e8fb-4dd2-b95e-4ecefc302e4b","text":"generating CLAUDE.md","type":"Action","astNodeIds":["e4065d93-35da-4665-be22-4cc6f98ebfd8"]},{"id":"6123e4f3-c9fe-4786-9724-c86eee73fb66","text":"CLAUDE.md should contain only critical standards for active bundles","type":"Outcome","astNodeIds":["01e093d0-810d-4344-9d4c-ab1bb05e56cd"]},{"id":"abd8f2cf-c10f-4d0d-90ec-d29cf9525f6a","text":"CLAUDE.md should not contain a WATCH section","type":"Outcome","astNodeIds":["43babf61-5fb5-4be3-82fc-c522c7276680"]}]}},{"pickle":{"id":"384b6f67-b055-4f59-a272-f5c6afc373b5","uri":".gherkin\/features\/06-claude-generation.feature","astNodeIds":["8ca79885-6d9e-4c90-bf0e-59b9e71deea4"],"tags":[],"name":"Standards grow with violations","language":"en","steps":[{"id":"e4ede061-747d-47be-adb9-bb28c6a04f17","text":"DevPod is initialized","type":"Context","astNodeIds":["4e5706e9-1a68-4139-b93b-5e0cf1a7be2d"]},{"id":"ace85f1d-285f-4b91-8c70-a5a014ec8a97","text":"I record 3 violations for \"file.naming.constants\"","type":"Action","astNodeIds":["86b4b4ef-fede-453b-8254-5bb6891f06d7"]},{"id":"bf610048-c57f-419f-a3a3-94b41bbfb5da","text":"I run \"devpod generate\"","type":"Action","astNodeIds":["6b0fb194-c655-4a29-9ffb-442d747ad05a"]},{"id":"321cf684-6c2d-4cb6-b73d-7e6089cbd08f","text":"CLAUDE.md should contain \"WATCH:\"","type":"Outcome","astNodeIds":["601c5f45-5820-4bdc-90ce-bd8c859dea1d"]},{"id":"f8bdb33b-6753-4191-b6f4-29c8816de195","text":"CLAUDE.md should contain \"SCREAMING_SNAKE for constants (3 violations)\"","type":"Outcome","astNodeIds":["9c716319-da08-4a1a-9a24-487df8ff6f76"]}]}},{"source":{"data":"Feature: Automatic Stage Detection\n As a developer\n I want DevPod to automatically detect my project stage\n So that standards evolve naturally as my project grows\n\n Background:\n Given DevPod is initialized\n\n Scenario: Stage auto-detects on every generate\n Given a project with 3 files\n When I run \"devpod generate\"\n Then .devpod\/config.json stage should be \"starting\"\n When I create 10 more code files\n And I run \"devpod generate\"\n Then .devpod\/config.json stage should be \"growing\"\n And I should see \"📊 Auto-detected stage change: starting → growing\"\n\n Scenario: Recursive file counting\n Given a project with nested structure:\n | src\/components\/Button.tsx |\n | src\/hooks\/useAuth.ts |\n | lib\/utils\/format.js |\n | api\/routes\/users.js |\n When I run \"devpod generate\"\n Then .devpod\/config.json stage should be \"growing\"\n When I create files in subdirectories:\n | src\/components\/Form.tsx |\n | src\/components\/Modal.tsx |\n | src\/pages\/Home.tsx |\n | src\/pages\/About.tsx |\n And I run \"devpod generate\"\n Then .devpod\/config.json stage should be \"growing\"\n\n Scenario: Manual stage override is respected\n Given a project with 3 files\n When I run \"devpod stage mature\"\n Then .devpod\/config.json stage should be \"mature\"\n When I run \"devpod generate\"\n Then .devpod\/config.json stage should be \"mature\"\n And I should not see \"📊 Auto-detected stage change\"\n\n Scenario: Auto stage command\n Given a project with 15 files\n When I run \"devpod stage auto\"\n Then .devpod\/config.json stage should be \"growing\"\n And I should see \"✅ Stage auto-detected as growing\"\n\n Scenario: Ignored directories don't count\n Given a project with files in ignored directories:\n | node_modules\/package\/index.js |\n | .git\/hooks\/pre-commit |\n | dist\/bundle.js |\n | build\/output.js |\n | coverage\/report.js |\n And a project with 2 actual code files\n When I run \"devpod generate\"\n Then .devpod\/config.json stage should be \"starting\"\n\n Scenario: Stage thresholds work correctly\n Given a new project directory\n When I run \"devpod init\"\n Then .devpod\/config.json stage should be \"starting\"\n When I create 2 code files\n And I run \"devpod generate\"\n Then .devpod\/config.json stage should be \"growing\"\n When I create 18 more code files\n And I run \"devpod generate\"\n Then .devpod\/config.json stage should be \"mature\"\n When I create 75 more code files\n And I run \"devpod generate\"\n Then .devpod\/config.json stage should be \"production\"\n\n Scenario: Multiple language files are counted\n Given a project with mixed language files:\n | main.js |\n | server.py |\n | utils.go |\n | Calculator.java |\n | helper.rb |\n | app.swift |\n | main.rs |\n When I run \"devpod generate\"\n Then .devpod\/config.json stage should be \"growing\"\n\n Scenario: Stage affects standards shown\n Given a project with 2 files\n When I run \"devpod generate\"\n Then .devpod\/config.json stage should be \"starting\"\n And CLAUDE.md should contain standards for stages [\"empty\", \"starting\"]\n When I create 25 more code files\n And I run \"devpod generate\"\n Then .devpod\/config.json stage should be \"mature\"\n And CLAUDE.md should contain standards for stages [\"empty\", \"starting\", \"growing\", \"mature\"]","uri":".gherkin\/features\/07-auto-stage-detection.feature","mediaType":"text\/x.cucumber.gherkin+plain"}},{"gherkinDocument":{"feature":{"tags":[],"location":{"line":1,"column":1},"language":"en","keyword":"Feature","name":"Automatic Stage Detection","description":" As a developer\n I want DevPod to automatically detect my project stage\n So that standards evolve naturally as my project grows","children":[{"background":{"id":"a79d4ee4-caa6-4813-9aa6-99e023f56133","location":{"line":6,"column":3},"keyword":"Background","name":"","description":"","steps":[{"id":"6198464d-bf63-4523-b7c9-58d13eaf72c0","location":{"line":7,"column":5},"keyword":"Given ","keywordType":"Context","text":"DevPod is initialized"}]}},{"scenario":{"id":"cd47c99f-8df2-4cb1-89b4-65bf3129ba3c","tags":[],"location":{"line":9,"column":3},"keyword":"Scenario","name":"Stage auto-detects on every generate","description":"","steps":[{"id":"1df9a2bf-352f-4ca4-9327-26c2c8dd72b4","location":{"line":10,"column":5},"keyword":"Given ","keywordType":"Context","text":"a project with 3 files"},{"id":"e185dac5-a8a2-434f-a570-b61bf22161cd","location":{"line":11,"column":5},"keyword":"When ","keywordType":"Action","text":"I run \"devpod generate\""},{"id":"e13cbe3f-095e-422c-8b30-f60d5034830e","location":{"line":12,"column":5},"keyword":"Then ","keywordType":"Outcome","text":".devpod\/config.json stage should be \"starting\""},{"id":"5b7a9392-c250-4f6a-b4c2-2031bde378ec","location":{"line":13,"column":5},"keyword":"When ","keywordType":"Action","text":"I create 10 more code files"},{"id":"d4121b69-686d-46f0-886a-e9a5a237643a","location":{"line":14,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"I run \"devpod generate\""},{"id":"b44a2b49-54a9-4ab4-9d33-6e029ab3686e","location":{"line":15,"column":5},"keyword":"Then ","keywordType":"Outcome","text":".devpod\/config.json stage should be \"growing\""},{"id":"f149f6cf-42c6-41fa-8db2-7ae99c1e59a2","location":{"line":16,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"I should see \"📊 Auto-detected stage change: starting → growing\""}],"examples":[]}},{"scenario":{"id":"768c97e0-d14a-45b9-a11f-951cf34c94ac","tags":[],"location":{"line":18,"column":3},"keyword":"Scenario","name":"Recursive file counting","description":"","steps":[{"id":"7beb81f9-5377-413d-a870-8ab6d908b89c","location":{"line":19,"column":5},"keyword":"Given ","keywordType":"Context","text":"a project with nested structure:","dataTable":{"location":{"line":20,"column":7},"rows":[{"id":"ffb651be-f1d1-47c4-9934-c642bd81018b","location":{"line":20,"column":7},"cells":[{"location":{"line":20,"column":9},"value":"src\/components\/Button.tsx"}]},{"id":"cadfd08d-cd19-4f92-81a1-3078eb60754b","location":{"line":21,"column":7},"cells":[{"location":{"line":21,"column":9},"value":"src\/hooks\/useAuth.ts"}]},{"id":"69da9b98-ffd4-4a2d-8592-b67761c7815c","location":{"line":22,"column":7},"cells":[{"location":{"line":22,"column":9},"value":"lib\/utils\/format.js"}]},{"id":"498a2ad2-0ce8-480a-b4f0-3b7a09259b89","location":{"line":23,"column":7},"cells":[{"location":{"line":23,"column":9},"value":"api\/routes\/users.js"}]}]}},{"id":"ae4f841c-66b5-4d82-834e-11b6adf60bab","location":{"line":24,"column":5},"keyword":"When ","keywordType":"Action","text":"I run \"devpod generate\""},{"id":"c41f6beb-37f2-4a2a-8134-98b0c8edfe35","location":{"line":25,"column":5},"keyword":"Then ","keywordType":"Outcome","text":".devpod\/config.json stage should be \"growing\""},{"id":"04a5c223-4619-44cb-9934-0b9ec6861a79","location":{"line":26,"column":5},"keyword":"When ","keywordType":"Action","text":"I create files in subdirectories:","dataTable":{"location":{"line":27,"column":7},"rows":[{"id":"194b8d59-1b6b-4d40-a2cb-af1ae3ad5625","location":{"line":27,"column":7},"cells":[{"location":{"line":27,"column":9},"value":"src\/components\/Form.tsx"}]},{"id":"7c5f1698-caef-4ae7-aeca-079d003bba9f","location":{"line":28,"column":7},"cells":[{"location":{"line":28,"column":9},"value":"src\/components\/Modal.tsx"}]},{"id":"5b7b9460-27ad-40d3-a03e-3b5a539299d0","location":{"line":29,"column":7},"cells":[{"location":{"line":29,"column":9},"value":"src\/pages\/Home.tsx"}]},{"id":"11d82c85-1ab7-4901-aaef-da630b59e70a","location":{"line":30,"column":7},"cells":[{"location":{"line":30,"column":9},"value":"src\/pages\/About.tsx"}]}]}},{"id":"04750930-2715-4ab9-ae44-fad591f49206","location":{"line":31,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"I run \"devpod generate\""},{"id":"ad3fc07b-a6ef-4406-83b5-a01de88e1461","location":{"line":32,"column":5},"keyword":"Then ","keywordType":"Outcome","text":".devpod\/config.json stage should be \"growing\""}],"examples":[]}},{"scenario":{"id":"fd54ec8d-eeca-43dc-b1da-325224920e5e","tags":[],"location":{"line":34,"column":3},"keyword":"Scenario","name":"Manual stage override is respected","description":"","steps":[{"id":"d5ff59b1-c2ac-4615-9a2f-596dd2b19192","location":{"line":35,"column":5},"keyword":"Given ","keywordType":"Context","text":"a project with 3 files"},{"id":"5847d70e-f376-4f7f-8846-1706199fec8a","location":{"line":36,"column":5},"keyword":"When ","keywordType":"Action","text":"I run \"devpod stage mature\""},{"id":"288ce395-f325-4dab-ae9e-27b47803125e","location":{"line":37,"column":5},"keyword":"Then ","keywordType":"Outcome","text":".devpod\/config.json stage should be \"mature\""},{"id":"5c532c58-f292-4dd7-91a7-85fdf8b22ca9","location":{"line":38,"column":5},"keyword":"When ","keywordType":"Action","text":"I run \"devpod generate\""},{"id":"b592e8a4-cbee-4f9c-b89c-bde7bd3dc42d","location":{"line":39,"column":5},"keyword":"Then ","keywordType":"Outcome","text":".devpod\/config.json stage should be \"mature\""},{"id":"111df6f8-79ea-4f43-bf8a-3eb112215759","location":{"line":40,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"I should not see \"📊 Auto-detected stage change\""}],"examples":[]}},{"scenario":{"id":"301eddc4-d5dc-4826-a01d-0ce8d153313e","tags":[],"location":{"line":42,"column":3},"keyword":"Scenario","name":"Auto stage command","description":"","steps":[{"id":"a8c27587-a627-4f29-a23d-609a4e19fa15","location":{"line":43,"column":5},"keyword":"Given ","keywordType":"Context","text":"a project with 15 files"},{"id":"3aeabea2-1cae-49ae-9129-fb197978b8b5","location":{"line":44,"column":5},"keyword":"When ","keywordType":"Action","text":"I run \"devpod stage auto\""},{"id":"bb5f86bb-9e83-44b0-b42e-af1f0008b11d","location":{"line":45,"column":5},"keyword":"Then ","keywordType":"Outcome","text":".devpod\/config.json stage should be \"growing\""},{"id":"9a30c0ec-eebb-4878-930f-f3d86155720c","location":{"line":46,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"I should see \"✅ Stage auto-detected as growing\""}],"examples":[]}},{"scenario":{"id":"022ee993-5a38-4bda-87c9-b0568306688b","tags":[],"location":{"line":48,"column":3},"keyword":"Scenario","name":"Ignored directories don't count","description":"","steps":[{"id":"19369363-8374-4c9d-8813-fbb9d592c35a","location":{"line":49,"column":5},"keyword":"Given ","keywordType":"Context","text":"a project with files in ignored directories:","dataTable":{"location":{"line":50,"column":7},"rows":[{"id":"4754eca9-2b29-4b8b-a2d3-b6ed7d3d7564","location":{"line":50,"column":7},"cells":[{"location":{"line":50,"column":9},"value":"node_modules\/package\/index.js"}]},{"id":"693af8bb-6e49-49d5-8c14-f75e71b94b59","location":{"line":51,"column":7},"cells":[{"location":{"line":51,"column":9},"value":".git\/hooks\/pre-commit"}]},{"id":"83b398e6-952f-46f3-842a-b4b4fb251786","location":{"line":52,"column":7},"cells":[{"location":{"line":52,"column":9},"value":"dist\/bundle.js"}]},{"id":"9e10dff0-0799-4e5c-90e7-007e817dd655","location":{"line":53,"column":7},"cells":[{"location":{"line":53,"column":9},"value":"build\/output.js"}]},{"id":"71400811-b341-4d77-9967-db268f930e5d","location":{"line":54,"column":7},"cells":[{"location":{"line":54,"column":9},"value":"coverage\/report.js"}]}]}},{"id":"912e603d-0b9b-4674-a3d9-bf1e56774c9f","location":{"line":55,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"a project with 2 actual code files"},{"id":"7d6d0dda-036e-40f1-a200-49ac1d006b0f","location":{"line":56,"column":5},"keyword":"When ","keywordType":"Action","text":"I run \"devpod generate\""},{"id":"cf9485d2-82d9-4662-84be-724b311ddc5c","location":{"line":57,"column":5},"keyword":"Then ","keywordType":"Outcome","text":".devpod\/config.json stage should be \"starting\""}],"examples":[]}},{"scenario":{"id":"41043f2f-83f7-443d-832a-9dd6392c1a87","tags":[],"location":{"line":59,"column":3},"keyword":"Scenario","name":"Stage thresholds work correctly","description":"","steps":[{"id":"fed5d9d0-f1b4-4b08-9573-32547aa0375f","location":{"line":60,"column":5},"keyword":"Given ","keywordType":"Context","text":"a new project directory"},{"id":"9e550eb7-dd88-40f1-baa2-8b13104dce81","location":{"line":61,"column":5},"keyword":"When ","keywordType":"Action","text":"I run \"devpod init\""},{"id":"828a5198-fbed-4de3-b808-8116173ceb97","location":{"line":62,"column":5},"keyword":"Then ","keywordType":"Outcome","text":".devpod\/config.json stage should be \"starting\""},{"id":"e86966f1-f01c-455c-a16b-9f163045cfc1","location":{"line":63,"column":5},"keyword":"When ","keywordType":"Action","text":"I create 2 code files"},{"id":"450df653-8290-4d4a-9d55-3b5c15494da0","location":{"line":64,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"I run \"devpod generate\""},{"id":"688350bc-18dc-4d11-a96f-a14bc18d7274","location":{"line":65,"column":5},"keyword":"Then ","keywordType":"Outcome","text":".devpod\/config.json stage should be \"growing\""},{"id":"c14a8b3b-3897-448b-a813-e4257f4f2373","location":{"line":66,"column":5},"keyword":"When ","keywordType":"Action","text":"I create 18 more code files"},{"id":"89e7f71f-40b8-4c64-a7d8-df0456483d68","location":{"line":67,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"I run \"devpod generate\""},{"id":"1af16bc2-ba5c-4997-8c40-0887e936bff6","location":{"line":68,"column":5},"keyword":"Then ","keywordType":"Outcome","text":".devpod\/config.json stage should be \"mature\""},{"id":"80029cf7-b89b-4189-b9fc-c207448bd8a8","location":{"line":69,"column":5},"keyword":"When ","keywordType":"Action","text":"I create 75 more code files"},{"id":"c3c7757d-a26a-44a5-b6fc-a421ace7fba1","location":{"line":70,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"I run \"devpod generate\""},{"id":"f042863d-7e8e-4fce-80eb-fa4a40d4f8ba","location":{"line":71,"column":5},"keyword":"Then ","keywordType":"Outcome","text":".devpod\/config.json stage should be \"production\""}],"examples":[]}},{"scenario":{"id":"b5ac729a-1b9c-42cb-b262-2ecfef51d797","tags":[],"location":{"line":73,"column":3},"keyword":"Scenario","name":"Multiple language files are counted","description":"","steps":[{"id":"0884b587-8bd4-4304-b81e-b599e8e77225","location":{"line":74,"column":5},"keyword":"Given ","keywordType":"Context","text":"a project with mixed language files:","dataTable":{"location":{"line":75,"column":7},"rows":[{"id":"ad946f69-1555-41b9-bab8-6a288e6aa8af","location":{"line":75,"column":7},"cells":[{"location":{"line":75,"column":9},"value":"main.js"}]},{"id":"4cfe8300-4d7e-420d-bc1d-413492959a0f","location":{"line":76,"column":7},"cells":[{"location":{"line":76,"column":9},"value":"server.py"}]},{"id":"291b9a3a-8721-4968-8e0e-41d7cb5be606","location":{"line":77,"column":7},"cells":[{"location":{"line":77,"column":9},"value":"utils.go"}]},{"id":"8bf6f8e7-3f97-454c-ba9e-6921ccd2c68c","location":{"line":78,"column":7},"cells":[{"location":{"line":78,"column":9},"value":"Calculator.java"}]},{"id":"f38997a5-0e65-46c9-b9da-d0f9ab3802c6","location":{"line":79,"column":7},"cells":[{"location":{"line":79,"column":9},"value":"helper.rb"}]},{"id":"094c29ab-9d0c-4642-8d65-379c8520a88d","location":{"line":80,"column":7},"cells":[{"location":{"line":80,"column":9},"value":"app.swift"}]},{"id":"50b3f7af-7832-4c01-badc-84ca5e816b3a","location":{"line":81,"column":7},"cells":[{"location":{"line":81,"column":9},"value":"main.rs"}]}]}},{"id":"248a32d5-5a55-47d3-afa2-18cd2fac8796","location":{"line":82,"column":5},"keyword":"When ","keywordType":"Action","text":"I run \"devpod generate\""},{"id":"8664a824-6232-4a41-8e59-0895d948d398","location":{"line":83,"column":5},"keyword":"Then ","keywordType":"Outcome","text":".devpod\/config.json stage should be \"growing\""}],"examples":[]}},{"scenario":{"id":"000eb490-d892-4767-b538-bf23daf330ff","tags":[],"location":{"line":85,"column":3},"keyword":"Scenario","name":"Stage affects standards shown","description":"","steps":[{"id":"779a5268-67fa-4815-b7d6-4fa26d841398","location":{"line":86,"column":5},"keyword":"Given ","keywordType":"Context","text":"a project with 2 files"},{"id":"6a9432ef-dc30-44e9-a65d-066697855186","location":{"line":87,"column":5},"keyword":"When ","keywordType":"Action","text":"I run \"devpod generate\""},{"id":"92a3c07a-cc19-4460-9e0c-f8635fb65d85","location":{"line":88,"column":5},"keyword":"Then ","keywordType":"Outcome","text":".devpod\/config.json stage should be \"starting\""},{"id":"47d5d5cd-38bb-4917-8fe1-5c0c19ed1c27","location":{"line":89,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"CLAUDE.md should contain standards for stages [\"empty\", \"starting\"]"},{"id":"c3e35498-b05c-4c2f-89f7-f7bb686e957c","location":{"line":90,"column":5},"keyword":"When ","keywordType":"Action","text":"I create 25 more code files"},{"id":"deaa3416-4d28-4e60-a15d-69860dffa971","location":{"line":91,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"I run \"devpod generate\""},{"id":"c859ca26-5e30-482f-ae7d-287be227da1c","location":{"line":92,"column":5},"keyword":"Then ","keywordType":"Outcome","text":".devpod\/config.json stage should be \"mature\""},{"id":"3bbaab7f-71f5-4da5-bf08-549300f0777f","location":{"line":93,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"CLAUDE.md should contain standards for stages [\"empty\", \"starting\", \"growing\", \"mature\"]"}],"examples":[]}}]},"comments":[],"uri":".gherkin\/features\/07-auto-stage-detection.feature"}},{"pickle":{"id":"9681be1c-4018-496c-8798-a8e197ac50e7","uri":".gherkin\/features\/07-auto-stage-detection.feature","astNodeIds":["cd47c99f-8df2-4cb1-89b4-65bf3129ba3c"],"tags":[],"name":"Stage auto-detects on every generate","language":"en","steps":[{"id":"589ecf0d-42ae-4378-84ab-acd02ea2d836","text":"DevPod is initialized","type":"Context","astNodeIds":["6198464d-bf63-4523-b7c9-58d13eaf72c0"]},{"id":"ed859759-d15d-4639-a484-142f5c141003","text":"a project with 3 files","type":"Context","astNodeIds":["1df9a2bf-352f-4ca4-9327-26c2c8dd72b4"]},{"id":"e24caa34-5779-47ab-9412-624722d50105","text":"I run \"devpod generate\"","type":"Action","astNodeIds":["e185dac5-a8a2-434f-a570-b61bf22161cd"]},{"id":"f0fe552b-b9b1-4e6e-91f3-ef3e24b92836","text":".devpod\/config.json stage should be \"starting\"","type":"Outcome","astNodeIds":["e13cbe3f-095e-422c-8b30-f60d5034830e"]},{"id":"4aa212c4-f4b9-4e47-8797-9ce72a61dbb2","text":"I create 10 more code files","type":"Action","astNodeIds":["5b7a9392-c250-4f6a-b4c2-2031bde378ec"]},{"id":"649af61b-795d-44fc-8542-9e527a27f1a6","text":"I run \"devpod generate\"","type":"Action","astNodeIds":["d4121b69-686d-46f0-886a-e9a5a237643a"]},{"id":"0eb7e5d4-f72b-411f-b5e6-360b0c266421","text":".devpod\/config.json stage should be \"growing\"","type":"Outcome","astNodeIds":["b44a2b49-54a9-4ab4-9d33-6e029ab3686e"]},{"id":"b25b8671-0e4d-4fd1-bff3-f014a4138eb3","text":"I should see \"📊 Auto-detected stage change: starting → growing\"","type":"Outcome","astNodeIds":["f149f6cf-42c6-41fa-8db2-7ae99c1e59a2"]}]}},{"pickle":{"id":"67f8a42a-014f-4fa8-8c03-b8e12ef28c83","uri":".gherkin\/features\/07-auto-stage-detection.feature","astNodeIds":["768c97e0-d14a-45b9-a11f-951cf34c94ac"],"tags":[],"name":"Recursive file counting","language":"en","steps":[{"id":"cdfa67bd-25b5-43f3-88ae-df0dc6fac0fb","text":"DevPod is initialized","type":"Context","astNodeIds":["6198464d-bf63-4523-b7c9-58d13eaf72c0"]},{"id":"d63c5447-85dc-4a0f-9cf0-06f1353b09e3","text":"a project with nested structure:","type":"Context","argument":{"dataTable":{"rows":[{"cells":[{"value":"src\/components\/Button.tsx"}]},{"cells":[{"value":"src\/hooks\/useAuth.ts"}]},{"cells":[{"value":"lib\/utils\/format.js"}]},{"cells":[{"value":"api\/routes\/users.js"}]}]}},"astNodeIds":["7beb81f9-5377-413d-a870-8ab6d908b89c"]},{"id":"e519e183-88df-4b3d-8005-a1cfae71b3fa","text":"I run \"devpod generate\"","type":"Action","astNodeIds":["ae4f841c-66b5-4d82-834e-11b6adf60bab"]},{"id":"c675c802-12fd-46f3-946e-99e818187e1b","text":".devpod\/config.json stage should be \"growing\"","type":"Outcome","astNodeIds":["c41f6beb-37f2-4a2a-8134-98b0c8edfe35"]},{"id":"fcf01da2-4279-4981-98e6-dbd07b2c4af2","text":"I create files in subdirectories:","type":"Action","argument":{"dataTable":{"rows":[{"cells":[{"value":"src\/components\/Form.tsx"}]},{"cells":[{"value":"src\/components\/Modal.tsx"}]},{"cells":[{"value":"src\/pages\/Home.tsx"}]},{"cells":[{"value":"src\/pages\/About.tsx"}]}]}},"astNodeIds":["04a5c223-4619-44cb-9934-0b9ec6861a79"]},{"id":"495dda46-a574-45d8-a721-55d094da8fc1","text":"I run \"devpod generate\"","type":"Action","astNodeIds":["04750930-2715-4ab9-ae44-fad591f49206"]},{"id":"b6963104-6d59-4157-9893-24f49671ad57","text":".devpod\/config.json stage should be \"growing\"","type":"Outcome","astNodeIds":["ad3fc07b-a6ef-4406-83b5-a01de88e1461"]}]}},{"pickle":{"id":"28482d7d-3d31-495c-a700-19a01b988a6d","uri":".gherkin\/features\/07-auto-stage-detection.feature","astNodeIds":["fd54ec8d-eeca-43dc-b1da-325224920e5e"],"tags":[],"name":"Manual stage override is respected","language":"en","steps":[{"id":"fe693c86-7e36-4d82-bab2-d4bac6535eba","text":"DevPod is initialized","type":"Context","astNodeIds":["6198464d-bf63-4523-b7c9-58d13eaf72c0"]},{"id":"12ec45e5-2c94-4662-8f74-c1a66c6eb6f0","text":"a project with 3 files","type":"Context","astNodeIds":["d5ff59b1-c2ac-4615-9a2f-596dd2b19192"]},{"id":"89332b20-91ce-4a43-b4f3-12abfeee990f","text":"I run \"devpod stage mature\"","type":"Action","astNodeIds":["5847d70e-f376-4f7f-8846-1706199fec8a"]},{"id":"0118dcc8-6845-4fdd-aad0-8317f5fab775","text":".devpod\/config.json stage should be \"mature\"","type":"Outcome","astNodeIds":["288ce395-f325-4dab-ae9e-27b47803125e"]},{"id":"ed7b5fd8-f02f-4ab3-a2d9-e2d99563ff49","text":"I run \"devpod generate\"","type":"Action","astNodeIds":["5c532c58-f292-4dd7-91a7-85fdf8b22ca9"]},{"id":"eabe0596-9621-44a8-8159-fbae2025090b","text":".devpod\/config.json stage should be \"mature\"","type":"Outcome","astNodeIds":["b592e8a4-cbee-4f9c-b89c-bde7bd3dc42d"]},{"id":"9c70d356-8b80-415c-8a84-c015993970df","text":"I should not see \"📊 Auto-detected stage change\"","type":"Outcome","astNodeIds":["111df6f8-79ea-4f43-bf8a-3eb112215759"]}]}},{"pickle":{"id":"2beddf93-281f-4920-ac90-a873297df2ca","uri":".gherkin\/features\/07-auto-stage-detection.feature","astNodeIds":["301eddc4-d5dc-4826-a01d-0ce8d153313e"],"tags":[],"name":"Auto stage command","language":"en","steps":[{"id":"33f86ea5-239e-4178-ab30-76c042a3815b","text":"DevPod is initialized","type":"Context","astNodeIds":["6198464d-bf63-4523-b7c9-58d13eaf72c0"]},{"id":"d0cf4366-cb4f-4486-8b6e-e38d2b8fee86","text":"a project with 15 files","type":"Context","astNodeIds":["a8c27587-a627-4f29-a23d-609a4e19fa15"]},{"id":"330896d2-1a09-4c00-9356-bec1a8f3cd26","text":"I run \"devpod stage auto\"","type":"Action","astNodeIds":["3aeabea2-1cae-49ae-9129-fb197978b8b5"]},{"id":"42085e68-1707-4498-9901-f0532ffa4e9a","text":".devpod\/config.json stage should be \"growing\"","type":"Outcome","astNodeIds":["bb5f86bb-9e83-44b0-b42e-af1f0008b11d"]},{"id":"3a870e6d-bf24-48af-b5f9-8135869b54e6","text":"I should see \"✅ Stage auto-detected as growing\"","type":"Outcome","astNodeIds":["9a30c0ec-eebb-4878-930f-f3d86155720c"]}]}},{"pickle":{"id":"556f0a0e-8baf-4338-88e1-eb2e2ce9624e","uri":".gherkin\/features\/07-auto-stage-detection.feature","astNodeIds":["022ee993-5a38-4bda-87c9-b0568306688b"],"tags":[],"name":"Ignored directories don't count","language":"en","steps":[{"id":"95814f30-34cc-40e0-9958-b17f4023ffe9","text":"DevPod is initialized","type":"Context","astNodeIds":["6198464d-bf63-4523-b7c9-58d13eaf72c0"]},{"id":"3f1a34db-f498-40ea-b631-fd348a021e7a","text":"a project with files in ignored directories:","type":"Context","argument":{"dataTable":{"rows":[{"cells":[{"value":"node_modules\/package\/index.js"}]},{"cells":[{"value":".git\/hooks\/pre-commit"}]},{"cells":[{"value":"dist\/bundle.js"}]},{"cells":[{"value":"build\/output.js"}]},{"cells":[{"value":"coverage\/report.js"}]}]}},"astNodeIds":["19369363-8374-4c9d-8813-fbb9d592c35a"]},{"id":"cbe33898-19d7-49be-b505-42d5809f4dae","text":"a project with 2 actual code files","type":"Context","astNodeIds":["912e603d-0b9b-4674-a3d9-bf1e56774c9f"]},{"id":"acfbb539-fd40-4bb1-acd4-cde51ec7affd","text":"I run \"devpod generate\"","type":"Action","astNodeIds":["7d6d0dda-036e-40f1-a200-49ac1d006b0f"]},{"id":"0a298aac-7438-4616-a3af-d2864b9c268c","text":".devpod\/config.json stage should be \"starting\"","type":"Outcome","astNodeIds":["cf9485d2-82d9-4662-84be-724b311ddc5c"]}]}},{"pickle":{"id":"f356b4ec-496b-4e4c-a01b-0e94bdaf43f7","uri":".gherkin\/features\/07-auto-stage-detection.feature","astNodeIds":["41043f2f-83f7-443d-832a-9dd6392c1a87"],"tags":[],"name":"Stage thresholds work correctly","language":"en","steps":[{"id":"dadf1bc4-8275-49c4-b3db-996edc646e05","text":"DevPod is initialized","type":"Context","astNodeIds":["6198464d-bf63-4523-b7c9-58d13eaf72c0"]},{"id":"aeaa538b-9ff0-43cd-a379-dd905a092ac3","text":"a new project directory","type":"Context","astNodeIds":["fed5d9d0-f1b4-4b08-9573-32547aa0375f"]},{"id":"958732df-5109-487f-a577-f6cd920fb6fb","text":"I run \"devpod init\"","type":"Action","astNodeIds":["9e550eb7-dd88-40f1-baa2-8b13104dce81"]},{"id":"fcdcd986-068b-45d9-8af4-59905f4bd713","text":".devpod\/config.json stage should be \"starting\"","type":"Outcome","astNodeIds":["828a5198-fbed-4de3-b808-8116173ceb97"]},{"id":"c2a00ba9-37d8-4810-b80e-4f2f7acfc5f4","text":"I create 2 code files","type":"Action","astNodeIds":["e86966f1-f01c-455c-a16b-9f163045cfc1"]},{"id":"402c5aab-06f1-4723-a313-4557e09f4240","text":"I run \"devpod generate\"","type":"Action","astNodeIds":["450df653-8290-4d4a-9d55-3b5c15494da0"]},{"id":"dd1110a6-4368-40de-9c5e-33487502b561","text":".devpod\/config.json stage should be \"growing\"","type":"Outcome","astNodeIds":["688350bc-18dc-4d11-a96f-a14bc18d7274"]},{"id":"ae9ed550-a18b-4266-a3e8-2ea15425e48c","text":"I create 18 more code files","type":"Action","astNodeIds":["c14a8b3b-3897-448b-a813-e4257f4f2373"]},{"id":"c162cdee-da7b-443a-b9e1-95963a02d5ad","text":"I run \"devpod generate\"","type":"Action","astNodeIds":["89e7f71f-40b8-4c64-a7d8-df0456483d68"]},{"id":"376c3696-0c11-4b21-b55d-63a3cb8594c2","text":".devpod\/config.json stage should be \"mature\"","type":"Outcome","astNodeIds":["1af16bc2-ba5c-4997-8c40-0887e936bff6"]},{"id":"d220b8d3-b935-43b6-943c-613046bdce7e","text":"I create 75 more code files","type":"Action","astNodeIds":["80029cf7-b89b-4189-b9fc-c207448bd8a8"]},{"id":"825eaa73-3d1e-4e1d-8985-e5717ca3956e","text":"I run \"devpod generate\"","type":"Action","astNodeIds":["c3c7757d-a26a-44a5-b6fc-a421ace7fba1"]},{"id":"86aab806-885b-4bf2-8ce4-1e8a9880bc8c","text":".devpod\/config.json stage should be \"production\"","type":"Outcome","astNodeIds":["f042863d-7e8e-4fce-80eb-fa4a40d4f8ba"]}]}},{"pickle":{"id":"57eb411e-96c5-4ecb-b752-9285c26d84a4","uri":".gherkin\/features\/07-auto-stage-detection.feature","astNodeIds":["b5ac729a-1b9c-42cb-b262-2ecfef51d797"],"tags":[],"name":"Multiple language files are counted","language":"en","steps":[{"id":"7538c69a-2c5e-44a2-9e41-255718af2a5a","text":"DevPod is initialized","type":"Context","astNodeIds":["6198464d-bf63-4523-b7c9-58d13eaf72c0"]},{"id":"02181a5c-cd06-4119-b938-e05a9e4ccdde","text":"a project with mixed language files:","type":"Context","argument":{"dataTable":{"rows":[{"cells":[{"value":"main.js"}]},{"cells":[{"value":"server.py"}]},{"cells":[{"value":"utils.go"}]},{"cells":[{"value":"Calculator.java"}]},{"cells":[{"value":"helper.rb"}]},{"cells":[{"value":"app.swift"}]},{"cells":[{"value":"main.rs"}]}]}},"astNodeIds":["0884b587-8bd4-4304-b81e-b599e8e77225"]},{"id":"8cf54fc3-466c-49e0-8a68-03cd69286f6b","text":"I run \"devpod generate\"","type":"Action","astNodeIds":["248a32d5-5a55-47d3-afa2-18cd2fac8796"]},{"id":"bf556ed8-e75a-410a-b29a-e93f4a029915","text":".devpod\/config.json stage should be \"growing\"","type":"Outcome","astNodeIds":["8664a824-6232-4a41-8e59-0895d948d398"]}]}},{"pickle":{"id":"8f32aa5c-b4c3-4998-b660-9535fe49f9ee","uri":".gherkin\/features\/07-auto-stage-detection.feature","astNodeIds":["000eb490-d892-4767-b538-bf23daf330ff"],"tags":[],"name":"Stage affects standards shown","language":"en","steps":[{"id":"3cce3c96-f154-472c-bd42-5ba559ade024","text":"DevPod is initialized","type":"Context","astNodeIds":["6198464d-bf63-4523-b7c9-58d13eaf72c0"]},{"id":"cfb5b5b4-2b62-485b-8902-2091658b5b56","text":"a project with 2 files","type":"Context","astNodeIds":["779a5268-67fa-4815-b7d6-4fa26d841398"]},{"id":"d139e6e0-57f5-41b0-9ae9-2efbf08dccc3","text":"I run \"devpod generate\"","type":"Action","astNodeIds":["6a9432ef-dc30-44e9-a65d-066697855186"]},{"id":"57818ba3-21cf-4ae8-9d80-1f4c4beb2f2a","text":".devpod\/config.json stage should be \"starting\"","type":"Outcome","astNodeIds":["92a3c07a-cc19-4460-9e0c-f8635fb65d85"]},{"id":"8136f5e5-c64e-461f-a1d3-8af41bcc35cd","text":"CLAUDE.md should contain standards for stages [\"empty\", \"starting\"]","type":"Outcome","astNodeIds":["47d5d5cd-38bb-4917-8fe1-5c0c19ed1c27"]},{"id":"54071407-025d-4d5c-850d-5b8f173f92f0","text":"I create 25 more code files","type":"Action","astNodeIds":["c3e35498-b05c-4c2f-89f7-f7bb686e957c"]},{"id":"9efe6aa5-200e-4229-b91a-cdc97e9c9f62","text":"I run \"devpod generate\"","type":"Action","astNodeIds":["deaa3416-4d28-4e60-a15d-69860dffa971"]},{"id":"f7ae4090-761a-44d6-b3e0-33057783e6e9","text":".devpod\/config.json stage should be \"mature\"","type":"Outcome","astNodeIds":["c859ca26-5e30-482f-ae7d-287be227da1c"]},{"id":"b914aff1-1bdf-4dd6-b5be-2bdb3eb5463c","text":"CLAUDE.md should contain standards for stages [\"empty\", \"starting\", \"growing\", \"mature\"]","type":"Outcome","astNodeIds":["3bbaab7f-71f5-4da5-bf08-549300f0777f"]}]}},{"source":{"data":"Feature: Communication Style in CLAUDE.md\n As a developer using DevPod\n I want my preferred communication style always included in CLAUDE.md\n So that Claude consistently interacts with me in my preferred manner\n\n Scenario: Communication style is added to CLAUDE.md\n Given I have a DevPod project\n When I generate CLAUDE.md\n Then the file should include the communication style section at the bottom\n And the communication style should contain the directive text\n\n Scenario: Communication style persists across mode changes\n Given I have set speed mode\n When I switch to discovery mode\n Then the communication style section should still be present\n And it should remain at the bottom of the file\n\n Scenario: Communication style persists across stage changes\n Given I have a project at starting stage\n When I change to mature stage\n Then the communication style section should still be present\n And it should remain at the bottom of the file","uri":".gherkin\/features\/08-communication-style.feature","mediaType":"text\/x.cucumber.gherkin+plain"}},{"gherkinDocument":{"feature":{"tags":[],"location":{"line":1,"column":1},"language":"en","keyword":"Feature","name":"Communication Style in CLAUDE.md","description":" As a developer using DevPod\n I want my preferred communication style always included in CLAUDE.md\n So that Claude consistently interacts with me in my preferred manner","children":[{"scenario":{"id":"f1cdff8f-6083-467f-8845-54491e02ceca","tags":[],"location":{"line":6,"column":3},"keyword":"Scenario","name":"Communication style is added to CLAUDE.md","description":"","steps":[{"id":"1f1912e8-3fe8-47c9-b007-7d1197d00ee7","location":{"line":7,"column":5},"keyword":"Given ","keywordType":"Context","text":"I have a DevPod project"},{"id":"1be26302-f57a-49e2-8d4e-fa2e3e4fde79","location":{"line":8,"column":5},"keyword":"When ","keywordType":"Action","text":"I generate CLAUDE.md"},{"id":"fc093950-4616-498c-a4f0-54e6a6f0a35d","location":{"line":9,"column":5},"keyword":"Then ","keywordType":"Outcome","text":"the file should include the communication style section at the bottom"},{"id":"4377d6d1-da1f-4cec-adbb-920a390bc0d6","location":{"line":10,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"the communication style should contain the directive text"}],"examples":[]}},{"scenario":{"id":"52b8345d-bd29-4b73-80cd-af9173e55f7c","tags":[],"location":{"line":12,"column":3},"keyword":"Scenario","name":"Communication style persists across mode changes","description":"","steps":[{"id":"4dafcd05-ec17-44af-944b-58a14b88a5a2","location":{"line":13,"column":5},"keyword":"Given ","keywordType":"Context","text":"I have set speed mode"},{"id":"5150cca8-54d7-4fd7-8793-13587705318c","location":{"line":14,"column":5},"keyword":"When ","keywordType":"Action","text":"I switch to discovery mode"},{"id":"362cf366-2b6f-4f10-8672-1711e4b6592a","location":{"line":15,"column":5},"keyword":"Then ","keywordType":"Outcome","text":"the communication style section should still be present"},{"id":"4a335d2f-5f22-4dd4-8a55-fc429c826a78","location":{"line":16,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"it should remain at the bottom of the file"}],"examples":[]}},{"scenario":{"id":"7aa57ac8-5133-44a5-88c6-72d54d2f62f3","tags":[],"location":{"line":18,"column":3},"keyword":"Scenario","name":"Communication style persists across stage changes","description":"","steps":[{"id":"9464db0e-593b-49eb-aac8-7e801b5c7a38","location":{"line":19,"column":5},"keyword":"Given ","keywordType":"Context","text":"I have a project at starting stage"},{"id":"60a293df-8515-43b0-be7c-6cd23fff54ba","location":{"line":20,"column":5},"keyword":"When ","keywordType":"Action","text":"I change to mature stage"},{"id":"5885fb2c-71e9-4889-98dd-43b7a55d42b3","location":{"line":21,"column":5},"keyword":"Then ","keywordType":"Outcome","text":"the communication style section should still be present"},{"id":"a067ca42-dd2c-4a0f-8dd5-af0a6c733e75","location":{"line":22,"column":5},"keyword":"And ","keywordType":"Conjunction","text":"it should remain at the bottom of the file"}],"examples":[]}}]},"comments":[],"uri":".gherkin\/features\/08-communication-style.feature"}},{"pickle":{"id":"a18a8835-cdb4-48da-8412-eda14cd80be6","uri":".gherkin\/features\/08-communication-style.feature","astNodeIds":["f1cdff8f-6083-467f-8845-54491e02ceca"],"tags":[],"name":"Communication style is added to CLAUDE.md","language":"en","steps":[{"id":"00c952ac-3488-4b4b-871d-5774bf9d359e","text":"I have a DevPod project","type":"Context","astNodeIds":["1f1912e8-3fe8-47c9-b007-7d1197d00ee7"]},{"id":"133af214-0705-4492-9480-cc7d3dbbcf1a","text":"I generate CLAUDE.md","type":"Action","astNodeIds":["1be26302-f57a-49e2-8d4e-fa2e3e4fde79"]},{"id":"20c13907-ccbb-4e2c-8859-cb43d4c2d615","text":"the file should include the communication style section at the bottom","type":"Outcome","astNodeIds":["fc093950-4616-498c-a4f0-54e6a6f0a35d"]},{"id":"62a65f01-0859-4ce3-98fc-5ddeb6aa43d0","text":"the communication style should contain the directive text","type":"Outcome","astNodeIds":["4377d6d1-da1f-4cec-adbb-920a390bc0d6"]}]}},{"pickle":{"id":"d4ad56b1-5ce3-4d62-a0dd-2e1b30453c68","uri":".gherkin\/features\/08-communication-style.feature","astNodeIds":["52b8345d-bd29-4b73-80cd-af9173e55f7c"],"tags":[],"name":"Communication style persists across mode changes","language":"en","steps":[{"id":"8cd999d5-ff3f-46d0-9540-e7158b758c26","text":"I have set speed mode","type":"Context","astNodeIds":["4dafcd05-ec17-44af-944b-58a14b88a5a2"]},{"id":"0a4c397a-d4e8-4ef9-b11c-62000887ca7f","text":"I switch to discovery mode","type":"Action","astNodeIds":["5150cca8-54d7-4fd7-8793-13587705318c"]},{"id":"11a38d06-9db7-408c-b79f-4d05bda8a8c7","text":"the communication style section should still be present","type":"Outcome","astNodeIds":["362cf366-2b6f-4f10-8672-1711e4b6592a"]},{"id":"95a7ff26-e57b-4a0d-889c-e69c9481698f","text":"it should remain at the bottom of the file","type":"Outcome","astNodeIds":["4a335d2f-5f22-4dd4-8a55-fc429c826a78"]}]}},{"pickle":{"id":"2a0d8d08-9659-4d39-9dd7-754f408437c6","uri":".gherkin\/features\/08-communication-style.feature","astNodeIds":["7aa57ac8-5133-44a5-88c6-72d54d2f62f3"],"tags":[],"name":"Communication style persists across stage changes","language":"en","steps":[{"id":"c45cae91-3828-4421-b567-1d76657ba5e2","text":"I have a project at starting stage","type":"Context","astNodeIds":["9464db0e-593b-49eb-aac8-7e801b5c7a38"]},{"id":"cfb06cff-4ab6-4c30-ad5b-61800c5f8167","text":"I change to mature stage","type":"Action","astNodeIds":["60a293df-8515-43b0-be7c-6cd23fff54ba"]},{"id":"3acbd65a-fa1f-45ec-8366-619d3cad984c","text":"the communication style section should still be present","type":"Outcome","astNodeIds":["5885fb2c-71e9-4889-98dd-43b7a55d42b3"]},{"id":"637dd5d1-3719-47f4-9147-85d205c5644a","text":"it should remain at the bottom of the file","type":"Outcome","astNodeIds":["a067ca42-dd2c-4a0f-8dd5-af0a6c733e75"]}]}},{"stepDefinition":{"id":"01fa34cc-c91c-472c-bd89-501a4d28a4f1","pattern":{"source":"a new project directory","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":156}}}},{"stepDefinition":{"id":"6771af8f-ad37-4ad1-a884-611e2494be0a","pattern":{"source":"a project with {int} files","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":169}}}},{"stepDefinition":{"id":"a87bb126-e1cc-4956-9d1b-210015126f09","pattern":{"source":"DevPod is initialized","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":189}}}},{"stepDefinition":{"id":"faf46a38-648e-4850-b2a3-469b81c7d9ee","pattern":{"source":"DevPod is initialized in {word} mode","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":193}}}},{"stepDefinition":{"id":"2003dbaf-1bc4-4755-a4e0-367530ef37f9","pattern":{"source":"stage is {string}","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":198}}}},{"stepDefinition":{"id":"ee5a3eba-a7da-4036-a5d2-70dbeba70b54","pattern":{"source":"mode is {string}","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":202}}}},{"stepDefinition":{"id":"231caf0b-7bc9-46dd-b1aa-289fb8bf3393","pattern":{"source":"bundles are {string}","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":206}}}},{"stepDefinition":{"id":"54de4e69-46fa-40c0-a1c8-e93296921939","pattern":{"source":"comprehensive standards library contains {int}+ standards","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":215}}}},{"stepDefinition":{"id":"2b46911e-04b2-4d06-9680-d0a560557e14","pattern":{"source":"I run {string}","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":227}}}},{"stepDefinition":{"id":"c75a2971-fac1-4962-a522-97978f3b9cdb","pattern":{"source":"generating CLAUDE.md","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":231}}}},{"stepDefinition":{"id":"9420df5b-aaec-4a92-b5e7-67f0a8b0830c","pattern":{"source":"the following files should exist:","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":236}}}},{"stepDefinition":{"id":"29e5e190-6a6a-4247-b99c-0f964f3916c6","pattern":{"source":".devpod\\\/config.json should contain:","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":243}}}},{"stepDefinition":{"id":"469046d1-3ce7-4a69-8862-360049af7403","pattern":{"source":".devpod\\\/config.json {word} should be {string}","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":257}}}},{"stepDefinition":{"id":"00cb7a49-98ff-419b-9301-0145c599ea66","pattern":{"source":"CLAUDE.md should contain {string}","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":262}}}},{"stepDefinition":{"id":"9163e835-8cbd-43ab-b9cd-9a283067e7fc","pattern":{"source":"CLAUDE.md should not contain {string}","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":267}}}},{"stepDefinition":{"id":"929303f7-272b-4526-92f3-e24ca8f1fe0e","pattern":{"source":"CLAUDE.md should reflect the {word} stage","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":272}}}},{"stepDefinition":{"id":"ea750d74-7146-4c31-b23d-e0ae89874991","pattern":{"source":"CLAUDE.md should show only {word} and {word} priority standards","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":277}}}},{"stepDefinition":{"id":"fd2889f9-72fb-41b6-bf07-b507c68d2589","pattern":{"source":"CLAUDE.md should show all standards with exploration guidance","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":283}}}},{"stepDefinition":{"id":"170e85d4-71fa-4e11-80d3-c48cacf37d0f","pattern":{"source":"CLAUDE.md should show all standards with full documentation","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":288}}}},{"stepDefinition":{"id":"419671a3-0bdf-4004-8889-bd44a78c3f45","pattern":{"source":"CLAUDE.md should show emergency response guidance","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":293}}}},{"stepDefinition":{"id":"8c3ed2d9-9158-46a7-bbe3-2da4e5621343","pattern":{"source":"CLAUDE.md should show {string}","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":298}}}},{"stepDefinition":{"id":"e6ee5c5c-3644-4826-bb36-75618d533486","pattern":{"source":"CLAUDE.md should include {word}-related standards","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":303}}}},{"stepDefinition":{"id":"881a2248-4412-4b42-ab08-f705752fef5f","pattern":{"source":"CLAUDE.md should contain debugging guidance for current mode","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":309}}}},{"stepDefinition":{"id":"594b3c81-e85b-4ced-9d2f-a516e29eb835","pattern":{"source":"standards should be filtered by:","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":316}}}},{"stepDefinition":{"id":"e2da4f32-62d1-4846-90a2-575c8b95149e","pattern":{"source":"only critical and high priority standards should appear","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":326}}}},{"stepDefinition":{"id":"5d8f3f67-3150-43eb-8604-6b1a3e5bcd6d","pattern":{"source":"standards should be formatted as condensed rules","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":332}}}},{"stepDefinition":{"id":"39a9c86a-3dfc-4cfe-9d0c-7ffea2fa702e","pattern":{"source":"all priority levels should appear","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":338}}}},{"stepDefinition":{"id":"9354f6b3-67aa-4d2e-9699-4f07f8aa4558","pattern":{"source":"standards should include pros and cons","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":343}}}},{"stepDefinition":{"id":"0ffcba5c-f7a2-4c49-abfc-e9a112e358f2","pattern":{"source":"all standards should appear with full documentation","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":349}}}},{"stepDefinition":{"id":"98568dfe-1f15-46af-a46e-b64c095aa433","pattern":{"source":"security standards should be emphasized","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":354}}}},{"stepDefinition":{"id":"a277bb11-6070-43c7-9af6-f775ac8459f9","pattern":{"source":"bundles should be {string}","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":359}}}},{"stepDefinition":{"id":"64ea4a62-ccf0-41fd-82b9-f8d025a171d0","pattern":{"source":"the standards should still be filtered by stage and priority","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":365}}}},{"stepDefinition":{"id":"6cbe101a-0903-4bac-b4d9-08823b0ebea4","pattern":{"source":"CLAUDE.md should contain:","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":372}}}},{"stepDefinition":{"id":"bfa21269-bcc6-49a4-8fbb-f46cbc81d183","pattern":{"source":"CLAUDE.md should show fewer than {int} standards","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":381}}}},{"stepDefinition":{"id":"7816afe6-a82d-4765-9ccc-3bd47e2432aa","pattern":{"source":"all shown standards should be {word} or {word} priority","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":391}}}},{"stepDefinition":{"id":"79973a54-7325-486c-b728-c590fa0cef57","pattern":{"source":"standards should be from {word} bundle only","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":397}}}},{"stepDefinition":{"id":"160390a9-d6bd-482b-adb9-a82eb9906cd2","pattern":{"source":"standards appear as brief rules","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":402}}}},{"stepDefinition":{"id":"0a316b35-040b-4e75-b084-096c5ee9647f","pattern":{"source":"standards include trade-offs","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":408}}}},{"stepDefinition":{"id":"61ed98ba-00f2-4c32-a67a-9aea0d8257f3","pattern":{"source":"standards have full documentation","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":413}}}},{"stepDefinition":{"id":"f922ae3c-8338-469d-92e5-4ad7fe0cd79a","pattern":{"source":"standard {string} has {int} violations","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":419}}}},{"stepDefinition":{"id":"198bcc3f-46f5-4e5e-a999-0c525385a9ff","pattern":{"source":"a standard has {int} violations","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":426}}}},{"stepDefinition":{"id":"73d78f9a-0865-4e37-945b-a58afdc50a0b","pattern":{"source":"bundles are [{string}]","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":434}}}},{"stepDefinition":{"id":"00ee1aa2-68f8-4bba-8fc0-baf3d5fe3039","pattern":{"source":"bundles are [{string}, {string}]","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":442}}}},{"stepDefinition":{"id":"b4c964c5-c76c-40e9-bffa-1fb4d10068a2","pattern":{"source":"bundles should be [{string}, {string}]","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":450}}}},{"stepDefinition":{"id":"a8977b56-fc72-47fe-8cb7-437288d5b796","pattern":{"source":"stage is {string} - {int} standards available","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":456}}}},{"stepDefinition":{"id":"712f09a6-132f-4714-b7ef-63f392d445d3","pattern":{"source":"stage is {string} - {int} standards max","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":460}}}},{"stepDefinition":{"id":"1f7ecb46-bad7-4298-a2c4-01be185f0589","pattern":{"source":"mode is {string} - critical and high only","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":464}}}},{"stepDefinition":{"id":"52080caf-b094-41a1-b380-2e8cda81e552","pattern":{"source":"the same standards set","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":469}}}},{"stepDefinition":{"id":"d60659ed-6c59-4538-a7cf-8c45a71ad5ed","pattern":{"source":"in speed mode","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":473}}}},{"stepDefinition":{"id":"ebf4a3e1-66ca-4581-be37-7f78c10562fd","pattern":{"source":"in discovery mode","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":477}}}},{"stepDefinition":{"id":"490ba67d-6feb-46e7-874a-a60c199c4962","pattern":{"source":"in production mode","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":481}}}},{"stepDefinition":{"id":"d1d83554-6050-40bb-bdc1-f39f2623c465","pattern":{"source":"no violations exist","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":487}}}},{"stepDefinition":{"id":"5e623210-6de1-4f3f-bf0c-e7c090bcb354","pattern":{"source":"no violations have occurred","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":495}}}},{"stepDefinition":{"id":"a1345136-d779-4165-b66c-b8d61f36bfcb","pattern":{"source":"I record {int} violations for {string}","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":503}}}},{"stepDefinition":{"id":"cb6cfb24-2309-4059-8d29-268281883d8e","pattern":{"source":"standard {string} has priority {string}","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":509}}}},{"stepDefinition":{"id":"89c022d4-30e4-443f-8d5c-f7ad22baf8c9","pattern":{"source":"CLAUDE.md should contain only critical standards for active bundles","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":515}}}},{"stepDefinition":{"id":"e52a5fa7-a6d2-4365-9228-0c44fcbd28c8","pattern":{"source":"I record {int} more violation for {string}","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":522}}}},{"stepDefinition":{"id":"421896d8-4660-4c7f-a146-f7b5b804c986","pattern":{"source":"CLAUDE.md should contain critical standards for {string} bundle","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":528}}}},{"stepDefinition":{"id":"40b0bf95-66cc-43f2-9224-6785aad95c49","pattern":{"source":"CLAUDE.md should not contain non-critical standards","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":541}}}},{"stepDefinition":{"id":"21d0c8df-76e9-4454-9696-f6aef214255f","pattern":{"source":"CLAUDE.md should contain React critical standards","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":551}}}},{"stepDefinition":{"id":"5dae962f-adfb-4c1a-a309-b9505457caf0","pattern":{"source":"{string} has priority {string}","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":564}}}},{"stepDefinition":{"id":"e55b4768-27bb-4574-b1cd-d1d798217554","pattern":{"source":"package.json contains {string} dependency","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":569}}}},{"stepDefinition":{"id":"d2ca80c5-c3b3-429d-9886-ebda7edf1c64","pattern":{"source":"CLAUDE.md should contain standards for stages {string}","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":578}}}},{"stepDefinition":{"id":"95cb9df9-812e-4e1f-b3bf-88c09c42e16a","pattern":{"source":"CLAUDE.md should contain standards for stages [{string}, {string}, {string}]","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":591}}}},{"stepDefinition":{"id":"5929bbb0-7ea4-4a46-ae57-8952185a5734","pattern":{"source":"CLAUDE.md should not contain standards for stage {string}","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":604}}}},{"stepDefinition":{"id":"3a2b1054-cb01-4f48-a20f-33c0dcac24ec","pattern":{"source":"CLAUDE.md should not contain a WATCH section","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":617}}}},{"stepDefinition":{"id":"0fa63580-31ed-4928-a3dd-fb41d5aad960","pattern":{"source":"I create {int} more code files","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":623}}}},{"stepDefinition":{"id":"29d7ea8c-675e-4c3c-811f-13109f70cd77","pattern":{"source":"I create {int} code file(s)","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":631}}}},{"stepDefinition":{"id":"f0d511dd-ed1e-4e4f-9bea-f6cb90abcabb","pattern":{"source":"I should see {string}","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":639}}}},{"stepDefinition":{"id":"0195b027-dccd-4663-a589-f34eaa3abcea","pattern":{"source":"I should not see {string}","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":643}}}},{"stepDefinition":{"id":"66f72db3-8500-4959-97f4-6ccfe069f3a3","pattern":{"source":"a project with nested structure:","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":647}}}},{"stepDefinition":{"id":"be3c4594-db72-4648-bd2f-39f3b2dba1cd","pattern":{"source":"I create files in subdirectories:","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":671}}}},{"stepDefinition":{"id":"de12f5ed-110c-446b-87d6-e39a1b34e0d8","pattern":{"source":"a project with files in ignored directories:","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":695}}}},{"stepDefinition":{"id":"ffd82b4f-d8b0-497c-99e4-714ef835eb19","pattern":{"source":"a project with {int} actual code files","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":719}}}},{"stepDefinition":{"id":"538caa21-5413-4796-8ffd-cbcea2b22afe","pattern":{"source":"a project with mixed language files:","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":727}}}},{"stepDefinition":{"id":"b91a7964-2df9-4a54-bb7b-d2271ae7abc4","pattern":{"source":"CLAUDE.md should contain standards for stages {string}","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":737}}}},{"stepDefinition":{"id":"c8c91016-f23d-4555-bc7c-91dbe6d2fc4c","pattern":{"source":"I have a DevPod project","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":750}}}},{"stepDefinition":{"id":"8b257429-7859-4aeb-984c-7ffa0e22a94d","pattern":{"source":"I generate CLAUDE.md","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":754}}}},{"stepDefinition":{"id":"6956b5eb-37dd-4c52-92c4-c5682c542173","pattern":{"source":"the file should include the communication style section at the bottom","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":758}}}},{"stepDefinition":{"id":"699aee39-0566-4812-9c8c-0f7661c28e07","pattern":{"source":"the communication style should contain the directive text","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":766}}}},{"stepDefinition":{"id":"6076915f-c264-4da5-b108-124f4d75326d","pattern":{"source":"I have set speed mode","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":771}}}},{"stepDefinition":{"id":"1a05569f-b53a-49e9-8862-a543265f058c","pattern":{"source":"I switch to discovery mode","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":776}}}},{"stepDefinition":{"id":"081b03d2-145b-42c8-bcab-0d09f4e3c220","pattern":{"source":"the communication style section should still be present","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":780}}}},{"stepDefinition":{"id":"00bf7822-cf2d-41c0-a291-fcf6c19e3588","pattern":{"source":"it should remain at the bottom of the file","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":785}}}},{"stepDefinition":{"id":"96637a77-b634-4a63-bdbe-9c2b8579a882","pattern":{"source":"I have a project at starting stage","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":792}}}},{"stepDefinition":{"id":"64defe19-88dd-48e2-a030-b6cca4c478c7","pattern":{"source":"I change to mature stage","type":"CUCUMBER_EXPRESSION"},"sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":797}}}},{"hook":{"id":"a9861fe3-c4ef-419b-88fb-ea664bac4107","sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":48}}}},{"hook":{"id":"c1a86ff3-00f9-489f-999f-9b5a926fd273","sourceReference":{"uri":".gherkin\/step_definitions\/devpod_steps.js","location":{"line":68}}}},{"testRunStarted":{"timestamp":{"seconds":1757374011,"nanos":237000000}}},{"testCase":{"pickleId":"65f15876-94fe-4c7d-9506-e9427f2ba3c1","id":"d4b0782d-0dc4-48e7-ac84-2e049a7fbd4d","testSteps":[{"id":"636a9edb-db1b-4e8b-81b9-cc0adfa7cc89","hookId":"a9861fe3-c4ef-419b-88fb-ea664bac4107"},{"id":"388a95ec-86b0-4530-86b0-ed9639b92051","pickleStepId":"02df878b-ecbe-4e51-b642-299300f9b148","stepDefinitionIds":["01fa34cc-c91c-472c-bd89-501a4d28a4f1"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"aaffe01a-0a9b-45ae-a412-332d76f5b57c","pickleStepId":"006e7a93-6a22-48e9-9efc-efa3fb28c818","stepDefinitionIds":["2b46911e-04b2-4d06-9680-d0a560557e14"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":6,"value":"\"devpod init\"","children":[{"start":7,"value":"devpod init","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"f14acfbd-0e29-40f4-9604-b997c562b0d2","pickleStepId":"f75322d9-45d8-47bc-86a3-a67f35cba463","stepDefinitionIds":["9420df5b-aaec-4a92-b5e7-67f0a8b0830c"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"44e0c001-8e9c-4310-b566-c6d0c0961c4e","pickleStepId":"470302b7-b515-4b28-bdb9-b353c57646ee","stepDefinitionIds":["29e5e190-6a6a-4247-b99c-0f964f3916c6"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"678e9e17-d827-49e2-8c01-1065992faa50","pickleStepId":"9e4c0878-c011-4f52-aaa6-f8e50c30a941","stepDefinitionIds":["00cb7a49-98ff-419b-9301-0145c599ea66"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":25,"value":"\"<mode>discovery<\/mode>\"","children":[{"start":26,"value":"<mode>discovery<\/mode>","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"7feb9703-90fb-4f31-9a12-5f6becd9c58f","hookId":"c1a86ff3-00f9-489f-999f-9b5a926fd273"}]}},{"testCase":{"pickleId":"f2bbc42e-8140-4255-8e71-3fe7653cb5af","id":"f73f7442-d0af-479a-ac61-dc3461bc4fcd","testSteps":[{"id":"e5c2b109-8cb8-4b04-8e44-c45b279ed08a","hookId":"a9861fe3-c4ef-419b-88fb-ea664bac4107"},{"id":"ab7a5603-4782-4910-97af-bfdb8118ae66","pickleStepId":"4e049730-963b-4e45-befa-5aef2c7168e0","stepDefinitionIds":["6771af8f-ad37-4ad1-a884-611e2494be0a"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":15,"value":"24","children":[]},"parameterTypeName":"int"}]}]},{"id":"a4c93bbc-d10d-4a4b-8a3e-10b2b7a4e243","pickleStepId":"24905825-2367-4293-ae1a-0151e5c2c961","stepDefinitionIds":["2b46911e-04b2-4d06-9680-d0a560557e14"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":6,"value":"\"devpod init\"","children":[{"start":7,"value":"devpod init","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"7bf94107-9083-4129-853c-f29ca7b6ee73","pickleStepId":"fa71653e-c252-440c-b17b-0795e1d7f9f9","stepDefinitionIds":["29e5e190-6a6a-4247-b99c-0f964f3916c6"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"b82c91f0-c12a-4950-9484-8b7935a1d45b","pickleStepId":"eab0fb06-52f5-4cd1-ac8d-a6f3534d9db5","stepDefinitionIds":["929303f7-272b-4526-92f3-e24ca8f1fe0e"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":29,"value":"growing","children":[]},"parameterTypeName":"word"}]}]},{"id":"8c9aee5a-a857-4ff8-b2cd-89bdd9398e6e","hookId":"c1a86ff3-00f9-489f-999f-9b5a926fd273"}]}},{"testCase":{"pickleId":"b07cae4a-4baa-4c1d-9d6a-0eb53a0ab697","id":"73d5bf3b-e444-4392-8473-8e1cca93a105","testSteps":[{"id":"ca302578-6f1e-46d3-812a-86f643278478","hookId":"a9861fe3-c4ef-419b-88fb-ea664bac4107"},{"id":"df9d3f98-8921-4f04-b8c6-d3a6e4c0bf41","pickleStepId":"ce5109e9-33c0-4328-8cd9-ab60598f58e6","stepDefinitionIds":["a87bb126-e1cc-4956-9d1b-210015126f09"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"62c5b1ab-85b0-4a30-b3bb-f69c075a0c52","pickleStepId":"77352728-7567-45e6-846e-c3f0d28de970","stepDefinitionIds":["2b46911e-04b2-4d06-9680-d0a560557e14"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":6,"value":"\"devpod speed\"","children":[{"start":7,"value":"devpod speed","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"e34927d6-3d27-41f0-948a-db6c3e0ab630","pickleStepId":"f492d780-8708-43f1-beb5-979bcfb2c762","stepDefinitionIds":["469046d1-3ce7-4a69-8862-360049af7403"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":20,"value":"mode","children":[]},"parameterTypeName":"word"},{"group":{"start":35,"value":"\"speed\"","children":[{"start":36,"value":"speed","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"c92d3712-0feb-4ce0-84c7-413a5fc6eed3","pickleStepId":"bf69c907-f6c9-437f-8090-a061ac3d831b","stepDefinitionIds":["00cb7a49-98ff-419b-9301-0145c599ea66"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":25,"value":"\"<mode>speed<\/mode>\"","children":[{"start":26,"value":"<mode>speed<\/mode>","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"f972122c-9e5a-4eef-92b1-8c1dfb681dab","pickleStepId":"d293b07f-5f54-4f98-aaad-da9ab7af48e2","stepDefinitionIds":["00cb7a49-98ff-419b-9301-0145c599ea66"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":25,"value":"\"Ship working code quickly\"","children":[{"start":26,"value":"Ship working code quickly","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"53de1423-ed63-4ea9-be77-5cd74cf4fcff","hookId":"c1a86ff3-00f9-489f-999f-9b5a926fd273"}]}},{"testCase":{"pickleId":"4cd3b0da-1c52-40ce-8a04-3433fe5efd9d","id":"bb6fb04d-3515-42a9-81d0-5368085adbfd","testSteps":[{"id":"a064aeea-f22f-432c-afb4-6125c2f6f5c3","hookId":"a9861fe3-c4ef-419b-88fb-ea664bac4107"},{"id":"d19678a3-54d1-4f6b-a6eb-2f233ef08a51","pickleStepId":"9ea9eb41-c433-42a0-b7d3-e77dcdf6edf9","stepDefinitionIds":["faf46a38-648e-4850-b2a3-469b81c7d9ee"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":25,"value":"speed","children":[]},"parameterTypeName":"word"}]}]},{"id":"d97c7c54-10a7-4645-aecf-8e46ceb062e4","pickleStepId":"1befd115-2fce-4a00-af33-33fba27fccc4","stepDefinitionIds":["2b46911e-04b2-4d06-9680-d0a560557e14"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":6,"value":"\"devpod discovery\"","children":[{"start":7,"value":"devpod discovery","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"e7c2154d-81e5-4dc8-8dce-853bfbdaa463","pickleStepId":"c98ac9ae-f33d-47ef-b25b-bbb56f0683cb","stepDefinitionIds":["469046d1-3ce7-4a69-8862-360049af7403"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":20,"value":"mode","children":[]},"parameterTypeName":"word"},{"group":{"start":35,"value":"\"discovery\"","children":[{"start":36,"value":"discovery","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"a35fdc35-556b-4324-8d1d-e12e20bf835d","pickleStepId":"ad45590c-bec9-40e1-a075-990fd19278ae","stepDefinitionIds":["00cb7a49-98ff-419b-9301-0145c599ea66"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":25,"value":"\"<mode>discovery<\/mode>\"","children":[{"start":26,"value":"<mode>discovery<\/mode>","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"6c1844c7-9ac1-46fe-a27d-3282f8d5408d","pickleStepId":"c5d5074f-201c-421e-bf71-c658ee61945d","stepDefinitionIds":["00cb7a49-98ff-419b-9301-0145c599ea66"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":25,"value":"\"Explore multiple approaches to find the best solution\"","children":[{"start":26,"value":"Explore multiple approaches to find the best solution","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"449cd051-1fc1-4aa6-a8db-7372d22a3be1","hookId":"c1a86ff3-00f9-489f-999f-9b5a926fd273"}]}},{"testCase":{"pickleId":"409a3361-0883-4fa6-89aa-b7ad79ba086a","id":"2edea644-f91f-4c52-be38-e29b5e31858d","testSteps":[{"id":"f029218b-96ba-4270-8300-2f1b84133acb","hookId":"a9861fe3-c4ef-419b-88fb-ea664bac4107"},{"id":"49078b32-95e8-476b-877d-b37318b93b96","pickleStepId":"ac33e660-757c-42ae-b3d6-7244b8261b02","stepDefinitionIds":["a87bb126-e1cc-4956-9d1b-210015126f09"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"d6c7a397-9643-403d-b344-73bf877d9b28","pickleStepId":"aa38514e-4113-4548-9737-3a5328d243d1","stepDefinitionIds":["2b46911e-04b2-4d06-9680-d0a560557e14"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":6,"value":"\"devpod production\"","children":[{"start":7,"value":"devpod production","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"2858cc14-5462-4eba-a8ed-1028d78159e0","pickleStepId":"6868f921-6dc2-4af1-ac9b-7f5a4a559ea1","stepDefinitionIds":["469046d1-3ce7-4a69-8862-360049af7403"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":20,"value":"mode","children":[]},"parameterTypeName":"word"},{"group":{"start":35,"value":"\"production\"","children":[{"start":36,"value":"production","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"bb05d7a0-b359-42aa-a25b-f3a9455638e4","pickleStepId":"8fc7a480-517d-4115-b0fe-39ca881a54e8","stepDefinitionIds":["00cb7a49-98ff-419b-9301-0145c599ea66"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":25,"value":"\"<mode>production<\/mode>\"","children":[{"start":26,"value":"<mode>production<\/mode>","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"9f03c92d-9083-4aef-bfe6-062dc98da4da","pickleStepId":"f0dd218e-0be6-4cbe-9949-62761a72c203","stepDefinitionIds":["00cb7a49-98ff-419b-9301-0145c599ea66"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":25,"value":"\"Build robust, tested, production-ready systems\"","children":[{"start":26,"value":"Build robust, tested, production-ready systems","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"def0efcb-6360-40ca-8dfd-5eec62e5de2f","hookId":"c1a86ff3-00f9-489f-999f-9b5a926fd273"}]}},{"testCase":{"pickleId":"0bb40dfb-dcda-461c-8388-146d3b72bbc0","id":"9894bb56-e8eb-4106-857b-c5e11ddac814","testSteps":[{"id":"80cf47fc-3347-43d4-bb39-3509ba699d5c","hookId":"a9861fe3-c4ef-419b-88fb-ea664bac4107"},{"id":"7b588411-c87e-406d-b0b9-c9f45e10cf9e","pickleStepId":"22852ee6-cf76-43c1-98be-a457a7ac1b9f","stepDefinitionIds":["a87bb126-e1cc-4956-9d1b-210015126f09"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"5134d48a-d19d-4740-806b-f3bbc47318d2","pickleStepId":"5bf222ec-5af1-43ca-b05a-d72fed89d4ae","stepDefinitionIds":["2b46911e-04b2-4d06-9680-d0a560557e14"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":6,"value":"\"devpod recovery\"","children":[{"start":7,"value":"devpod recovery","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"6e49c32c-eb35-4c37-9d29-52adb1c483f6","pickleStepId":"5677f701-9f83-408c-85c9-5ef897ee4a5b","stepDefinitionIds":["469046d1-3ce7-4a69-8862-360049af7403"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":20,"value":"mode","children":[]},"parameterTypeName":"word"},{"group":{"start":35,"value":"\"recovery\"","children":[{"start":36,"value":"recovery","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"15a05a51-bae3-40e0-92e4-7762ac080f97","pickleStepId":"46930aa9-b03d-4e14-9875-065c9e1739a7","stepDefinitionIds":["00cb7a49-98ff-419b-9301-0145c599ea66"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":25,"value":"\"<mode>recovery<\/mode>\"","children":[{"start":26,"value":"<mode>recovery<\/mode>","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"052c8f77-7fbf-405a-b486-c659910291c5","pickleStepId":"3360d1f1-d53a-4ece-93b3-c497c6c993f5","stepDefinitionIds":["00cb7a49-98ff-419b-9301-0145c599ea66"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":25,"value":"\"Restore service and fix issues systematically\"","children":[{"start":26,"value":"Restore service and fix issues systematically","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"897f3cc8-8199-4e51-bdb2-271d374b47ce","hookId":"c1a86ff3-00f9-489f-999f-9b5a926fd273"}]}},{"testCase":{"pickleId":"77fb4bdd-a53d-4262-98d3-7da2302176ad","id":"0ff21771-c217-4b0b-94d9-ed29ae798ea3","testSteps":[{"id":"b7ae0867-b292-4305-977e-cca519580286","hookId":"a9861fe3-c4ef-419b-88fb-ea664bac4107"},{"id":"30ff28a0-f36e-48a6-9a74-44475a93a171","pickleStepId":"a7c0f5a2-35fc-4512-90ee-c2fc09cd1733","stepDefinitionIds":["a87bb126-e1cc-4956-9d1b-210015126f09"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"faa7e2fe-fd65-4c1f-b12c-aa9871c9a881","pickleStepId":"ef84ceec-d3ed-424a-8997-841643eb19b9","stepDefinitionIds":["2b46911e-04b2-4d06-9680-d0a560557e14"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":6,"value":"\"devpod stage empty\"","children":[{"start":7,"value":"devpod stage empty","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"ef6212cb-0d10-4656-85e9-50379f3adff1","pickleStepId":"7fa74533-2368-49e3-ad88-73d0f83f7a10","stepDefinitionIds":["469046d1-3ce7-4a69-8862-360049af7403"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":20,"value":"stage","children":[]},"parameterTypeName":"word"},{"group":{"start":36,"value":"\"empty\"","children":[{"start":37,"value":"empty","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"d72f2a07-0ba9-40a9-b3da-4732f6456d62","pickleStepId":"cf92d87b-6682-46d4-82a5-feca707847ba","stepDefinitionIds":["00cb7a49-98ff-419b-9301-0145c599ea66"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":25,"value":"\"<stage>empty<\/stage>\"","children":[{"start":26,"value":"<stage>empty<\/stage>","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"8cb174ac-b2fa-4664-9741-f22dab321b30","hookId":"c1a86ff3-00f9-489f-999f-9b5a926fd273"}]}},{"testCase":{"pickleId":"e828cb72-4882-4f0a-bfb6-b4b31b88fd61","id":"93493645-58a9-415a-b41f-cd36d376ca4c","testSteps":[{"id":"4ef7bd4b-d575-435c-8b8b-b5816d7bf5c4","hookId":"a9861fe3-c4ef-419b-88fb-ea664bac4107"},{"id":"f3c59d94-1e62-42a4-a265-2b120b250c2d","pickleStepId":"9911b5de-f486-4d75-ab27-5ab7cad9b366","stepDefinitionIds":["a87bb126-e1cc-4956-9d1b-210015126f09"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"2feb11b6-3da3-4c0c-ab10-9e5e21e3040e","pickleStepId":"064ed56f-4114-4ddc-9636-064bd17649fc","stepDefinitionIds":["2b46911e-04b2-4d06-9680-d0a560557e14"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":6,"value":"\"devpod stage starting\"","children":[{"start":7,"value":"devpod stage starting","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"52dd0d8d-88d4-4c2f-ab6a-ba698f3d65bb","pickleStepId":"3bdab65e-58f5-4b50-89a7-367a4a92c9da","stepDefinitionIds":["469046d1-3ce7-4a69-8862-360049af7403"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":20,"value":"stage","children":[]},"parameterTypeName":"word"},{"group":{"start":36,"value":"\"starting\"","children":[{"start":37,"value":"starting","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"f443fc85-13fb-4a8b-ae0e-698c388f78a6","pickleStepId":"350b63d3-e963-4208-a963-1ec98d91f62f","stepDefinitionIds":["00cb7a49-98ff-419b-9301-0145c599ea66"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":25,"value":"\"<stage>starting<\/stage>\"","children":[{"start":26,"value":"<stage>starting<\/stage>","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"622702ea-8f52-412e-bf8e-be55d2cae611","hookId":"c1a86ff3-00f9-489f-999f-9b5a926fd273"}]}},{"testCase":{"pickleId":"8ad1899d-3436-4b9e-8629-1526b283b209","id":"34502e4a-1b2f-4c6d-989c-a0ebf566a7f2","testSteps":[{"id":"0c1ea1d7-c2ee-4731-9222-b30fa97133c7","hookId":"a9861fe3-c4ef-419b-88fb-ea664bac4107"},{"id":"c3bcc030-a100-4bfa-b2a9-443daf567e1b","pickleStepId":"fcdc4f65-59f4-45d2-9907-964d9593c99c","stepDefinitionIds":["a87bb126-e1cc-4956-9d1b-210015126f09"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"8ebf850b-5fcd-4c58-8cce-100f0f2a4225","pickleStepId":"bf8855fc-a2b1-4cdd-b7b6-54f40f8ec283","stepDefinitionIds":["2b46911e-04b2-4d06-9680-d0a560557e14"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":6,"value":"\"devpod stage growing\"","children":[{"start":7,"value":"devpod stage growing","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"729c9e98-6b60-4379-8210-b75d55b2d1e1","pickleStepId":"b2b7ecc6-05f5-4e41-ab3e-d6d335e3eccf","stepDefinitionIds":["469046d1-3ce7-4a69-8862-360049af7403"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":20,"value":"stage","children":[]},"parameterTypeName":"word"},{"group":{"start":36,"value":"\"growing\"","children":[{"start":37,"value":"growing","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"ad484777-8f30-437d-a9d1-6c58362cef42","pickleStepId":"2d60d99d-5d16-43c7-af77-03e85ac878f8","stepDefinitionIds":["00cb7a49-98ff-419b-9301-0145c599ea66"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":25,"value":"\"<stage>growing<\/stage>\"","children":[{"start":26,"value":"<stage>growing<\/stage>","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"8964817c-1a5f-408b-be09-a6f38deec1fb","hookId":"c1a86ff3-00f9-489f-999f-9b5a926fd273"}]}},{"testCase":{"pickleId":"7b6ba9a6-f813-439c-b00d-0b0b47d37a61","id":"616c3c4f-2782-437b-9948-319e7c78f0ee","testSteps":[{"id":"dcdddedf-6c59-46aa-a004-9cd1eba75cbf","hookId":"a9861fe3-c4ef-419b-88fb-ea664bac4107"},{"id":"86eced12-c068-475f-9f99-6c6714043c34","pickleStepId":"c771a914-c992-423b-8147-9ebd3f787f1a","stepDefinitionIds":["a87bb126-e1cc-4956-9d1b-210015126f09"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"9a5c0944-b9a7-4ae8-b513-a2beba57bb7f","pickleStepId":"971f5f06-e512-4116-920e-8fdf3656ebe1","stepDefinitionIds":["2b46911e-04b2-4d06-9680-d0a560557e14"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":6,"value":"\"devpod stage mature\"","children":[{"start":7,"value":"devpod stage mature","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"f75ffe38-58ad-450e-be1a-f7d74b8433e2","pickleStepId":"fa33dbf1-44c5-4004-826a-a001cd2e0c42","stepDefinitionIds":["469046d1-3ce7-4a69-8862-360049af7403"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":20,"value":"stage","children":[]},"parameterTypeName":"word"},{"group":{"start":36,"value":"\"mature\"","children":[{"start":37,"value":"mature","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"59b98fae-7ece-44cd-bfb7-4279bc5b7783","pickleStepId":"bbb8db36-57b4-4b29-a31d-2bc2e8c6813b","stepDefinitionIds":["00cb7a49-98ff-419b-9301-0145c599ea66"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":25,"value":"\"<stage>mature<\/stage>\"","children":[{"start":26,"value":"<stage>mature<\/stage>","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"fc5f374c-093b-47ee-964c-192e04bec440","hookId":"c1a86ff3-00f9-489f-999f-9b5a926fd273"}]}},{"testCase":{"pickleId":"838533c2-798f-4d55-b9fe-a7c4c6228d55","id":"a5b48387-92ce-49d1-884b-17462136f515","testSteps":[{"id":"eaa90e68-bed3-40c1-b13c-e85cf6d0bf40","hookId":"a9861fe3-c4ef-419b-88fb-ea664bac4107"},{"id":"363a3870-bf73-4edf-a5c1-5f8c33b7c1db","pickleStepId":"84dcef6d-5181-438a-a720-4804fac01f6f","stepDefinitionIds":["a87bb126-e1cc-4956-9d1b-210015126f09"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"7405334d-ca16-4c8b-b418-cdb93984700a","pickleStepId":"30a5ea7b-1850-4881-a0b0-0efff009b633","stepDefinitionIds":["2b46911e-04b2-4d06-9680-d0a560557e14"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":6,"value":"\"devpod stage production\"","children":[{"start":7,"value":"devpod stage production","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"5cf512e9-ce44-438d-9b90-105824188e48","pickleStepId":"cb10f541-e15e-4033-8e50-6c8796fb4489","stepDefinitionIds":["469046d1-3ce7-4a69-8862-360049af7403"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":20,"value":"stage","children":[]},"parameterTypeName":"word"},{"group":{"start":36,"value":"\"production\"","children":[{"start":37,"value":"production","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"e28fb18c-04dd-4ccd-b018-47301eee193b","pickleStepId":"c6591f38-4295-41bb-9f95-b713341e5222","stepDefinitionIds":["00cb7a49-98ff-419b-9301-0145c599ea66"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":25,"value":"\"<stage>production<\/stage>\"","children":[{"start":26,"value":"<stage>production<\/stage>","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"acd52f06-ac73-4a5b-ba35-1d8a824e5c6d","hookId":"c1a86ff3-00f9-489f-999f-9b5a926fd273"}]}},{"testCase":{"pickleId":"1b899754-dcb2-4374-9106-f7405492f55a","id":"db31b93d-055a-4867-b6dd-c6c170dc6b8a","testSteps":[{"id":"40310d43-2647-4e48-bf32-d1c8a4a64a8b","hookId":"a9861fe3-c4ef-419b-88fb-ea664bac4107"},{"id":"ea1aa7cc-fb57-4f3e-aa40-b8a9540bd951","pickleStepId":"defc8bbd-2c86-4910-be74-679b3a3a3c97","stepDefinitionIds":["a87bb126-e1cc-4956-9d1b-210015126f09"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"8de9faa5-7fcb-4af1-b200-da66ff85a6a5","pickleStepId":"bc2587ad-7b21-43b8-a05d-76d082ec24b5","stepDefinitionIds":["54de4e69-46fa-40c0-a1c8-e93296921939"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":41,"value":"4","children":[]},"parameterTypeName":"int"}]}]},{"id":"732dd1ad-33df-46f9-99e2-0925a8c75aae","pickleStepId":"3fee9320-ee2d-40e1-8b1c-fccfbecef59a","stepDefinitionIds":["2003dbaf-1bc4-4755-a4e0-367530ef37f9"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":9,"value":"\"starting\"","children":[{"start":10,"value":"starting","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"24799a1d-6c82-4a66-a827-0ae5ee5d1010","pickleStepId":"c8c17271-785f-482c-8e36-6bc37725735c","stepDefinitionIds":["ee5a3eba-a7da-4036-a5d2-70dbeba70b54"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":8,"value":"\"speed\"","children":[{"start":9,"value":"speed","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"a8ae9ffd-94be-4507-828e-d6181bfc1046","pickleStepId":"5e838b16-e24f-49ec-9e53-b5a1765c8530","stepDefinitionIds":["73d78f9a-0865-4e37-945b-a58afdc50a0b"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":13,"value":"\"core\"","children":[{"start":14,"value":"core","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"f1966c2c-a8b1-43f6-a28f-667819ca8b17","pickleStepId":"43ddb47d-383e-48df-bf24-5196ad088405","stepDefinitionIds":["2b46911e-04b2-4d06-9680-d0a560557e14"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":6,"value":"\"devpod generate\"","children":[{"start":7,"value":"devpod generate","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"27587a0d-0fd6-4621-97fb-6156b837583a","pickleStepId":"633b0106-4fa8-4142-8706-1e098b0442b1","stepDefinitionIds":["421896d8-4660-4c7f-a146-f7b5b804c986"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":48,"value":"\"core\"","children":[{"start":49,"value":"core","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"53a11ddf-b18a-4640-a38a-4069d69c27a6","pickleStepId":"75f2f91b-0b1b-454d-b3a1-fc881876e898","stepDefinitionIds":["40b0bf95-66cc-43f2-9224-6785aad95c49"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"ff081d9c-ba8d-46ea-a903-862ccf7e5a49","hookId":"c1a86ff3-00f9-489f-999f-9b5a926fd273"}]}},{"testCase":{"pickleId":"cb6cf898-aa55-4f40-b337-3f96c1d72188","id":"ebac8665-76be-46e3-932b-0ef5d961f7f5","testSteps":[{"id":"26fa0c29-1337-4d37-b654-26f3a4ff2b26","hookId":"a9861fe3-c4ef-419b-88fb-ea664bac4107"},{"id":"6d1ef1b5-7d32-4d0f-9655-a91d65c14cb4","pickleStepId":"a24a4117-274a-4ca9-8532-c76e9c22ce81","stepDefinitionIds":["a87bb126-e1cc-4956-9d1b-210015126f09"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"ea753251-9678-4484-a455-a4d373553556","pickleStepId":"112c4bf9-1619-40a3-b7b8-adc27cc84062","stepDefinitionIds":["54de4e69-46fa-40c0-a1c8-e93296921939"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":41,"value":"4","children":[]},"parameterTypeName":"int"}]}]},{"id":"4e42f131-9c4e-45a7-82d5-eb6a1342d9d5","pickleStepId":"8e90f197-6abb-46e2-b056-8d9ee02d51ad","stepDefinitionIds":["ee5a3eba-a7da-4036-a5d2-70dbeba70b54"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":8,"value":"\"speed\"","children":[{"start":9,"value":"speed","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"8a45ea68-a401-4f27-b77e-11e7be136f1b","pickleStepId":"e2221231-c00c-433c-ab9d-109844857260","stepDefinitionIds":["d1d83554-6050-40bb-bdc1-f39f2623c465"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"a34f9221-9ea9-406c-b2f0-aa7767d7eb1d","pickleStepId":"5040e672-52c4-406a-a11e-6a1bd08aefe8","stepDefinitionIds":["a1345136-d779-4165-b66c-b8d61f36bfcb"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":9,"value":"2","children":[]},"parameterTypeName":"int"},{"group":{"start":26,"value":"\"file.naming.constants\"","children":[{"start":27,"value":"file.naming.constants","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"a6494540-bcf8-40be-a0f4-81f6f042fc4d","pickleStepId":"af4d24a3-96b4-4f24-82c0-2e6a54b7dfec","stepDefinitionIds":["2b46911e-04b2-4d06-9680-d0a560557e14"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":6,"value":"\"devpod generate\"","children":[{"start":7,"value":"devpod generate","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"212fe074-207d-44ab-b491-5234e40d6430","pickleStepId":"4b2ece42-738d-4df5-b545-b6da5d9bcf9f","stepDefinitionIds":["9163e835-8cbd-43ab-b9cd-9a283067e7fc"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":29,"value":"\"WATCH:\"","children":[{"start":30,"value":"WATCH:","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"0380c104-9686-4dc7-94d7-20f02cd89fc6","pickleStepId":"18436f8c-5bc6-4e7f-8320-82817975c078","stepDefinitionIds":["e52a5fa7-a6d2-4365-9228-0c44fcbd28c8"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":9,"value":"1","children":[]},"parameterTypeName":"int"},{"group":{"start":30,"value":"\"file.naming.constants\"","children":[{"start":31,"value":"file.naming.constants","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"0b320521-43f8-46bd-83d2-b7d141bb6fc8","pickleStepId":"3498cf6c-4356-4df7-b5ef-1f1c0aef6c27","stepDefinitionIds":["2b46911e-04b2-4d06-9680-d0a560557e14"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":6,"value":"\"devpod generate\"","children":[{"start":7,"value":"devpod generate","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"22b898ba-c7e2-49cc-8793-9d22dcfc33dc","pickleStepId":"e3f0d5ca-8b87-49b9-a514-3bbd121c3f5e","stepDefinitionIds":["00cb7a49-98ff-419b-9301-0145c599ea66"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":25,"value":"\"WATCH:\"","children":[{"start":26,"value":"WATCH:","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"86d90740-30f7-4507-8f0f-2c4ac1a54eec","pickleStepId":"98f7a11a-3138-41b9-8561-e997eed84a0b","stepDefinitionIds":["00cb7a49-98ff-419b-9301-0145c599ea66"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":25,"value":"\"SCREAMING_SNAKE for constants\"","children":[{"start":26,"value":"SCREAMING_SNAKE for constants","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"cc242d3a-7225-475b-ad90-322316ae0e7d","pickleStepId":"47307ed4-78b5-4e69-8b6d-a65e387e2eac","stepDefinitionIds":["00cb7a49-98ff-419b-9301-0145c599ea66"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":25,"value":"\"(3 violations)\"","children":[{"start":26,"value":"(3 violations)","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"ad388f2c-3405-46d8-b57c-a98c27e05c6e","hookId":"c1a86ff3-00f9-489f-999f-9b5a926fd273"}]}},{"testCase":{"pickleId":"1db7aeab-6a63-4ae5-9768-881b34a696d2","id":"ad18cb5c-3771-46cb-9c7d-91f1a9e5cdbc","testSteps":[{"id":"ee4c18d8-cbde-41d8-a4b1-b23483b96fc8","hookId":"a9861fe3-c4ef-419b-88fb-ea664bac4107"},{"id":"18bbcb73-8ff3-49bc-a399-66c38275f367","pickleStepId":"39aa4374-6110-46cd-8d69-b812f302ac0e","stepDefinitionIds":["a87bb126-e1cc-4956-9d1b-210015126f09"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"c7f4c5f2-6849-46d2-ae87-5825082be54f","pickleStepId":"5dc6d889-68a7-47c7-8a03-ee6059068914","stepDefinitionIds":["54de4e69-46fa-40c0-a1c8-e93296921939"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":41,"value":"4","children":[]},"parameterTypeName":"int"}]}]},{"id":"139683b3-a3ba-4302-b938-72e643132670","pickleStepId":"4ac5e0dd-331e-48bd-a5bc-78c2df38b896","stepDefinitionIds":["ee5a3eba-a7da-4036-a5d2-70dbeba70b54"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":8,"value":"\"speed\"","children":[{"start":9,"value":"speed","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"db4ccfd8-9eab-4d42-b85b-624e7d74b163","pickleStepId":"7b2a070a-0121-4cfc-9ee9-376fb197874c","stepDefinitionIds":["d1d83554-6050-40bb-bdc1-f39f2623c465"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"3af8c87d-e177-47f0-93ed-e7deaf4b2cf0","pickleStepId":"ecc8e920-f618-4ecd-b0c2-3e4e3ffdaaa9","stepDefinitionIds":["a1345136-d779-4165-b66c-b8d61f36bfcb"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":9,"value":"5","children":[]},"parameterTypeName":"int"},{"group":{"start":26,"value":"\"imports.order\"","children":[{"start":27,"value":"imports.order","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"87f743ba-7172-4a5f-a738-5d6206bc0441","pickleStepId":"549e3d4e-621a-4907-afab-edc0b2775621","stepDefinitionIds":["2b46911e-04b2-4d06-9680-d0a560557e14"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":6,"value":"\"devpod generate\"","children":[{"start":7,"value":"devpod generate","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"416ae649-7260-4876-8231-35127d547870","pickleStepId":"fd593ebc-d258-46a6-bd35-6d5d5ed88f26","stepDefinitionIds":["9163e835-8cbd-43ab-b9cd-9a283067e7fc"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":29,"value":"\"Import order\"","children":[{"start":30,"value":"Import order","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"8e5758e1-09d2-42d4-840a-7f90e99a88cf","hookId":"c1a86ff3-00f9-489f-999f-9b5a926fd273"}]}},{"testCase":{"pickleId":"b64e5aae-712f-4580-998b-68d5800be22a","id":"febd5896-e5ff-46b1-b715-20101cae7714","testSteps":[{"id":"0a489202-ee84-4efb-89f6-f561870cd71f","hookId":"a9861fe3-c4ef-419b-88fb-ea664bac4107"},{"id":"b021b74a-5d65-41c9-9b73-17404b3fe7db","pickleStepId":"0f49a816-adaf-4dca-baec-3d15758d8b4b","stepDefinitionIds":["a87bb126-e1cc-4956-9d1b-210015126f09"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"18dd0fe0-788b-4fd3-976b-4559486d448b","pickleStepId":"c599c0a6-b671-4f81-8276-213fdef398e9","stepDefinitionIds":["54de4e69-46fa-40c0-a1c8-e93296921939"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":41,"value":"4","children":[]},"parameterTypeName":"int"}]}]},{"id":"3d3935a7-066e-4a49-b6a8-a47c954d0aa7","pickleStepId":"9b14ba2d-b41a-4011-a9a0-4e9de3ebcc67","stepDefinitionIds":["ee5a3eba-a7da-4036-a5d2-70dbeba70b54"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":8,"value":"\"discovery\"","children":[{"start":9,"value":"discovery","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"26765a18-fb60-46c6-9435-bf86eb25317f","pickleStepId":"bccc3e1f-d80b-4d09-ac0c-0d4a2f50e80e","stepDefinitionIds":["d1d83554-6050-40bb-bdc1-f39f2623c465"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"f47bbf84-5edc-4623-a053-b5ec6a205d54","pickleStepId":"ed6c1295-3980-4ce0-b6c0-ac7825c3051c","stepDefinitionIds":["a1345136-d779-4165-b66c-b8d61f36bfcb"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":9,"value":"5","children":[]},"parameterTypeName":"int"},{"group":{"start":26,"value":"\"imports.order\"","children":[{"start":27,"value":"imports.order","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"9b6a86c7-ec8a-4934-947a-fc3181b4f637","pickleStepId":"88b466d8-476b-4c4d-b232-69af92f93deb","stepDefinitionIds":["2b46911e-04b2-4d06-9680-d0a560557e14"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":6,"value":"\"devpod generate\"","children":[{"start":7,"value":"devpod generate","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"cde15a26-e13f-4191-82e7-468ab73a3b6f","pickleStepId":"43821acc-509b-449b-8247-f643d38d16ff","stepDefinitionIds":["00cb7a49-98ff-419b-9301-0145c599ea66"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":25,"value":"\"Import order\"","children":[{"start":26,"value":"Import order","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"21fbd689-3fc1-453d-be88-b3067b5199a0","hookId":"c1a86ff3-00f9-489f-999f-9b5a926fd273"}]}},{"testCase":{"pickleId":"dc903bf1-54ca-4bb3-a41c-e8a5f7e4bbb6","id":"863383f1-5d1d-49dd-a969-f52bec518148","testSteps":[{"id":"3a1ba7df-2fc9-4fb4-9ec2-0b0a6e33fda4","hookId":"a9861fe3-c4ef-419b-88fb-ea664bac4107"},{"id":"45d143f9-3e60-4d0e-b230-8bbe4825a10c","pickleStepId":"4cd7f47e-616b-411b-943b-d67ebdffce96","stepDefinitionIds":["a87bb126-e1cc-4956-9d1b-210015126f09"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"7deca547-7c54-40cb-b2c1-8a2676623d69","pickleStepId":"3ca644ca-0cad-40f2-82be-5492df3d0d47","stepDefinitionIds":["54de4e69-46fa-40c0-a1c8-e93296921939"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":41,"value":"4","children":[]},"parameterTypeName":"int"}]}]},{"id":"1aba952a-9eeb-458b-9187-8cc1278a920c","pickleStepId":"e618f8c5-539d-4bde-bf0f-17d93c37c776","stepDefinitionIds":["e55b4768-27bb-4574-b1cd-d1d798217554"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":22,"value":"\"react\"","children":[{"start":23,"value":"react","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"a8a0496b-f3eb-4f05-942a-e6361f7e8b5c","pickleStepId":"7bd047d6-339a-4b64-97f3-6346c6151a45","stepDefinitionIds":["2b46911e-04b2-4d06-9680-d0a560557e14"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":6,"value":"\"devpod generate\"","children":[{"start":7,"value":"devpod generate","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"e3111e1d-a59f-4f7c-a61c-206c927ad8ae","pickleStepId":"7b7d7c50-2e6d-418b-b7b4-15a1f62921f0","stepDefinitionIds":["21d0c8df-76e9-4454-9696-f6aef214255f"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"c35274fe-0852-4487-9ad6-b3ef7558cf1b","hookId":"c1a86ff3-00f9-489f-999f-9b5a926fd273"}]}},{"testCase":{"pickleId":"dee03da8-342d-43ce-ac8e-e6ccf43c1ca2","id":"6d013d03-21e4-4ff7-8a30-9b5ebbc72e18","testSteps":[{"id":"2fda6152-b81c-4a24-a9e6-8f1658e76543","hookId":"a9861fe3-c4ef-419b-88fb-ea664bac4107"},{"id":"451f5f18-710d-4bd3-83f6-add8cb0897cc","pickleStepId":"d134bdf0-9f99-4261-bd77-4c5b649acdf7","stepDefinitionIds":["a87bb126-e1cc-4956-9d1b-210015126f09"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"5f82887c-3a5b-4583-8716-1588e4cfc416","pickleStepId":"e686a487-3995-4567-b443-149d201bcb5f","stepDefinitionIds":["54de4e69-46fa-40c0-a1c8-e93296921939"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":41,"value":"4","children":[]},"parameterTypeName":"int"}]}]},{"id":"a3789c1a-707b-4f5a-a340-824e2b82a35f","pickleStepId":"d83d9f10-4f5a-41dc-9984-bfe68d2bdd9e","stepDefinitionIds":["73d78f9a-0865-4e37-945b-a58afdc50a0b"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":13,"value":"\"core\"","children":[{"start":14,"value":"core","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"a47b6087-1c80-41ac-86a6-f0b0d903a7ad","pickleStepId":"2d7564bf-177f-4b3e-a2f3-80a8c5b6aa01","stepDefinitionIds":["2b46911e-04b2-4d06-9680-d0a560557e14"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":6,"value":"\"devpod standards add auth\"","children":[{"start":7,"value":"devpod standards add auth","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"d3d974f9-ef0c-4671-9531-dfe3dfef74a2","pickleStepId":"69ee7ae4-8350-461a-a18a-95150a898b1c","stepDefinitionIds":["2b46911e-04b2-4d06-9680-d0a560557e14"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":6,"value":"\"devpod generate\"","children":[{"start":7,"value":"devpod generate","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"fe79e4fa-e7a1-4e48-b1ea-ed76372e479d","pickleStepId":"422fd128-a36d-4f98-9f4a-a2da1c44888f","stepDefinitionIds":["b4c964c5-c76c-40e9-bffa-1fb4d10068a2"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":19,"value":"\"core\"","children":[{"start":20,"value":"core","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"},{"group":{"start":27,"value":"\"auth\"","children":[{"start":28,"value":"auth","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"5eeb4e87-ecb6-4faa-97da-9fe6804600b2","pickleStepId":"4d76537b-f43d-415e-9dce-96724e0f80a4","stepDefinitionIds":["421896d8-4660-4c7f-a146-f7b5b804c986"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":48,"value":"\"auth\"","children":[{"start":49,"value":"auth","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"a2a20d05-91e4-4a3a-b256-55809a1cc876","hookId":"c1a86ff3-00f9-489f-999f-9b5a926fd273"}]}},{"testCase":{"pickleId":"30402f38-f1f9-4e07-b544-c77f84bd9e1a","id":"426eaccc-483c-4573-9ec2-04e24af4bd10","testSteps":[{"id":"27852b9b-8e31-4efd-83bd-396aa2877fe5","hookId":"a9861fe3-c4ef-419b-88fb-ea664bac4107"},{"id":"7c0431de-6f29-4edf-8a55-7032f696023c","pickleStepId":"37387ec3-78a7-4906-a9df-3bb3f49dfc27","stepDefinitionIds":["a87bb126-e1cc-4956-9d1b-210015126f09"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"fed86daf-46d0-4c7d-99aa-396260703617","pickleStepId":"6be6d3d1-2528-4319-a83c-afc9df68b4a4","stepDefinitionIds":["54de4e69-46fa-40c0-a1c8-e93296921939"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":41,"value":"4","children":[]},"parameterTypeName":"int"}]}]},{"id":"2fcb2267-84b5-4eee-8157-ed1f3c2df11b","pickleStepId":"f3148203-c53c-49d7-b0cd-ef74ce54151b","stepDefinitionIds":["2003dbaf-1bc4-4755-a4e0-367530ef37f9"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":9,"value":"\"growing\"","children":[{"start":10,"value":"growing","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"14f46388-271f-405c-a329-5fc67bf9e44b","pickleStepId":"37c05579-fc88-4a04-a18c-e523da7590c8","stepDefinitionIds":["2b46911e-04b2-4d06-9680-d0a560557e14"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":6,"value":"\"devpod generate\"","children":[{"start":7,"value":"devpod generate","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"586fc2b0-044a-4839-8122-e5a3e8d8508f","pickleStepId":"77902efb-1329-4d98-9015-9fbb312b9adc","stepDefinitionIds":["95cb9df9-812e-4e1f-b3bf-88c09c42e16a"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":47,"value":"\"empty\"","children":[{"start":48,"value":"empty","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"},{"group":{"start":56,"value":"\"starting\"","children":[{"start":57,"value":"starting","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"},{"group":{"start":68,"value":"\"growing\"","children":[{"start":69,"value":"growing","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"127ae0d9-6086-449d-a7e5-c1239a78bd82","pickleStepId":"61624805-02c9-455c-b09f-fe0b8537670e","stepDefinitionIds":["5929bbb0-7ea4-4a46-ae57-8952185a5734"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":49,"value":"\"mature\"","children":[{"start":50,"value":"mature","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"cf091d44-e532-4cd9-8dcd-5d06ef867d65","hookId":"c1a86ff3-00f9-489f-999f-9b5a926fd273"}]}},{"testCase":{"pickleId":"b52427b1-b6b2-49bb-9d34-1eb61703514d","id":"02d1b642-3781-4096-aa93-07c8999d5f17","testSteps":[{"id":"34afb33c-6711-48ad-b759-5df43a3a8567","hookId":"a9861fe3-c4ef-419b-88fb-ea664bac4107"},{"id":"6e4cfda5-0e74-4bbc-ab3b-a62a36b774b4","pickleStepId":"9bb563c4-f4a6-4b68-a72c-db5c9a2e6104","stepDefinitionIds":["ee5a3eba-a7da-4036-a5d2-70dbeba70b54"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":8,"value":"\"speed\"","children":[{"start":9,"value":"speed","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"6a02bc0c-5256-4180-8f52-873b345d3e02","pickleStepId":"f1d74ad9-5129-471d-9e99-1a736eeb14cd","stepDefinitionIds":["2003dbaf-1bc4-4755-a4e0-367530ef37f9"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":9,"value":"\"growing\"","children":[{"start":10,"value":"growing","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"2e827d45-e383-45ed-8c67-dd378a4dd834","pickleStepId":"fa73355a-b044-43bf-bad6-518991f0bc19","stepDefinitionIds":["00ee1aa2-68f8-4bba-8fc0-baf3d5fe3039"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":13,"value":"\"core\"","children":[{"start":14,"value":"core","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"},{"group":{"start":21,"value":"\"auth\"","children":[{"start":22,"value":"auth","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"f9e185cd-0c4d-4217-a9e4-c6f8adac928d","pickleStepId":"2f36438c-5663-486a-93f6-90a100f4f504","stepDefinitionIds":["2b46911e-04b2-4d06-9680-d0a560557e14"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":6,"value":"\"devpod generate\"","children":[{"start":7,"value":"devpod generate","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"99cf31d0-400e-40a0-bbe7-1fbe18fc7e88","pickleStepId":"7012fcc6-333f-4b4b-93d8-3d93e4f8cd2d","stepDefinitionIds":["00cb7a49-98ff-419b-9301-0145c599ea66"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":25,"value":"\"<claude_context project=\\\"devpod-development\\\">\"","children":[{"start":26,"value":"<claude_context project=\\\"devpod-development\\\">","children":[{"start":50,"value":"\\\">","children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"4af8e7dd-d9c0-42b4-835c-b52cfac0b3b5","pickleStepId":"d9b033b6-5b85-49bb-8dd7-95cebf10eb19","stepDefinitionIds":["00cb7a49-98ff-419b-9301-0145c599ea66"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":25,"value":"\"<mission>\"","children":[{"start":26,"value":"<mission>","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"5b376a66-6b72-463c-993a-fdd240a8f98c","pickleStepId":"c50f4a0a-d1d0-4ad9-8ed9-f7e476801abf","stepDefinitionIds":["00cb7a49-98ff-419b-9301-0145c599ea66"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":25,"value":"\"Ship working code quickly\"","children":[{"start":26,"value":"Ship working code quickly","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"66b5a3bf-8917-4ece-a093-31f6f90fe1ab","pickleStepId":"cae76c3f-aabd-4a97-a01d-af13df3a637c","stepDefinitionIds":["00cb7a49-98ff-419b-9301-0145c599ea66"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":25,"value":"\"<mode>speed<\/mode>\"","children":[{"start":26,"value":"<mode>speed<\/mode>","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"1a8a461e-804e-44ba-8816-6ec24992bb07","pickleStepId":"50deae86-5e22-4963-a966-321ebf7d26a0","stepDefinitionIds":["00cb7a49-98ff-419b-9301-0145c599ea66"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":25,"value":"\"<stage>growing<\/stage>\"","children":[{"start":26,"value":"<stage>growing<\/stage>","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"bd00d9aa-792e-4c8f-bf8f-65aaa2d467b0","pickleStepId":"0e22f735-cd9f-4cda-91e0-e2eaba3b0109","stepDefinitionIds":["00cb7a49-98ff-419b-9301-0145c599ea66"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":25,"value":"\"Ship working code quickly\"","children":[{"start":26,"value":"Ship working code quickly","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"f0ac48c8-4872-41c6-8cbc-fd2b4adcff96","pickleStepId":"44ed9ee9-be38-48ad-b6bd-a1c85b24703e","stepDefinitionIds":["00cb7a49-98ff-419b-9301-0145c599ea66"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":25,"value":"\"<standards>\"","children":[{"start":26,"value":"<standards>","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"b1a3bed9-ec43-4f43-b5e4-81ab99401c14","hookId":"c1a86ff3-00f9-489f-999f-9b5a926fd273"}]}},{"testCase":{"pickleId":"a2e6c31e-b843-4f49-92a7-02f32d979694","id":"5f502ff1-2827-4625-9380-8deb0dd5f74d","testSteps":[{"id":"82f82a22-b452-48e4-9ef7-45258901e620","hookId":"a9861fe3-c4ef-419b-88fb-ea664bac4107"},{"id":"a76fe775-f459-40e4-b9b4-d4f6d5aea3fe","pickleStepId":"07f64907-8124-443a-a33f-a60f09b039a2","stepDefinitionIds":["2003dbaf-1bc4-4755-a4e0-367530ef37f9"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":9,"value":"\"starting\"","children":[{"start":10,"value":"starting","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"1ad16282-f74b-4cfd-adea-2b6da6aa6f31","pickleStepId":"775524ad-c7de-4a00-8eb6-13ad2bb950fc","stepDefinitionIds":["ee5a3eba-a7da-4036-a5d2-70dbeba70b54"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":8,"value":"\"speed\"","children":[{"start":9,"value":"speed","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"d918d267-48e7-460e-a272-3d9bc5d61478","pickleStepId":"2846b49f-98b9-4c95-8a92-d0236e912946","stepDefinitionIds":["73d78f9a-0865-4e37-945b-a58afdc50a0b"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":13,"value":"\"core\"","children":[{"start":14,"value":"core","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"4c9e0084-afad-4fc1-9bec-6d475de84a23","pickleStepId":"767bddce-a8db-4d3d-bdc1-c4b0b5c8fb00","stepDefinitionIds":["5e623210-6de1-4f3f-bf0c-e7c090bcb354"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"2c34ef3a-7795-4869-9b69-3597fd34d3e3","pickleStepId":"828d7d9a-46f3-48fb-b328-4e902333ebb5","stepDefinitionIds":["c75a2971-fac1-4962-a522-97978f3b9cdb"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"8f7bbfce-83bc-4b7a-b179-c4da541aa7f6","pickleStepId":"f02f0125-4a60-4d81-aafc-901108acc2dc","stepDefinitionIds":["9163e835-8cbd-43ab-b9cd-9a283067e7fc"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":29,"value":"\"WATCH:\"","children":[{"start":30,"value":"WATCH:","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"51f9e794-92f0-46f2-9285-e37884edeb43","pickleStepId":"9379ec41-9799-4c18-bb83-0d3a5a51ae68","stepDefinitionIds":["a1345136-d779-4165-b66c-b8d61f36bfcb"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":9,"value":"3","children":[]},"parameterTypeName":"int"},{"group":{"start":26,"value":"\"file.naming.constants\"","children":[{"start":27,"value":"file.naming.constants","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"c719fd25-f17a-4de2-b6a0-f3f89df082c6","pickleStepId":"95d1f137-93eb-468e-b9c6-d78d491e3511","stepDefinitionIds":["c75a2971-fac1-4962-a522-97978f3b9cdb"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"47592c62-56f6-4705-88ee-7a5ca4819c58","pickleStepId":"8cd1ed4d-0f99-4c21-85c3-dd66a996b3e4","stepDefinitionIds":["00cb7a49-98ff-419b-9301-0145c599ea66"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":25,"value":"\"WATCH:\"","children":[{"start":26,"value":"WATCH:","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"20bd56d9-d348-4d15-8c84-49f81e5e47e9","pickleStepId":"e271e34b-28a9-4789-b52c-022e97ce3b8e","stepDefinitionIds":["00cb7a49-98ff-419b-9301-0145c599ea66"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":25,"value":"\"SCREAMING_SNAKE for constants (3 violations)\"","children":[{"start":26,"value":"SCREAMING_SNAKE for constants (3 violations)","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"8f561c18-3a8d-45e8-88f3-ef967ce851b1","hookId":"c1a86ff3-00f9-489f-999f-9b5a926fd273"}]}},{"testCase":{"pickleId":"8189b7fe-0032-47d5-95fe-2878917e840e","id":"e6352810-8081-49ab-afc1-eb5be5a5fff1","testSteps":[{"id":"0f3132a7-117c-417b-afea-5ddc05b4112b","hookId":"a9861fe3-c4ef-419b-88fb-ea664bac4107"},{"id":"7a5cfa6f-e0fc-4663-9ee3-147fb631da88","pickleStepId":"6d7b1b06-14c2-4ea4-8bbc-d08d8569eb3b","stepDefinitionIds":["a87bb126-e1cc-4956-9d1b-210015126f09"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"bf3b4727-2392-4840-9ec1-2de73f8577e6","pickleStepId":"1be95d24-1059-4117-9dd2-8840cbcf5351","stepDefinitionIds":["cb6cfb24-2309-4059-8d29-268281883d8e"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":9,"value":"\"imports.order\"","children":[{"start":10,"value":"imports.order","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"},{"group":{"start":38,"value":"\"medium\"","children":[{"start":39,"value":"medium","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"ee085c74-bb83-4c95-8312-850ba67be0d6","pickleStepId":"06726a08-8c57-4ee1-b33f-440451b96629","stepDefinitionIds":["a1345136-d779-4165-b66c-b8d61f36bfcb"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":9,"value":"5","children":[]},"parameterTypeName":"int"},{"group":{"start":26,"value":"\"imports.order\"","children":[{"start":27,"value":"imports.order","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"5bf91b96-07dc-4b3b-95a5-91a32e8deb17","pickleStepId":"a6102d24-ee2c-437e-860b-9726d7dc48bc","stepDefinitionIds":["2b46911e-04b2-4d06-9680-d0a560557e14"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":6,"value":"\"devpod speed\"","children":[{"start":7,"value":"devpod speed","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"85d2d21d-d3e1-4f2d-9258-3593a0300976","pickleStepId":"a1401ad1-8ec1-4352-8a7d-e88dd9dd3cab","stepDefinitionIds":["c75a2971-fac1-4962-a522-97978f3b9cdb"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"6ad41f42-0d6f-42b7-b681-8dafe4912467","pickleStepId":"69c94838-7d69-4ea0-9749-d9771e9f807d","stepDefinitionIds":["9163e835-8cbd-43ab-b9cd-9a283067e7fc"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":29,"value":"\"Import order\"","children":[{"start":30,"value":"Import order","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"2c427a34-2b88-47ef-959d-cee1d0bfc80a","pickleStepId":"05612874-bbfc-4ec5-89ef-8742e5991770","stepDefinitionIds":["2b46911e-04b2-4d06-9680-d0a560557e14"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":6,"value":"\"devpod discovery\"","children":[{"start":7,"value":"devpod discovery","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"8e0098c3-c346-41fb-b949-28601a349ea0","pickleStepId":"8ba1a276-86c2-4bfc-9d19-e7370ce74039","stepDefinitionIds":["c75a2971-fac1-4962-a522-97978f3b9cdb"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"db876144-82e6-46eb-8ad1-3362599502bb","pickleStepId":"02a63b97-4655-425e-b346-998409e447e7","stepDefinitionIds":["00cb7a49-98ff-419b-9301-0145c599ea66"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":25,"value":"\"Import order\"","children":[{"start":26,"value":"Import order","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"852cdad0-66f1-43ad-b20f-c87d19f1a46c","hookId":"c1a86ff3-00f9-489f-999f-9b5a926fd273"}]}},{"testCase":{"pickleId":"98b2d449-24d4-4504-8c56-481f6a864fd8","id":"1869764c-5733-407b-8efe-a4f22520b7c7","testSteps":[{"id":"a693804a-234a-4e00-8895-4fc554dabdbe","hookId":"a9861fe3-c4ef-419b-88fb-ea664bac4107"},{"id":"93f13bdc-f5c9-46ad-ac81-0508deae34d0","pickleStepId":"252d4508-296b-434c-92f7-16f385414655","stepDefinitionIds":["a87bb126-e1cc-4956-9d1b-210015126f09"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"4e61121e-678d-4bbd-b940-1bc16db0d3a4","pickleStepId":"5c55b4b7-d1c0-4c05-bef3-0293302f068f","stepDefinitionIds":["2b46911e-04b2-4d06-9680-d0a560557e14"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":6,"value":"\"devpod generate\"","children":[{"start":7,"value":"devpod generate","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"c5fa9514-c3ba-4685-9edc-5d4a1c2d2daf","pickleStepId":"b356c4ae-dad0-4a9c-9c9c-5276afc55853","stepDefinitionIds":["00cb7a49-98ff-419b-9301-0145c599ea66"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":25,"value":"\"<CLAUDE_IMMEDIATE_AUTONOMOUS_ACTION>\"","children":[{"start":26,"value":"<CLAUDE_IMMEDIATE_AUTONOMOUS_ACTION>","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"d5b625a5-9b62-4427-91c3-27c0b8b2201d","pickleStepId":"fe9f3e4c-171b-4fed-bdb9-7ca65e920af8","stepDefinitionIds":["00cb7a49-98ff-419b-9301-0145c599ea66"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":25,"value":"\"MANDATORY CLAUDE EXECUTION DIRECTIVE\"","children":[{"start":26,"value":"MANDATORY CLAUDE EXECUTION DIRECTIVE","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"b6e133d2-2627-468e-82b1-f6c18c227f96","pickleStepId":"3d5aa8c6-f2bd-4343-9725-1efcc30d728d","stepDefinitionIds":["00cb7a49-98ff-419b-9301-0145c599ea66"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":25,"value":"\"devpod describe\"","children":[{"start":26,"value":"devpod describe","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"29e07d44-a282-4500-ba95-cfd72c664b97","pickleStepId":"d8791e06-adcc-4549-a3e6-7c863e609fdd","stepDefinitionIds":["00cb7a49-98ff-419b-9301-0145c599ea66"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":25,"value":"\"<project_summary>\"","children":[{"start":26,"value":"<project_summary>","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"3f98a62c-a690-4fc0-baa8-6aa37cb9113c","pickleStepId":"92ec9d3b-8952-4d3e-a13a-02236326adfb","stepDefinitionIds":["00cb7a49-98ff-419b-9301-0145c599ea66"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":25,"value":"\"Not yet set\"","children":[{"start":26,"value":"Not yet set","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"8e2319ad-ae97-42b4-8e3b-d8458b1f7103","hookId":"c1a86ff3-00f9-489f-999f-9b5a926fd273"}]}},{"testCase":{"pickleId":"79501b5b-f5d9-42c4-b6ef-f2914fc7a208","id":"ce5b8b01-f0c7-4cae-8fc3-35e2599f70d6","testSteps":[{"id":"fce0da56-392c-4116-9093-88580b62bfc6","hookId":"a9861fe3-c4ef-419b-88fb-ea664bac4107"},{"id":"c603f330-61ae-4603-aa80-383c8eb4410c","pickleStepId":"cd1ac53d-985f-4f72-b2f2-2b273ee02bfe","stepDefinitionIds":["a87bb126-e1cc-4956-9d1b-210015126f09"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"69a8f1ab-4a4a-4b27-8756-c6ca9b40ce5f","pickleStepId":"763f2bc2-ad24-4b2e-ab99-33cbb7f135ff","stepDefinitionIds":["2b46911e-04b2-4d06-9680-d0a560557e14"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":6,"value":"\"devpod describe 'CLI tool for adaptive development modes'\"","children":[{"start":7,"value":"devpod describe 'CLI tool for adaptive development modes'","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"a183dbff-4c44-4d18-b97d-89c034081cc6","pickleStepId":"63493359-c2c0-4a7e-9fbf-5b6bdc0d3e4b","stepDefinitionIds":["2b46911e-04b2-4d06-9680-d0a560557e14"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":6,"value":"\"devpod speed\"","children":[{"start":7,"value":"devpod speed","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"ae80a33a-0089-4b3b-b052-f76ea18c194f","pickleStepId":"4c29b18c-4962-4a1f-bab3-308d988049b1","stepDefinitionIds":["00cb7a49-98ff-419b-9301-0145c599ea66"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":25,"value":"\"<project_summary>\"","children":[{"start":26,"value":"<project_summary>","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"13ee610b-b826-41d7-9d17-93c1d7b29144","pickleStepId":"0aec79a3-f9bf-459d-86a2-a276353ff009","stepDefinitionIds":["00cb7a49-98ff-419b-9301-0145c599ea66"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":25,"value":"\"CLI tool for adaptive development modes\"","children":[{"start":26,"value":"CLI tool for adaptive development modes","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"9ce9b12b-768d-466f-b491-ee41bc23839b","pickleStepId":"4ffd9c76-5a08-4108-87c9-b2f5df6120a3","stepDefinitionIds":["9163e835-8cbd-43ab-b9cd-9a283067e7fc"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":29,"value":"\"<CLAUDE_IMMEDIATE_AUTONOMOUS_ACTION>\"","children":[{"start":30,"value":"<CLAUDE_IMMEDIATE_AUTONOMOUS_ACTION>","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"0b05dce9-465b-4b41-acdb-225ebe9d47f7","hookId":"c1a86ff3-00f9-489f-999f-9b5a926fd273"}]}},{"testCase":{"pickleId":"09b6bc2e-4725-4dcf-aab2-94cadeaaa8dc","id":"2043a2bd-8e88-4443-b740-86514911c480","testSteps":[{"id":"ec8b5b3f-5ce9-42e0-8e91-10df55adc1a3","hookId":"a9861fe3-c4ef-419b-88fb-ea664bac4107"},{"id":"ae242f56-549c-4b88-8d0b-671aef612722","pickleStepId":"37550139-01d1-4709-9a9a-4ffb502377c0","stepDefinitionIds":["a87bb126-e1cc-4956-9d1b-210015126f09"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"510c523f-c374-4e79-8775-0547f880cc64","pickleStepId":"91344f78-21b6-451a-b0c0-942f9a93d7eb","stepDefinitionIds":["2b46911e-04b2-4d06-9680-d0a560557e14"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":6,"value":"\"devpod generate\"","children":[{"start":7,"value":"devpod generate","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"bd211870-80ab-41e6-b2cc-549df8aa91d5","pickleStepId":"030f8a8b-f7e7-4380-9fb8-30496ff47fac","stepDefinitionIds":["00cb7a49-98ff-419b-9301-0145c599ea66"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":25,"value":"\"<CLAUDE_IMMEDIATE_AUTONOMOUS_ACTION>\"","children":[{"start":26,"value":"<CLAUDE_IMMEDIATE_AUTONOMOUS_ACTION>","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"33590276-2594-41a1-8691-8e428f4035a8","hookId":"c1a86ff3-00f9-489f-999f-9b5a926fd273"}]}},{"testCase":{"pickleId":"2e787941-7526-40c0-bd28-ef8bd9b1390b","id":"874da33c-d2d1-4078-9d3f-4132d703de47","testSteps":[{"id":"2c71cbb5-de30-47be-b774-724e8906be7b","hookId":"a9861fe3-c4ef-419b-88fb-ea664bac4107"},{"id":"03c2ee23-aa1a-496a-a614-31d546b2c598","pickleStepId":"c9bc16c2-dc8b-4f2e-9b9a-f7d97a95239b","stepDefinitionIds":["a87bb126-e1cc-4956-9d1b-210015126f09"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"82c19966-914c-432b-b577-788cb2c15e2c","pickleStepId":"8cd7dd33-2107-41d8-9bf2-50c41462fa70","stepDefinitionIds":["2b46911e-04b2-4d06-9680-d0a560557e14"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":6,"value":"\"devpod describe 'Test project'\"","children":[{"start":7,"value":"devpod describe 'Test project'","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"6e182b91-a927-4ef9-a49f-dd202170e6be","pickleStepId":"8e3a5bcf-ea14-458d-a22b-270dc05ee2c7","stepDefinitionIds":["2b46911e-04b2-4d06-9680-d0a560557e14"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":6,"value":"\"devpod generate\"","children":[{"start":7,"value":"devpod generate","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"992684cd-f900-4cfa-b155-25591bab6205","pickleStepId":"2e98866e-981b-4e43-bd23-9e1542660fa5","stepDefinitionIds":["9163e835-8cbd-43ab-b9cd-9a283067e7fc"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":29,"value":"\"<CLAUDE_IMMEDIATE_AUTONOMOUS_ACTION>\"","children":[{"start":30,"value":"<CLAUDE_IMMEDIATE_AUTONOMOUS_ACTION>","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"eb7a7335-8832-4d28-8f9b-e38ffea74c08","pickleStepId":"6764b6e0-3846-413d-b38c-ccc563514334","stepDefinitionIds":["00cb7a49-98ff-419b-9301-0145c599ea66"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":25,"value":"\"Test project\"","children":[{"start":26,"value":"Test project","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"6f8e9c5a-2288-464e-bec9-8f4194b08609","pickleStepId":"7dad8faf-a047-4e01-a675-3620686efc17","stepDefinitionIds":["9163e835-8cbd-43ab-b9cd-9a283067e7fc"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":29,"value":"\"IMMEDIATE ACTION NEEDED\"","children":[{"start":30,"value":"IMMEDIATE ACTION NEEDED","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"4a2e31f0-9ef8-4cd9-8ebb-668f1405b57b","hookId":"c1a86ff3-00f9-489f-999f-9b5a926fd273"}]}},{"testCase":{"pickleId":"27f54152-d9e9-4b88-bbdc-bec27f95d9da","id":"451ccea9-bb11-45db-9942-d6cc2338999d","testSteps":[{"id":"f3bb9ef6-1252-44ed-ae07-e0a6099dc804","hookId":"a9861fe3-c4ef-419b-88fb-ea664bac4107"},{"id":"f3ed6392-2b8e-4220-b5e4-de2cbdeb24e3","pickleStepId":"eb4edd09-3ddd-404a-b8f4-daa48b766f43","stepDefinitionIds":["a87bb126-e1cc-4956-9d1b-210015126f09"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"3696a13e-1b10-478b-993f-996587cca682","pickleStepId":"b5e851d8-841c-46d0-880e-00ad62450330","stepDefinitionIds":["2b46911e-04b2-4d06-9680-d0a560557e14"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":6,"value":"\"devpod speed\"","children":[{"start":7,"value":"devpod speed","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"7882efa3-8085-4cbf-91a2-6994f233a373","pickleStepId":"492afda6-8e09-4f0e-ba98-78da7e4a1124","stepDefinitionIds":["00cb7a49-98ff-419b-9301-0145c599ea66"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":25,"value":"\"<mission>\"","children":[{"start":26,"value":"<mission>","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"1f9ed9ee-db16-48f2-947e-215732d1a4b0","pickleStepId":"b3fdeeda-97fc-4c51-b96a-9ac8482d081b","stepDefinitionIds":["00cb7a49-98ff-419b-9301-0145c599ea66"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":25,"value":"\"Ship working code quickly (2 hours max but ideally way faster)\"","children":[{"start":26,"value":"Ship working code quickly (2 hours max but ideally way faster)","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"48631ca8-c2c7-4e1a-b4ea-32c1913957b2","pickleStepId":"af7b6a14-5964-4b88-9762-f05f2966180a","stepDefinitionIds":["2b46911e-04b2-4d06-9680-d0a560557e14"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":6,"value":"\"devpod discovery\"","children":[{"start":7,"value":"devpod discovery","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"dc45e671-cdf6-4464-84b0-989596d3b9e0","pickleStepId":"25352dae-aeb3-4ffc-b261-19df68516dff","stepDefinitionIds":["00cb7a49-98ff-419b-9301-0145c599ea66"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":25,"value":"\"Explore multiple approaches to find the best solution\"","children":[{"start":26,"value":"Explore multiple approaches to find the best solution","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"50a150d5-ca7e-4d32-b8fc-101ccfd4ba20","pickleStepId":"4c9476a0-1639-4c90-9739-a8f513d7f6ac","stepDefinitionIds":["2b46911e-04b2-4d06-9680-d0a560557e14"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":6,"value":"\"devpod production\"","children":[{"start":7,"value":"devpod production","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"38da567a-7825-4d6e-ab70-d43081ad0236","pickleStepId":"f1aa91c5-ffb2-4837-a39a-7c028342e2bf","stepDefinitionIds":["00cb7a49-98ff-419b-9301-0145c599ea66"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":25,"value":"\"Build robust, tested, production-ready systems\"","children":[{"start":26,"value":"Build robust, tested, production-ready systems","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"58c26a23-7747-470e-bc25-193f394bc239","pickleStepId":"0d5b6dd0-0a28-46b6-8dce-14678d840850","stepDefinitionIds":["2b46911e-04b2-4d06-9680-d0a560557e14"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":6,"value":"\"devpod recovery\"","children":[{"start":7,"value":"devpod recovery","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"3a59ce0d-dfc7-4559-b353-bae4f3541784","pickleStepId":"73b05d64-8117-4aca-82ec-cebae115ff07","stepDefinitionIds":["00cb7a49-98ff-419b-9301-0145c599ea66"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":25,"value":"\"Restore service and fix issues systematically\"","children":[{"start":26,"value":"Restore service and fix issues systematically","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"cfdf537f-5782-4c93-8386-da3092b0d939","hookId":"c1a86ff3-00f9-489f-999f-9b5a926fd273"}]}},{"testCase":{"pickleId":"57b2c98d-239d-472a-8d9d-9392bf93e623","id":"5b39a01c-2239-4e43-be43-7f1137a40778","testSteps":[{"id":"91d7e504-f48d-4e8f-a543-7b20a5fcdeb4","hookId":"a9861fe3-c4ef-419b-88fb-ea664bac4107"},{"id":"0d919d9d-9751-4c51-8d37-1bfea8ee7c77","pickleStepId":"4c77d36e-f87e-48ad-88b7-0aed3ab00607","stepDefinitionIds":["a87bb126-e1cc-4956-9d1b-210015126f09"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"3bf41368-46f5-444b-bf79-e0d18878dee0","pickleStepId":"d024d646-8e9d-468a-a200-e08ea5d9a511","stepDefinitionIds":["2b46911e-04b2-4d06-9680-d0a560557e14"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":6,"value":"\"devpod generate\"","children":[{"start":7,"value":"devpod generate","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"2c3b4ccd-4382-40a6-b124-ef875c1aeac9","pickleStepId":"36af76ca-6703-496e-9be2-34a8a251cd4a","stepDefinitionIds":["00cb7a49-98ff-419b-9301-0145c599ea66"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":25,"value":"\"<tech_stack>\"","children":[{"start":26,"value":"<tech_stack>","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"d4e90750-0c0c-4dfa-b116-08351fef7e42","pickleStepId":"3c859874-a0ea-4b98-8a3d-39fbcfdc0e5a","stepDefinitionIds":["00cb7a49-98ff-419b-9301-0145c599ea66"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":25,"value":"\"Node.js\"","children":[{"start":26,"value":"Node.js","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"dbb2b893-43a1-41c5-86ca-4f9196453b4f","hookId":"c1a86ff3-00f9-489f-999f-9b5a926fd273"}]}},{"testCase":{"pickleId":"4185b394-067f-4c0c-8d93-3221dd434f15","id":"109a0332-339d-4c76-966f-3c6c5ff615e6","testSteps":[{"id":"7d29869d-821c-4206-b9d6-bea4c145a0f6","hookId":"a9861fe3-c4ef-419b-88fb-ea664bac4107"},{"id":"93beeb7b-ee07-41e3-8ab1-05180874a653","pickleStepId":"9bd60fe1-173b-4ae5-816e-96894bbe510d","stepDefinitionIds":["a87bb126-e1cc-4956-9d1b-210015126f09"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"2d2da0df-7849-4345-8e9d-fc3e8373dfee","pickleStepId":"5dc26e78-7880-49bb-94ca-4f9a7aedc20c","stepDefinitionIds":["5e623210-6de1-4f3f-bf0c-e7c090bcb354"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"e0dcd82b-c43b-414d-96aa-ff7c047d59d5","pickleStepId":"e17a6242-250d-4c83-89cc-c9ded3fc3eb9","stepDefinitionIds":["c75a2971-fac1-4962-a522-97978f3b9cdb"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"1c4c71e6-f56b-4100-9ab8-9108079366c8","pickleStepId":"b3888e67-eb97-439f-935b-4bbf8897d162","stepDefinitionIds":["9163e835-8cbd-43ab-b9cd-9a283067e7fc"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":29,"value":"\"WATCH:\"","children":[{"start":30,"value":"WATCH:","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"3e93e5f5-369e-4e33-9815-9ce27cdc5514","pickleStepId":"5b21093e-11da-4196-91dc-a5ce4c80f8a8","stepDefinitionIds":["a1345136-d779-4165-b66c-b8d61f36bfcb"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":9,"value":"3","children":[]},"parameterTypeName":"int"},{"group":{"start":26,"value":"\"file.naming.constants\"","children":[{"start":27,"value":"file.naming.constants","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"bee21250-aa76-438a-8fc4-ddf887ca9db9","pickleStepId":"e1561a98-3782-4f9e-9904-8d3fb4d468ce","stepDefinitionIds":["c75a2971-fac1-4962-a522-97978f3b9cdb"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"260eeb8b-cc7b-412a-ae92-6f00d8464096","pickleStepId":"0db80ea0-b67f-4bf1-8547-d18fe3cf7b1d","stepDefinitionIds":["00cb7a49-98ff-419b-9301-0145c599ea66"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":25,"value":"\"WATCH:\"","children":[{"start":26,"value":"WATCH:","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"25a8cd2f-0553-43fc-a6d0-af21c88c6d8c","pickleStepId":"afd06771-5cf7-49d9-a96c-04d04b8c8a49","stepDefinitionIds":["00cb7a49-98ff-419b-9301-0145c599ea66"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":25,"value":"\"SCREAMING_SNAKE for constants (3 violations)\"","children":[{"start":26,"value":"SCREAMING_SNAKE for constants (3 violations)","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"04208d63-d4b3-413f-af56-72237d2e37fe","hookId":"c1a86ff3-00f9-489f-999f-9b5a926fd273"}]}},{"testCase":{"pickleId":"59d9c6e8-fc09-49f7-b1de-5e3dd5770bc8","id":"6c27c40d-1947-490e-b632-22a7a2010b17","testSteps":[{"id":"b5bfe850-585e-4a17-b9f4-aff1b02f21a6","hookId":"a9861fe3-c4ef-419b-88fb-ea664bac4107"},{"id":"4fe78796-c150-4972-b403-9bf197ea2376","pickleStepId":"67d502b1-afce-4b63-9f4a-742a0afc603a","stepDefinitionIds":["a87bb126-e1cc-4956-9d1b-210015126f09"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"00dc9d5c-1f55-44f2-a9b3-479cc755b905","pickleStepId":"972c40fa-5e2a-4e85-bc41-db2e2530f421","stepDefinitionIds":["2b46911e-04b2-4d06-9680-d0a560557e14"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":6,"value":"\"devpod speed\"","children":[{"start":7,"value":"devpod speed","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"81dff075-0e66-418f-925e-c6d44c6fb3c8","pickleStepId":"e53052cc-2241-4407-affc-93ef12bad406","stepDefinitionIds":["5e623210-6de1-4f3f-bf0c-e7c090bcb354"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"ee7488df-7c03-4dbb-b171-e1d3595b1095","pickleStepId":"34ab2373-e8fb-4dd2-b95e-4ecefc302e4b","stepDefinitionIds":["c75a2971-fac1-4962-a522-97978f3b9cdb"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"7ef6e391-6119-4540-9608-446f6ee84fc5","pickleStepId":"6123e4f3-c9fe-4786-9724-c86eee73fb66","stepDefinitionIds":["89c022d4-30e4-443f-8d5c-f7ad22baf8c9"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"56cc77c0-5dc7-4b6f-be1c-b33a98af79a3","pickleStepId":"abd8f2cf-c10f-4d0d-90ec-d29cf9525f6a","stepDefinitionIds":["3a2b1054-cb01-4f48-a20f-33c0dcac24ec"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"f588463a-f1fa-49f7-9203-6bae518e393b","hookId":"c1a86ff3-00f9-489f-999f-9b5a926fd273"}]}},{"testCase":{"pickleId":"384b6f67-b055-4f59-a272-f5c6afc373b5","id":"72d9b403-532d-48a2-ae33-947de5617359","testSteps":[{"id":"897cdcba-b07b-467a-a794-57fc81d7fb1c","hookId":"a9861fe3-c4ef-419b-88fb-ea664bac4107"},{"id":"4b3ddd88-982a-459d-866c-6c383f10aa45","pickleStepId":"e4ede061-747d-47be-adb9-bb28c6a04f17","stepDefinitionIds":["a87bb126-e1cc-4956-9d1b-210015126f09"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"896ed9c1-6abe-4d69-aaf7-c9f78c78aee2","pickleStepId":"ace85f1d-285f-4b91-8c70-a5a014ec8a97","stepDefinitionIds":["a1345136-d779-4165-b66c-b8d61f36bfcb"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":9,"value":"3","children":[]},"parameterTypeName":"int"},{"group":{"start":26,"value":"\"file.naming.constants\"","children":[{"start":27,"value":"file.naming.constants","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"46d202c2-9fba-4e12-a52a-bc9802cd6771","pickleStepId":"bf610048-c57f-419f-a3a3-94b41bbfb5da","stepDefinitionIds":["2b46911e-04b2-4d06-9680-d0a560557e14"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":6,"value":"\"devpod generate\"","children":[{"start":7,"value":"devpod generate","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"e99d30be-ea51-4901-b9ad-5dc8870e1cf1","pickleStepId":"321cf684-6c2d-4cb6-b73d-7e6089cbd08f","stepDefinitionIds":["00cb7a49-98ff-419b-9301-0145c599ea66"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":25,"value":"\"WATCH:\"","children":[{"start":26,"value":"WATCH:","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"10580584-64d3-4985-8749-048687889ed5","pickleStepId":"f8bdb33b-6753-4191-b6f4-29c8816de195","stepDefinitionIds":["00cb7a49-98ff-419b-9301-0145c599ea66"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":25,"value":"\"SCREAMING_SNAKE for constants (3 violations)\"","children":[{"start":26,"value":"SCREAMING_SNAKE for constants (3 violations)","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"49fbec85-8ad4-4ba0-a9cd-ca983f74cf8d","hookId":"c1a86ff3-00f9-489f-999f-9b5a926fd273"}]}},{"testCase":{"pickleId":"9681be1c-4018-496c-8798-a8e197ac50e7","id":"992632b2-f6f2-462c-aa53-a253f99ced03","testSteps":[{"id":"83306afc-7ed2-4474-9709-8702c9ca153a","hookId":"a9861fe3-c4ef-419b-88fb-ea664bac4107"},{"id":"4528887e-cb58-4014-b630-9ee2af908d53","pickleStepId":"589ecf0d-42ae-4378-84ab-acd02ea2d836","stepDefinitionIds":["a87bb126-e1cc-4956-9d1b-210015126f09"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"32dd2f47-9464-4e73-847f-5a9233e7ef8b","pickleStepId":"ed859759-d15d-4639-a484-142f5c141003","stepDefinitionIds":["6771af8f-ad37-4ad1-a884-611e2494be0a"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":15,"value":"3","children":[]},"parameterTypeName":"int"}]}]},{"id":"6f9d2ee6-016b-4b28-87d2-b40531f5d827","pickleStepId":"e24caa34-5779-47ab-9412-624722d50105","stepDefinitionIds":["2b46911e-04b2-4d06-9680-d0a560557e14"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":6,"value":"\"devpod generate\"","children":[{"start":7,"value":"devpod generate","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"d5a345a0-c8e2-4e34-a367-d7e7dafb7b97","pickleStepId":"f0fe552b-b9b1-4e6e-91f3-ef3e24b92836","stepDefinitionIds":["469046d1-3ce7-4a69-8862-360049af7403"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":20,"value":"stage","children":[]},"parameterTypeName":"word"},{"group":{"start":36,"value":"\"starting\"","children":[{"start":37,"value":"starting","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"19a11344-0edf-44ba-8c0d-8d968bef086a","pickleStepId":"4aa212c4-f4b9-4e47-8797-9ce72a61dbb2","stepDefinitionIds":["0fa63580-31ed-4928-a3dd-fb41d5aad960"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":9,"value":"10","children":[]},"parameterTypeName":"int"}]}]},{"id":"12de301a-dd70-4be4-b017-a379ba2e1a76","pickleStepId":"649af61b-795d-44fc-8542-9e527a27f1a6","stepDefinitionIds":["2b46911e-04b2-4d06-9680-d0a560557e14"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":6,"value":"\"devpod generate\"","children":[{"start":7,"value":"devpod generate","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"c99916dc-8300-4348-80a5-d0e8d10decfd","pickleStepId":"0eb7e5d4-f72b-411f-b5e6-360b0c266421","stepDefinitionIds":["469046d1-3ce7-4a69-8862-360049af7403"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":20,"value":"stage","children":[]},"parameterTypeName":"word"},{"group":{"start":36,"value":"\"growing\"","children":[{"start":37,"value":"growing","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"c6c962a7-6c10-4d18-8326-135d7402186d","pickleStepId":"b25b8671-0e4d-4fd1-bff3-f014a4138eb3","stepDefinitionIds":["f0d511dd-ed1e-4e4f-9bea-f6cb90abcabb"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":13,"value":"\"📊 Auto-detected stage change: starting → growing\"","children":[{"start":14,"value":"📊 Auto-detected stage change: starting → growing","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"bdeb81f3-cf35-4b1b-8a81-ad1d952a7d3a","hookId":"c1a86ff3-00f9-489f-999f-9b5a926fd273"}]}},{"testCase":{"pickleId":"67f8a42a-014f-4fa8-8c03-b8e12ef28c83","id":"a9ed319f-4da3-4822-a261-b4e84fd413b6","testSteps":[{"id":"f02a5f3b-ee27-42c0-8a5f-84355c9b7f1a","hookId":"a9861fe3-c4ef-419b-88fb-ea664bac4107"},{"id":"df65895e-5dfc-49cb-b829-502d0fb8ad94","pickleStepId":"cdfa67bd-25b5-43f3-88ae-df0dc6fac0fb","stepDefinitionIds":["a87bb126-e1cc-4956-9d1b-210015126f09"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"02bf866c-48b1-45f7-b5bf-bfd315318833","pickleStepId":"d63c5447-85dc-4a0f-9cf0-06f1353b09e3","stepDefinitionIds":["66f72db3-8500-4959-97f4-6ccfe069f3a3"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"e619580e-b5cc-40a3-a033-6d289e9f039f","pickleStepId":"e519e183-88df-4b3d-8005-a1cfae71b3fa","stepDefinitionIds":["2b46911e-04b2-4d06-9680-d0a560557e14"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":6,"value":"\"devpod generate\"","children":[{"start":7,"value":"devpod generate","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"d3f01967-7f76-4471-8df1-1ded625f7357","pickleStepId":"c675c802-12fd-46f3-946e-99e818187e1b","stepDefinitionIds":["469046d1-3ce7-4a69-8862-360049af7403"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":20,"value":"stage","children":[]},"parameterTypeName":"word"},{"group":{"start":36,"value":"\"growing\"","children":[{"start":37,"value":"growing","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"b26b2629-4a35-4257-8897-da7e723a1f35","pickleStepId":"fcf01da2-4279-4981-98e6-dbd07b2c4af2","stepDefinitionIds":["be3c4594-db72-4648-bd2f-39f3b2dba1cd"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"82ead0c8-5365-4cff-8068-9c66f91fcb4f","pickleStepId":"495dda46-a574-45d8-a721-55d094da8fc1","stepDefinitionIds":["2b46911e-04b2-4d06-9680-d0a560557e14"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":6,"value":"\"devpod generate\"","children":[{"start":7,"value":"devpod generate","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"2861d790-1b53-4b75-a0a3-1ee7da3c211f","pickleStepId":"b6963104-6d59-4157-9893-24f49671ad57","stepDefinitionIds":["469046d1-3ce7-4a69-8862-360049af7403"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":20,"value":"stage","children":[]},"parameterTypeName":"word"},{"group":{"start":36,"value":"\"growing\"","children":[{"start":37,"value":"growing","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"711f073f-8e12-4b96-b72d-a0ae8dc026af","hookId":"c1a86ff3-00f9-489f-999f-9b5a926fd273"}]}},{"testCase":{"pickleId":"28482d7d-3d31-495c-a700-19a01b988a6d","id":"217d663b-55f7-41e4-a78c-c35d32a7bc98","testSteps":[{"id":"3f73de0d-453d-49a3-97b3-0439f5eec0a7","hookId":"a9861fe3-c4ef-419b-88fb-ea664bac4107"},{"id":"98ab5b97-c0b8-40ed-8ba9-799c23858910","pickleStepId":"fe693c86-7e36-4d82-bab2-d4bac6535eba","stepDefinitionIds":["a87bb126-e1cc-4956-9d1b-210015126f09"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"eb7b8464-a3a0-4277-b0ba-5e5962aeea1b","pickleStepId":"12ec45e5-2c94-4662-8f74-c1a66c6eb6f0","stepDefinitionIds":["6771af8f-ad37-4ad1-a884-611e2494be0a"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":15,"value":"3","children":[]},"parameterTypeName":"int"}]}]},{"id":"4d9a2776-4842-4ec0-9935-0698d082bb81","pickleStepId":"89332b20-91ce-4a43-b4f3-12abfeee990f","stepDefinitionIds":["2b46911e-04b2-4d06-9680-d0a560557e14"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":6,"value":"\"devpod stage mature\"","children":[{"start":7,"value":"devpod stage mature","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"88c14565-3aeb-4808-89ff-ea034aea27ea","pickleStepId":"0118dcc8-6845-4fdd-aad0-8317f5fab775","stepDefinitionIds":["469046d1-3ce7-4a69-8862-360049af7403"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":20,"value":"stage","children":[]},"parameterTypeName":"word"},{"group":{"start":36,"value":"\"mature\"","children":[{"start":37,"value":"mature","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"520ec73a-4614-4c4b-a2e5-dbaeef1c58d7","pickleStepId":"ed7b5fd8-f02f-4ab3-a2d9-e2d99563ff49","stepDefinitionIds":["2b46911e-04b2-4d06-9680-d0a560557e14"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":6,"value":"\"devpod generate\"","children":[{"start":7,"value":"devpod generate","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"4f930d8b-f8da-4f57-953e-41b1f3f39205","pickleStepId":"eabe0596-9621-44a8-8159-fbae2025090b","stepDefinitionIds":["469046d1-3ce7-4a69-8862-360049af7403"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":20,"value":"stage","children":[]},"parameterTypeName":"word"},{"group":{"start":36,"value":"\"mature\"","children":[{"start":37,"value":"mature","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"ba716620-3c4d-40b1-af90-04ba6ebc57a1","pickleStepId":"9c70d356-8b80-415c-8a84-c015993970df","stepDefinitionIds":["0195b027-dccd-4663-a589-f34eaa3abcea"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":17,"value":"\"📊 Auto-detected stage change\"","children":[{"start":18,"value":"📊 Auto-detected stage change","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"476bd1e0-64a4-4ff0-a1ab-0c102d51aa44","hookId":"c1a86ff3-00f9-489f-999f-9b5a926fd273"}]}},{"testCase":{"pickleId":"2beddf93-281f-4920-ac90-a873297df2ca","id":"fa6bbb3f-11fa-43bb-b653-6c5ba5402e98","testSteps":[{"id":"71c280a8-77cd-4125-8405-b1306cb6a0b3","hookId":"a9861fe3-c4ef-419b-88fb-ea664bac4107"},{"id":"7e2a87a6-7be7-41dd-b8e3-163ad71d3292","pickleStepId":"33f86ea5-239e-4178-ab30-76c042a3815b","stepDefinitionIds":["a87bb126-e1cc-4956-9d1b-210015126f09"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"d6b2e7ec-42d1-4e26-9add-12e046004e95","pickleStepId":"d0cf4366-cb4f-4486-8b6e-e38d2b8fee86","stepDefinitionIds":["6771af8f-ad37-4ad1-a884-611e2494be0a"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":15,"value":"15","children":[]},"parameterTypeName":"int"}]}]},{"id":"ee376e1e-86b8-4157-ace9-225654a7bd8c","pickleStepId":"330896d2-1a09-4c00-9356-bec1a8f3cd26","stepDefinitionIds":["2b46911e-04b2-4d06-9680-d0a560557e14"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":6,"value":"\"devpod stage auto\"","children":[{"start":7,"value":"devpod stage auto","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"727c3910-c08d-4292-82c9-2dcce7810e09","pickleStepId":"42085e68-1707-4498-9901-f0532ffa4e9a","stepDefinitionIds":["469046d1-3ce7-4a69-8862-360049af7403"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":20,"value":"stage","children":[]},"parameterTypeName":"word"},{"group":{"start":36,"value":"\"growing\"","children":[{"start":37,"value":"growing","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"c5dda31a-a6f2-4d35-b0a1-159f8572b2f1","pickleStepId":"3a870e6d-bf24-48af-b5f9-8135869b54e6","stepDefinitionIds":["f0d511dd-ed1e-4e4f-9bea-f6cb90abcabb"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":13,"value":"\"✅ Stage auto-detected as growing\"","children":[{"start":14,"value":"✅ Stage auto-detected as growing","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"ea83d152-9faa-4f70-86ce-0c9ee209e5fb","hookId":"c1a86ff3-00f9-489f-999f-9b5a926fd273"}]}},{"testCase":{"pickleId":"556f0a0e-8baf-4338-88e1-eb2e2ce9624e","id":"511ed05d-fa01-4d29-be77-1d05eca95163","testSteps":[{"id":"1ddb5dcf-c163-4578-8725-afb3c1853e13","hookId":"a9861fe3-c4ef-419b-88fb-ea664bac4107"},{"id":"9064cfae-898b-4959-a99d-fc0f70a878e2","pickleStepId":"95814f30-34cc-40e0-9958-b17f4023ffe9","stepDefinitionIds":["a87bb126-e1cc-4956-9d1b-210015126f09"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"c5fcacb1-da08-4c39-9e2a-7b46983a243e","pickleStepId":"3f1a34db-f498-40ea-b631-fd348a021e7a","stepDefinitionIds":["de12f5ed-110c-446b-87d6-e39a1b34e0d8"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"0abe7fac-5d8f-45dd-9c21-173a0bda190d","pickleStepId":"cbe33898-19d7-49be-b505-42d5809f4dae","stepDefinitionIds":["ffd82b4f-d8b0-497c-99e4-714ef835eb19"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":15,"value":"2","children":[]},"parameterTypeName":"int"}]}]},{"id":"00f8521f-42ed-4733-985f-c689f1c7f04b","pickleStepId":"acfbb539-fd40-4bb1-acd4-cde51ec7affd","stepDefinitionIds":["2b46911e-04b2-4d06-9680-d0a560557e14"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":6,"value":"\"devpod generate\"","children":[{"start":7,"value":"devpod generate","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"1643efcd-cddd-48a9-9e90-36f3872ff7d2","pickleStepId":"0a298aac-7438-4616-a3af-d2864b9c268c","stepDefinitionIds":["469046d1-3ce7-4a69-8862-360049af7403"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":20,"value":"stage","children":[]},"parameterTypeName":"word"},{"group":{"start":36,"value":"\"starting\"","children":[{"start":37,"value":"starting","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"413f7a8a-ba42-4b3e-a846-5a6a074e888b","hookId":"c1a86ff3-00f9-489f-999f-9b5a926fd273"}]}},{"testCase":{"pickleId":"f356b4ec-496b-4e4c-a01b-0e94bdaf43f7","id":"47dbb328-9f17-4dc3-a50a-abb062e17210","testSteps":[{"id":"6f4c632e-6de0-42d1-ad32-2eef155188c3","hookId":"a9861fe3-c4ef-419b-88fb-ea664bac4107"},{"id":"9c91ba9b-fadb-4b16-b2d6-aac95b8458bd","pickleStepId":"dadf1bc4-8275-49c4-b3db-996edc646e05","stepDefinitionIds":["a87bb126-e1cc-4956-9d1b-210015126f09"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"dc41724a-0b04-448c-ad7a-1c199cac6d4e","pickleStepId":"aeaa538b-9ff0-43cd-a379-dd905a092ac3","stepDefinitionIds":["01fa34cc-c91c-472c-bd89-501a4d28a4f1"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"23fb5c99-1f50-4f8c-ae02-585945ada80d","pickleStepId":"958732df-5109-487f-a577-f6cd920fb6fb","stepDefinitionIds":["2b46911e-04b2-4d06-9680-d0a560557e14"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":6,"value":"\"devpod init\"","children":[{"start":7,"value":"devpod init","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"c15e05c3-ce5e-465f-ac50-6bd0184e79b6","pickleStepId":"fcdcd986-068b-45d9-8af4-59905f4bd713","stepDefinitionIds":["469046d1-3ce7-4a69-8862-360049af7403"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":20,"value":"stage","children":[]},"parameterTypeName":"word"},{"group":{"start":36,"value":"\"starting\"","children":[{"start":37,"value":"starting","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"d85d3117-8fcb-4c0e-a4b6-32b23891c3c1","pickleStepId":"c2a00ba9-37d8-4810-b80e-4f2f7acfc5f4","stepDefinitionIds":["29d7ea8c-675e-4c3c-811f-13109f70cd77"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":9,"value":"2","children":[]},"parameterTypeName":"int"}]}]},{"id":"40ef38b1-37b0-490f-a711-05c8ae1c2e70","pickleStepId":"402c5aab-06f1-4723-a313-4557e09f4240","stepDefinitionIds":["2b46911e-04b2-4d06-9680-d0a560557e14"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":6,"value":"\"devpod generate\"","children":[{"start":7,"value":"devpod generate","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"b129cf64-3bae-4f63-849c-4ee1af1df494","pickleStepId":"dd1110a6-4368-40de-9c5e-33487502b561","stepDefinitionIds":["469046d1-3ce7-4a69-8862-360049af7403"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":20,"value":"stage","children":[]},"parameterTypeName":"word"},{"group":{"start":36,"value":"\"growing\"","children":[{"start":37,"value":"growing","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"c45a7c49-9e9d-41da-85ad-cc680fcf25ee","pickleStepId":"ae9ed550-a18b-4266-a3e8-2ea15425e48c","stepDefinitionIds":["0fa63580-31ed-4928-a3dd-fb41d5aad960"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":9,"value":"18","children":[]},"parameterTypeName":"int"}]}]},{"id":"ede4d3d7-b265-4406-9287-38e1f94dab05","pickleStepId":"c162cdee-da7b-443a-b9e1-95963a02d5ad","stepDefinitionIds":["2b46911e-04b2-4d06-9680-d0a560557e14"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":6,"value":"\"devpod generate\"","children":[{"start":7,"value":"devpod generate","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"d29c3016-27d3-42ea-ab80-a6f0f8c231a0","pickleStepId":"376c3696-0c11-4b21-b55d-63a3cb8594c2","stepDefinitionIds":["469046d1-3ce7-4a69-8862-360049af7403"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":20,"value":"stage","children":[]},"parameterTypeName":"word"},{"group":{"start":36,"value":"\"mature\"","children":[{"start":37,"value":"mature","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"0c6d8064-105c-4635-8eb1-c7b73f02516f","pickleStepId":"d220b8d3-b935-43b6-943c-613046bdce7e","stepDefinitionIds":["0fa63580-31ed-4928-a3dd-fb41d5aad960"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":9,"value":"75","children":[]},"parameterTypeName":"int"}]}]},{"id":"376f2976-1b32-4ec5-82de-a85efbff4a66","pickleStepId":"825eaa73-3d1e-4e1d-8985-e5717ca3956e","stepDefinitionIds":["2b46911e-04b2-4d06-9680-d0a560557e14"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":6,"value":"\"devpod generate\"","children":[{"start":7,"value":"devpod generate","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"bbe33c87-4f80-4dce-ae4d-a2ce8b959cb7","pickleStepId":"86aab806-885b-4bf2-8ce4-1e8a9880bc8c","stepDefinitionIds":["469046d1-3ce7-4a69-8862-360049af7403"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":20,"value":"stage","children":[]},"parameterTypeName":"word"},{"group":{"start":36,"value":"\"production\"","children":[{"start":37,"value":"production","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"42f2ca60-6812-4a75-8101-27d647eab130","hookId":"c1a86ff3-00f9-489f-999f-9b5a926fd273"}]}},{"testCase":{"pickleId":"57eb411e-96c5-4ecb-b752-9285c26d84a4","id":"8475d79e-af2a-48ea-adfc-6da10b678331","testSteps":[{"id":"17734593-d6ff-4745-a656-c86f21f93ff5","hookId":"a9861fe3-c4ef-419b-88fb-ea664bac4107"},{"id":"af3cf452-23a7-4514-86f8-6707ab50eeca","pickleStepId":"7538c69a-2c5e-44a2-9e41-255718af2a5a","stepDefinitionIds":["a87bb126-e1cc-4956-9d1b-210015126f09"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"1f1d14b7-8705-44cd-b9a1-cda66ade7f4b","pickleStepId":"02181a5c-cd06-4119-b938-e05a9e4ccdde","stepDefinitionIds":["538caa21-5413-4796-8ffd-cbcea2b22afe"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"09dbce9a-3931-4f03-aec1-798a611b27e5","pickleStepId":"8cf54fc3-466c-49e0-8a68-03cd69286f6b","stepDefinitionIds":["2b46911e-04b2-4d06-9680-d0a560557e14"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":6,"value":"\"devpod generate\"","children":[{"start":7,"value":"devpod generate","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"56aced2e-c81e-40df-9f81-ea5e0d93d778","pickleStepId":"bf556ed8-e75a-410a-b29a-e93f4a029915","stepDefinitionIds":["469046d1-3ce7-4a69-8862-360049af7403"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":20,"value":"stage","children":[]},"parameterTypeName":"word"},{"group":{"start":36,"value":"\"growing\"","children":[{"start":37,"value":"growing","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"aef73c2e-3116-4d96-9244-81671bb46f96","hookId":"c1a86ff3-00f9-489f-999f-9b5a926fd273"}]}},{"testCase":{"pickleId":"8f32aa5c-b4c3-4998-b660-9535fe49f9ee","id":"cff405db-de0f-43b3-a87d-ad002c7e2f85","testSteps":[{"id":"5913b926-8ab3-4552-b6c4-fc56c9c08573","hookId":"a9861fe3-c4ef-419b-88fb-ea664bac4107"},{"id":"6dffa023-9c78-4cca-88c8-9bc9ff714981","pickleStepId":"3cce3c96-f154-472c-bd42-5ba559ade024","stepDefinitionIds":["a87bb126-e1cc-4956-9d1b-210015126f09"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"aa0c2f01-5b7f-462f-aad2-cd2a4306a585","pickleStepId":"cfb5b5b4-2b62-485b-8902-2091658b5b56","stepDefinitionIds":["6771af8f-ad37-4ad1-a884-611e2494be0a"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":15,"value":"2","children":[]},"parameterTypeName":"int"}]}]},{"id":"0fa9ab41-72da-4b00-8e69-f369d8ef296f","pickleStepId":"d139e6e0-57f5-41b0-9ae9-2efbf08dccc3","stepDefinitionIds":["2b46911e-04b2-4d06-9680-d0a560557e14"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":6,"value":"\"devpod generate\"","children":[{"start":7,"value":"devpod generate","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"15f4a39a-ed33-4c90-a848-9a787726ae9d","pickleStepId":"57818ba3-21cf-4ae8-9d80-1f4c4beb2f2a","stepDefinitionIds":["469046d1-3ce7-4a69-8862-360049af7403"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":20,"value":"stage","children":[]},"parameterTypeName":"word"},{"group":{"start":36,"value":"\"starting\"","children":[{"start":37,"value":"starting","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"f316b6f1-0e9c-4216-b9e8-9a98c1799fa7","pickleStepId":"8136f5e5-c64e-461f-a1d3-8af41bcc35cd","stepDefinitionIds":[],"stepMatchArgumentsLists":[]},{"id":"392394b2-f360-4b24-b8ef-0554397487a3","pickleStepId":"54071407-025d-4d5c-850d-5b8f173f92f0","stepDefinitionIds":["0fa63580-31ed-4928-a3dd-fb41d5aad960"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":9,"value":"25","children":[]},"parameterTypeName":"int"}]}]},{"id":"78d08da2-907a-479c-ad4a-9b535ac30cff","pickleStepId":"9efe6aa5-200e-4229-b91a-cdc97e9c9f62","stepDefinitionIds":["2b46911e-04b2-4d06-9680-d0a560557e14"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":6,"value":"\"devpod generate\"","children":[{"start":7,"value":"devpod generate","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"c68b29a8-48f2-4c17-856a-1c9255a24801","pickleStepId":"f7ae4090-761a-44d6-b3e0-33057783e6e9","stepDefinitionIds":["469046d1-3ce7-4a69-8862-360049af7403"],"stepMatchArgumentsLists":[{"stepMatchArguments":[{"group":{"start":20,"value":"stage","children":[]},"parameterTypeName":"word"},{"group":{"start":36,"value":"\"mature\"","children":[{"start":37,"value":"mature","children":[{"children":[]}]},{"children":[{"children":[]}]}]},"parameterTypeName":"string"}]}]},{"id":"a1df1b50-bdea-4ee9-93eb-90fe951dc632","pickleStepId":"b914aff1-1bdf-4dd6-b5be-2bdb3eb5463c","stepDefinitionIds":[],"stepMatchArgumentsLists":[]},{"id":"52b8a48a-5f80-45e0-9b03-1fbd14ff030b","hookId":"c1a86ff3-00f9-489f-999f-9b5a926fd273"}]}},{"testCase":{"pickleId":"a18a8835-cdb4-48da-8412-eda14cd80be6","id":"3714836c-3772-4ba3-a567-aead8f841d88","testSteps":[{"id":"72c71899-53c1-4214-ade5-18f335ab0c78","hookId":"a9861fe3-c4ef-419b-88fb-ea664bac4107"},{"id":"53b15f54-03e0-4d14-9075-83d7e860b172","pickleStepId":"00c952ac-3488-4b4b-871d-5774bf9d359e","stepDefinitionIds":["c8c91016-f23d-4555-bc7c-91dbe6d2fc4c"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"c3e2cadc-db23-447d-acb2-c9a85a297fcf","pickleStepId":"133af214-0705-4492-9480-cc7d3dbbcf1a","stepDefinitionIds":["8b257429-7859-4aeb-984c-7ffa0e22a94d"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"99bb3fb8-450e-4119-bfbe-471b564604a3","pickleStepId":"20c13907-ccbb-4e2c-8859-cb43d4c2d615","stepDefinitionIds":["6956b5eb-37dd-4c52-92c4-c5682c542173"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"b975a199-7186-4979-a4ee-d260c287ccb8","pickleStepId":"62a65f01-0859-4ce3-98fc-5ddeb6aa43d0","stepDefinitionIds":["699aee39-0566-4812-9c8c-0f7661c28e07"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"d307aa0f-3ba9-496c-80f7-43fe058f9a22","hookId":"c1a86ff3-00f9-489f-999f-9b5a926fd273"}]}},{"testCase":{"pickleId":"d4ad56b1-5ce3-4d62-a0dd-2e1b30453c68","id":"bce01079-052b-4b39-a434-d18f882dc8e6","testSteps":[{"id":"65f9f2f9-b22e-4b8d-bc0b-6430406e6747","hookId":"a9861fe3-c4ef-419b-88fb-ea664bac4107"},{"id":"2bda9ed3-b811-4252-920e-f196856e0f57","pickleStepId":"8cd999d5-ff3f-46d0-9540-e7158b758c26","stepDefinitionIds":["6076915f-c264-4da5-b108-124f4d75326d"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"ba9029ff-7d8a-41fe-9d26-d657b7b70854","pickleStepId":"0a4c397a-d4e8-4ef9-b11c-62000887ca7f","stepDefinitionIds":["1a05569f-b53a-49e9-8862-a543265f058c"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"3686d712-cdfe-4a16-a8c2-0058dfdeba9c","pickleStepId":"11a38d06-9db7-408c-b79f-4d05bda8a8c7","stepDefinitionIds":["081b03d2-145b-42c8-bcab-0d09f4e3c220"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"ab2f6968-461f-4252-b5ae-d007d7c43aa6","pickleStepId":"95a7ff26-e57b-4a0d-889c-e69c9481698f","stepDefinitionIds":["00bf7822-cf2d-41c0-a291-fcf6c19e3588"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"024582ae-4ba9-4cb9-9191-fb57f2f35c15","hookId":"c1a86ff3-00f9-489f-999f-9b5a926fd273"}]}},{"testCase":{"pickleId":"2a0d8d08-9659-4d39-9dd7-754f408437c6","id":"bed8a3c1-e65b-4d80-8c12-8d62f6aba0bc","testSteps":[{"id":"09bff781-24b0-4cd5-a9d8-71f5ac7956b6","hookId":"a9861fe3-c4ef-419b-88fb-ea664bac4107"},{"id":"5e1a5cc7-1a9b-4a13-b13e-edc215032c54","pickleStepId":"c45cae91-3828-4421-b567-1d76657ba5e2","stepDefinitionIds":["96637a77-b634-4a63-bdbe-9c2b8579a882"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"0e3b77bc-2e93-4996-8d3a-425714d5ea98","pickleStepId":"cfb06cff-4ab6-4c30-ad5b-61800c5f8167","stepDefinitionIds":["64defe19-88dd-48e2-a030-b6cca4c478c7"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"629767f9-caca-40f8-b050-aeaecfe4868d","pickleStepId":"3acbd65a-fa1f-45ec-8366-619d3cad984c","stepDefinitionIds":["081b03d2-145b-42c8-bcab-0d09f4e3c220"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"f37146e4-4f79-4477-b4c4-e3ebd036c2d7","pickleStepId":"637dd5d1-3719-47f4-9147-85d205c5644a","stepDefinitionIds":["00bf7822-cf2d-41c0-a291-fcf6c19e3588"],"stepMatchArgumentsLists":[{"stepMatchArguments":[]}]},{"id":"4b82568c-0aa6-44e5-a448-0886b325070a","hookId":"c1a86ff3-00f9-489f-999f-9b5a926fd273"}]}},{"testCaseStarted":{"attempt":0,"testCaseId":"d4b0782d-0dc4-48e7-ac84-2e049a7fbd4d","id":"ce1dcf71-e713-4ec4-b964-66ba5c0c00f8","timestamp":{"seconds":1757374011,"nanos":321000000}}},{"testStepStarted":{"testCaseStartedId":"ce1dcf71-e713-4ec4-b964-66ba5c0c00f8","testStepId":"636a9edb-db1b-4e8b-81b9-cc0adfa7cc89","timestamp":{"seconds":1757374011,"nanos":321000000}}},{"testStepFinished":{"testCaseStartedId":"ce1dcf71-e713-4ec4-b964-66ba5c0c00f8","testStepId":"636a9edb-db1b-4e8b-81b9-cc0adfa7cc89","testStepResult":{"duration":{"seconds":0,"nanos":2591702},"status":"PASSED"},"timestamp":{"seconds":1757374011,"nanos":324000000}}},{"testStepStarted":{"testCaseStartedId":"ce1dcf71-e713-4ec4-b964-66ba5c0c00f8","testStepId":"388a95ec-86b0-4530-86b0-ed9639b92051","timestamp":{"seconds":1757374011,"nanos":325000000}}},{"testStepFinished":{"testCaseStartedId":"ce1dcf71-e713-4ec4-b964-66ba5c0c00f8","testStepId":"388a95ec-86b0-4530-86b0-ed9639b92051","testStepResult":{"duration":{"seconds":0,"nanos":2584990},"status":"PASSED"},"timestamp":{"seconds":1757374011,"nanos":328000000}}},{"testStepStarted":{"testCaseStartedId":"ce1dcf71-e713-4ec4-b964-66ba5c0c00f8","testStepId":"aaffe01a-0a9b-45ae-a412-332d76f5b57c","timestamp":{"seconds":1757374011,"nanos":328000000}}},{"testStepFinished":{"testCaseStartedId":"ce1dcf71-e713-4ec4-b964-66ba5c0c00f8","testStepId":"aaffe01a-0a9b-45ae-a412-332d76f5b57c","testStepResult":{"duration":{"seconds":0,"nanos":111793338},"status":"PASSED"},"timestamp":{"seconds":1757374011,"nanos":440000000}}},{"testStepStarted":{"testCaseStartedId":"ce1dcf71-e713-4ec4-b964-66ba5c0c00f8","testStepId":"f14acfbd-0e29-40f4-9604-b997c562b0d2","timestamp":{"seconds":1757374011,"nanos":440000000}}},{"testStepFinished":{"testCaseStartedId":"ce1dcf71-e713-4ec4-b964-66ba5c0c00f8","testStepId":"f14acfbd-0e29-40f4-9604-b997c562b0d2","testStepResult":{"duration":{"seconds":0,"nanos":935331},"status":"PASSED"},"timestamp":{"seconds":1757374011,"nanos":441000000}}},{"testStepStarted":{"testCaseStartedId":"ce1dcf71-e713-4ec4-b964-66ba5c0c00f8","testStepId":"44e0c001-8e9c-4310-b566-c6d0c0961c4e","timestamp":{"seconds":1757374011,"nanos":442000000}}},{"testStepFinished":{"testCaseStartedId":"ce1dcf71-e713-4ec4-b964-66ba5c0c00f8","testStepId":"44e0c001-8e9c-4310-b566-c6d0c0961c4e","testStepResult":{"duration":{"seconds":0,"nanos":997623},"status":"PASSED"},"timestamp":{"seconds":1757374011,"nanos":443000000}}},{"testStepStarted":{"testCaseStartedId":"ce1dcf71-e713-4ec4-b964-66ba5c0c00f8","testStepId":"678e9e17-d827-49e2-8c01-1065992faa50","timestamp":{"seconds":1757374011,"nanos":443000000}}},{"testStepFinished":{"testCaseStartedId":"ce1dcf71-e713-4ec4-b964-66ba5c0c00f8","testStepId":"678e9e17-d827-49e2-8c01-1065992faa50","testStepResult":{"duration":{"seconds":0,"nanos":965865},"status":"PASSED"},"timestamp":{"seconds":1757374011,"nanos":444000000}}},{"testStepStarted":{"testCaseStartedId":"ce1dcf71-e713-4ec4-b964-66ba5c0c00f8","testStepId":"7feb9703-90fb-4f31-9a12-5f6becd9c58f","timestamp":{"seconds":1757374011,"nanos":444000000}}},{"testStepFinished":{"testCaseStartedId":"ce1dcf71-e713-4ec4-b964-66ba5c0c00f8","testStepId":"7feb9703-90fb-4f31-9a12-5f6becd9c58f","testStepResult":{"duration":{"seconds":0,"nanos":906186},"status":"PASSED"},"timestamp":{"seconds":1757374011,"nanos":445000000}}},{"testCaseFinished":{"testCaseStartedId":"ce1dcf71-e713-4ec4-b964-66ba5c0c00f8","timestamp":{"seconds":1757374011,"nanos":445000000},"willBeRetried":false}},{"testCaseStarted":{"attempt":0,"testCaseId":"f73f7442-d0af-479a-ac61-dc3461bc4fcd","id":"a7fb7a36-a981-46ed-921b-36eb9d047bb7","timestamp":{"seconds":1757374011,"nanos":445000000}}},{"testStepStarted":{"testCaseStartedId":"a7fb7a36-a981-46ed-921b-36eb9d047bb7","testStepId":"e5c2b109-8cb8-4b04-8e44-c45b279ed08a","timestamp":{"seconds":1757374011,"nanos":445000000}}},{"testStepFinished":{"testCaseStartedId":"a7fb7a36-a981-46ed-921b-36eb9d047bb7","testStepId":"e5c2b109-8cb8-4b04-8e44-c45b279ed08a","testStepResult":{"duration":{"seconds":0,"nanos":300817},"status":"PASSED"},"timestamp":{"seconds":1757374011,"nanos":446000000}}},{"testStepStarted":{"testCaseStartedId":"a7fb7a36-a981-46ed-921b-36eb9d047bb7","testStepId":"ab7a5603-4782-4910-97af-bfdb8118ae66","timestamp":{"seconds":1757374011,"nanos":446000000}}},{"testStepFinished":{"testCaseStartedId":"a7fb7a36-a981-46ed-921b-36eb9d047bb7","testStepId":"ab7a5603-4782-4910-97af-bfdb8118ae66","testStepResult":{"duration":{"seconds":0,"nanos":7806245},"status":"PASSED"},"timestamp":{"seconds":1757374011,"nanos":454000000}}},{"testStepStarted":{"testCaseStartedId":"a7fb7a36-a981-46ed-921b-36eb9d047bb7","testStepId":"a4c93bbc-d10d-4a4b-8a3e-10b2b7a4e243","timestamp":{"seconds":1757374011,"nanos":454000000}}},{"testStepFinished":{"testCaseStartedId":"a7fb7a36-a981-46ed-921b-36eb9d047bb7","testStepId":"a4c93bbc-d10d-4a4b-8a3e-10b2b7a4e243","testStepResult":{"duration":{"seconds":0,"nanos":109908487},"status":"PASSED"},"timestamp":{"seconds":1757374011,"nanos":564000000}}},{"testStepStarted":{"testCaseStartedId":"a7fb7a36-a981-46ed-921b-36eb9d047bb7","testStepId":"7bf94107-9083-4129-853c-f29ca7b6ee73","timestamp":{"seconds":1757374011,"nanos":564000000}}},{"testStepFinished":{"testCaseStartedId":"a7fb7a36-a981-46ed-921b-36eb9d047bb7","testStepId":"7bf94107-9083-4129-853c-f29ca7b6ee73","testStepResult":{"duration":{"seconds":0,"nanos":661276},"status":"PASSED"},"timestamp":{"seconds":1757374011,"nanos":565000000}}},{"testStepStarted":{"testCaseStartedId":"a7fb7a36-a981-46ed-921b-36eb9d047bb7","testStepId":"b82c91f0-c12a-4950-9484-8b7935a1d45b","timestamp":{"seconds":1757374011,"nanos":565000000}}},{"testStepFinished":{"testCaseStartedId":"a7fb7a36-a981-46ed-921b-36eb9d047bb7","testStepId":"b82c91f0-c12a-4950-9484-8b7935a1d45b","testStepResult":{"duration":{"seconds":0,"nanos":3762444},"status":"PASSED"},"timestamp":{"seconds":1757374011,"nanos":569000000}}},{"testStepStarted":{"testCaseStartedId":"a7fb7a36-a981-46ed-921b-36eb9d047bb7","testStepId":"8c9aee5a-a857-4ff8-b2cd-89bdd9398e6e","timestamp":{"seconds":1757374011,"nanos":569000000}}},{"testStepFinished":{"testCaseStartedId":"a7fb7a36-a981-46ed-921b-36eb9d047bb7","testStepId":"8c9aee5a-a857-4ff8-b2cd-89bdd9398e6e","testStepResult":{"duration":{"seconds":0,"nanos":3791591},"status":"PASSED"},"timestamp":{"seconds":1757374011,"nanos":573000000}}},{"testCaseFinished":{"testCaseStartedId":"a7fb7a36-a981-46ed-921b-36eb9d047bb7","timestamp":{"seconds":1757374011,"nanos":573000000},"willBeRetried":false}},{"testCaseStarted":{"attempt":0,"testCaseId":"73d5bf3b-e444-4392-8473-8e1cca93a105","id":"b23fa534-fb75-4bf1-9e4a-8fe2934ba763","timestamp":{"seconds":1757374011,"nanos":573000000}}},{"testStepStarted":{"testCaseStartedId":"b23fa534-fb75-4bf1-9e4a-8fe2934ba763","testStepId":"ca302578-6f1e-46d3-812a-86f643278478","timestamp":{"seconds":1757374011,"nanos":573000000}}},{"testStepFinished":{"testCaseStartedId":"b23fa534-fb75-4bf1-9e4a-8fe2934ba763","testStepId":"ca302578-6f1e-46d3-812a-86f643278478","testStepResult":{"duration":{"seconds":0,"nanos":267966},"status":"PASSED"},"timestamp":{"seconds":1757374011,"nanos":574000000}}},{"testStepStarted":{"testCaseStartedId":"b23fa534-fb75-4bf1-9e4a-8fe2934ba763","testStepId":"df9d3f98-8921-4f04-b8c6-d3a6e4c0bf41","timestamp":{"seconds":1757374011,"nanos":574000000}}},{"testStepFinished":{"testCaseStartedId":"b23fa534-fb75-4bf1-9e4a-8fe2934ba763","testStepId":"df9d3f98-8921-4f04-b8c6-d3a6e4c0bf41","testStepResult":{"duration":{"seconds":0,"nanos":104836566},"status":"PASSED"},"timestamp":{"seconds":1757374011,"nanos":679000000}}},{"testStepStarted":{"testCaseStartedId":"b23fa534-fb75-4bf1-9e4a-8fe2934ba763","testStepId":"62c5b1ab-85b0-4a30-b3bb-f69c075a0c52","timestamp":{"seconds":1757374011,"nanos":679000000}}},{"testStepFinished":{"testCaseStartedId":"b23fa534-fb75-4bf1-9e4a-8fe2934ba763","testStepId":"62c5b1ab-85b0-4a30-b3bb-f69c075a0c52","testStepResult":{"duration":{"seconds":0,"nanos":85600228},"status":"PASSED"},"timestamp":{"seconds":1757374011,"nanos":765000000}}},{"testStepStarted":{"testCaseStartedId":"b23fa534-fb75-4bf1-9e4a-8fe2934ba763","testStepId":"e34927d6-3d27-41f0-948a-db6c3e0ab630","timestamp":{"seconds":1757374011,"nanos":765000000}}},{"testStepFinished":{"testCaseStartedId":"b23fa534-fb75-4bf1-9e4a-8fe2934ba763","testStepId":"e34927d6-3d27-41f0-948a-db6c3e0ab630","testStepResult":{"duration":{"seconds":0,"nanos":353078},"status":"PASSED"},"timestamp":{"seconds":1757374011,"nanos":766000000}}},{"testStepStarted":{"testCaseStartedId":"b23fa534-fb75-4bf1-9e4a-8fe2934ba763","testStepId":"c92d3712-0feb-4ce0-84c7-413a5fc6eed3","timestamp":{"seconds":1757374011,"nanos":766000000}}},{"testStepFinished":{"testCaseStartedId":"b23fa534-fb75-4bf1-9e4a-8fe2934ba763","testStepId":"c92d3712-0feb-4ce0-84c7-413a5fc6eed3","testStepResult":{"duration":{"seconds":0,"nanos":281985},"status":"PASSED"},"timestamp":{"seconds":1757374011,"nanos":766000000}}},{"testStepStarted":{"testCaseStartedId":"b23fa534-fb75-4bf1-9e4a-8fe2934ba763","testStepId":"f972122c-9e5a-4eef-92b1-8c1dfb681dab","timestamp":{"seconds":1757374011,"nanos":766000000}}},{"testStepFinished":{"testCaseStartedId":"b23fa534-fb75-4bf1-9e4a-8fe2934ba763","testStepId":"f972122c-9e5a-4eef-92b1-8c1dfb681dab","testStepResult":{"duration":{"seconds":0,"nanos":248929},"status":"PASSED"},"timestamp":{"seconds":1757374011,"nanos":767000000}}},{"testStepStarted":{"testCaseStartedId":"b23fa534-fb75-4bf1-9e4a-8fe2934ba763","testStepId":"53de1423-ed63-4ea9-be77-5cd74cf4fcff","timestamp":{"seconds":1757374011,"nanos":767000000}}},{"testStepFinished":{"testCaseStartedId":"b23fa534-fb75-4bf1-9e4a-8fe2934ba763","testStepId":"53de1423-ed63-4ea9-be77-5cd74cf4fcff","testStepResult":{"duration":{"seconds":0,"nanos":264083},"status":"PASSED"},"timestamp":{"seconds":1757374011,"nanos":767000000}}},{"testCaseFinished":{"testCaseStartedId":"b23fa534-fb75-4bf1-9e4a-8fe2934ba763","timestamp":{"seconds":1757374011,"nanos":767000000},"willBeRetried":false}},{"testCaseStarted":{"attempt":0,"testCaseId":"bb6fb04d-3515-42a9-81d0-5368085adbfd","id":"2cc64e76-aa31-490d-9f7f-69de10d008d5","timestamp":{"seconds":1757374011,"nanos":767000000}}},{"testStepStarted":{"testCaseStartedId":"2cc64e76-aa31-490d-9f7f-69de10d008d5","testStepId":"a064aeea-f22f-432c-afb4-6125c2f6f5c3","timestamp":{"seconds":1757374011,"nanos":767000000}}},{"testStepFinished":{"testCaseStartedId":"2cc64e76-aa31-490d-9f7f-69de10d008d5","testStepId":"a064aeea-f22f-432c-afb4-6125c2f6f5c3","testStepResult":{"duration":{"seconds":0,"nanos":185355},"status":"PASSED"},"timestamp":{"seconds":1757374011,"nanos":768000000}}},{"testStepStarted":{"testCaseStartedId":"2cc64e76-aa31-490d-9f7f-69de10d008d5","testStepId":"d19678a3-54d1-4f6b-a6eb-2f233ef08a51","timestamp":{"seconds":1757374011,"nanos":768000000}}},{"testStepFinished":{"testCaseStartedId":"2cc64e76-aa31-490d-9f7f-69de10d008d5","testStepId":"d19678a3-54d1-4f6b-a6eb-2f233ef08a51","testStepResult":{"duration":{"seconds":0,"nanos":322396269},"status":"PASSED"},"timestamp":{"seconds":1757374012,"nanos":90000000}}},{"testStepStarted":{"testCaseStartedId":"2cc64e76-aa31-490d-9f7f-69de10d008d5","testStepId":"d97c7c54-10a7-4645-aecf-8e46ceb062e4","timestamp":{"seconds":1757374012,"nanos":90000000}}},{"testStepFinished":{"testCaseStartedId":"2cc64e76-aa31-490d-9f7f-69de10d008d5","testStepId":"d97c7c54-10a7-4645-aecf-8e46ceb062e4","testStepResult":{"duration":{"seconds":0,"nanos":91541253},"status":"PASSED"},"timestamp":{"seconds":1757374012,"nanos":182000000}}},{"testStepStarted":{"testCaseStartedId":"2cc64e76-aa31-490d-9f7f-69de10d008d5","testStepId":"e7c2154d-81e5-4dc8-8dce-853bfbdaa463","timestamp":{"seconds":1757374012,"nanos":182000000}}},{"testStepFinished":{"testCaseStartedId":"2cc64e76-aa31-490d-9f7f-69de10d008d5","testStepId":"e7c2154d-81e5-4dc8-8dce-853bfbdaa463","testStepResult":{"duration":{"seconds":0,"nanos":278308},"status":"PASSED"},"timestamp":{"seconds":1757374012,"nanos":182000000}}},{"testStepStarted":{"testCaseStartedId":"2cc64e76-aa31-490d-9f7f-69de10d008d5","testStepId":"a35fdc35-556b-4324-8d1d-e12e20bf835d","timestamp":{"seconds":1757374012,"nanos":182000000}}},{"testStepFinished":{"testCaseStartedId":"2cc64e76-aa31-490d-9f7f-69de10d008d5","testStepId":"a35fdc35-556b-4324-8d1d-e12e20bf835d","testStepResult":{"duration":{"seconds":0,"nanos":453083},"status":"PASSED"},"timestamp":{"seconds":1757374012,"nanos":183000000}}},{"testStepStarted":{"testCaseStartedId":"2cc64e76-aa31-490d-9f7f-69de10d008d5","testStepId":"6c1844c7-9ac1-46fe-a27d-3282f8d5408d","timestamp":{"seconds":1757374012,"nanos":183000000}}},{"testStepFinished":{"testCaseStartedId":"2cc64e76-aa31-490d-9f7f-69de10d008d5","testStepId":"6c1844c7-9ac1-46fe-a27d-3282f8d5408d","testStepResult":{"duration":{"seconds":0,"nanos":288949},"status":"PASSED"},"timestamp":{"seconds":1757374012,"nanos":183000000}}},{"testStepStarted":{"testCaseStartedId":"2cc64e76-aa31-490d-9f7f-69de10d008d5","testStepId":"449cd051-1fc1-4aa6-a8db-7372d22a3be1","timestamp":{"seconds":1757374012,"nanos":183000000}}},{"testStepFinished":{"testCaseStartedId":"2cc64e76-aa31-490d-9f7f-69de10d008d5","testStepId":"449cd051-1fc1-4aa6-a8db-7372d22a3be1","testStepResult":{"duration":{"seconds":0,"nanos":219740},"status":"PASSED"},"timestamp":{"seconds":1757374012,"nanos":184000000}}},{"testCaseFinished":{"testCaseStartedId":"2cc64e76-aa31-490d-9f7f-69de10d008d5","timestamp":{"seconds":1757374012,"nanos":184000000},"willBeRetried":false}},{"testCaseStarted":{"attempt":0,"testCaseId":"2edea644-f91f-4c52-be38-e29b5e31858d","id":"d1800fcb-ffd3-4e4f-8cf4-5d1d4d0cf229","timestamp":{"seconds":1757374012,"nanos":184000000}}},{"testStepStarted":{"testCaseStartedId":"d1800fcb-ffd3-4e4f-8cf4-5d1d4d0cf229","testStepId":"f029218b-96ba-4270-8300-2f1b84133acb","timestamp":{"seconds":1757374012,"nanos":184000000}}},{"testStepFinished":{"testCaseStartedId":"d1800fcb-ffd3-4e4f-8cf4-5d1d4d0cf229","testStepId":"f029218b-96ba-4270-8300-2f1b84133acb","testStepResult":{"duration":{"seconds":0,"nanos":180661},"status":"PASSED"},"timestamp":{"seconds":1757374012,"nanos":184000000}}},{"testStepStarted":{"testCaseStartedId":"d1800fcb-ffd3-4e4f-8cf4-5d1d4d0cf229","testStepId":"49078b32-95e8-476b-877d-b37318b93b96","timestamp":{"seconds":1757374012,"nanos":184000000}}},{"testStepFinished":{"testCaseStartedId":"d1800fcb-ffd3-4e4f-8cf4-5d1d4d0cf229","testStepId":"49078b32-95e8-476b-877d-b37318b93b96","testStepResult":{"duration":{"seconds":0,"nanos":102327483},"status":"PASSED"},"timestamp":{"seconds":1757374012,"nanos":287000000}}},{"testStepStarted":{"testCaseStartedId":"d1800fcb-ffd3-4e4f-8cf4-5d1d4d0cf229","testStepId":"d6c7a397-9643-403d-b344-73bf877d9b28","timestamp":{"seconds":1757374012,"nanos":287000000}}},{"testStepFinished":{"testCaseStartedId":"d1800fcb-ffd3-4e4f-8cf4-5d1d4d0cf229","testStepId":"d6c7a397-9643-403d-b344-73bf877d9b28","testStepResult":{"duration":{"seconds":0,"nanos":102108600},"status":"PASSED"},"timestamp":{"seconds":1757374012,"nanos":389000000}}},{"testStepStarted":{"testCaseStartedId":"d1800fcb-ffd3-4e4f-8cf4-5d1d4d0cf229","testStepId":"2858cc14-5462-4eba-a8ed-1028d78159e0","timestamp":{"seconds":1757374012,"nanos":389000000}}},{"testStepFinished":{"testCaseStartedId":"d1800fcb-ffd3-4e4f-8cf4-5d1d4d0cf229","testStepId":"2858cc14-5462-4eba-a8ed-1028d78159e0","testStepResult":{"duration":{"seconds":0,"nanos":320792},"status":"PASSED"},"timestamp":{"seconds":1757374012,"nanos":390000000}}},{"testStepStarted":{"testCaseStartedId":"d1800fcb-ffd3-4e4f-8cf4-5d1d4d0cf229","testStepId":"bb05d7a0-b359-42aa-a25b-f3a9455638e4","timestamp":{"seconds":1757374012,"nanos":390000000}}},{"testStepFinished":{"testCaseStartedId":"d1800fcb-ffd3-4e4f-8cf4-5d1d4d0cf229","testStepId":"bb05d7a0-b359-42aa-a25b-f3a9455638e4","testStepResult":{"duration":{"seconds":0,"nanos":273245},"status":"PASSED"},"timestamp":{"seconds":1757374012,"nanos":390000000}}},{"testStepStarted":{"testCaseStartedId":"d1800fcb-ffd3-4e4f-8cf4-5d1d4d0cf229","testStepId":"9f03c92d-9083-4aef-bfe6-062dc98da4da","timestamp":{"seconds":1757374012,"nanos":390000000}}},{"testStepFinished":{"testCaseStartedId":"d1800fcb-ffd3-4e4f-8cf4-5d1d4d0cf229","testStepId":"9f03c92d-9083-4aef-bfe6-062dc98da4da","testStepResult":{"duration":{"seconds":0,"nanos":382344},"status":"PASSED"},"timestamp":{"seconds":1757374012,"nanos":391000000}}},{"testStepStarted":{"testCaseStartedId":"d1800fcb-ffd3-4e4f-8cf4-5d1d4d0cf229","testStepId":"def0efcb-6360-40ca-8dfd-5eec62e5de2f","timestamp":{"seconds":1757374012,"nanos":391000000}}},{"testStepFinished":{"testCaseStartedId":"d1800fcb-ffd3-4e4f-8cf4-5d1d4d0cf229","testStepId":"def0efcb-6360-40ca-8dfd-5eec62e5de2f","testStepResult":{"duration":{"seconds":0,"nanos":270893},"status":"PASSED"},"timestamp":{"seconds":1757374012,"nanos":391000000}}},{"testCaseFinished":{"testCaseStartedId":"d1800fcb-ffd3-4e4f-8cf4-5d1d4d0cf229","timestamp":{"seconds":1757374012,"nanos":391000000},"willBeRetried":false}},{"testCaseStarted":{"attempt":0,"testCaseId":"9894bb56-e8eb-4106-857b-c5e11ddac814","id":"0691cd2f-232b-4730-952e-bb6b22c27cae","timestamp":{"seconds":1757374012,"nanos":391000000}}},{"testStepStarted":{"testCaseStartedId":"0691cd2f-232b-4730-952e-bb6b22c27cae","testStepId":"80cf47fc-3347-43d4-bb39-3509ba699d5c","timestamp":{"seconds":1757374012,"nanos":391000000}}},{"testStepFinished":{"testCaseStartedId":"0691cd2f-232b-4730-952e-bb6b22c27cae","testStepId":"80cf47fc-3347-43d4-bb39-3509ba699d5c","testStepResult":{"duration":{"seconds":0,"nanos":227223},"status":"PASSED"},"timestamp":{"seconds":1757374012,"nanos":391000000}}},{"testStepStarted":{"testCaseStartedId":"0691cd2f-232b-4730-952e-bb6b22c27cae","testStepId":"7b588411-c87e-406d-b0b9-c9f45e10cf9e","timestamp":{"seconds":1757374012,"nanos":391000000}}},{"testStepFinished":{"testCaseStartedId":"0691cd2f-232b-4730-952e-bb6b22c27cae","testStepId":"7b588411-c87e-406d-b0b9-c9f45e10cf9e","testStepResult":{"duration":{"seconds":0,"nanos":90467639},"status":"PASSED"},"timestamp":{"seconds":1757374012,"nanos":482000000}}},{"testStepStarted":{"testCaseStartedId":"0691cd2f-232b-4730-952e-bb6b22c27cae","testStepId":"5134d48a-d19d-4740-806b-f3bbc47318d2","timestamp":{"seconds":1757374012,"nanos":482000000}}},{"testStepFinished":{"testCaseStartedId":"0691cd2f-232b-4730-952e-bb6b22c27cae","testStepId":"5134d48a-d19d-4740-806b-f3bbc47318d2","testStepResult":{"duration":{"seconds":0,"nanos":88660669},"status":"PASSED"},"timestamp":{"seconds":1757374012,"nanos":571000000}}},{"testStepStarted":{"testCaseStartedId":"0691cd2f-232b-4730-952e-bb6b22c27cae","testStepId":"6e49c32c-eb35-4c37-9d29-52adb1c483f6","timestamp":{"seconds":1757374012,"nanos":571000000}}},{"testStepFinished":{"testCaseStartedId":"0691cd2f-232b-4730-952e-bb6b22c27cae","testStepId":"6e49c32c-eb35-4c37-9d29-52adb1c483f6","testStepResult":{"duration":{"seconds":0,"nanos":230440},"status":"PASSED"},"timestamp":{"seconds":1757374012,"nanos":571000000}}},{"testStepStarted":{"testCaseStartedId":"0691cd2f-232b-4730-952e-bb6b22c27cae","testStepId":"15a05a51-bae3-40e0-92e4-7762ac080f97","timestamp":{"seconds":1757374012,"nanos":571000000}}},{"testStepFinished":{"testCaseStartedId":"0691cd2f-232b-4730-952e-bb6b22c27cae","testStepId":"15a05a51-bae3-40e0-92e4-7762ac080f97","testStepResult":{"duration":{"seconds":0,"nanos":305331},"status":"PASSED"},"timestamp":{"seconds":1757374012,"nanos":572000000}}},{"testStepStarted":{"testCaseStartedId":"0691cd2f-232b-4730-952e-bb6b22c27cae","testStepId":"052c8f77-7fbf-405a-b486-c659910291c5","timestamp":{"seconds":1757374012,"nanos":572000000}}},{"testStepFinished":{"testCaseStartedId":"0691cd2f-232b-4730-952e-bb6b22c27cae","testStepId":"052c8f77-7fbf-405a-b486-c659910291c5","testStepResult":{"duration":{"seconds":0,"nanos":333101},"status":"PASSED"},"timestamp":{"seconds":1757374012,"nanos":572000000}}},{"testStepStarted":{"testCaseStartedId":"0691cd2f-232b-4730-952e-bb6b22c27cae","testStepId":"897f3cc8-8199-4e51-bdb2-271d374b47ce","timestamp":{"seconds":1757374012,"nanos":572000000}}},{"testStepFinished":{"testCaseStartedId":"0691cd2f-232b-4730-952e-bb6b22c27cae","testStepId":"897f3cc8-8199-4e51-bdb2-271d374b47ce","testStepResult":{"duration":{"seconds":0,"nanos":238953},"status":"PASSED"},"timestamp":{"seconds":1757374012,"nanos":573000000}}},{"testCaseFinished":{"testCaseStartedId":"0691cd2f-232b-4730-952e-bb6b22c27cae","timestamp":{"seconds":1757374012,"nanos":573000000},"willBeRetried":false}},{"testCaseStarted":{"attempt":0,"testCaseId":"0ff21771-c217-4b0b-94d9-ed29ae798ea3","id":"d0dea54d-b688-498f-be75-82cf114ace32","timestamp":{"seconds":1757374012,"nanos":573000000}}},{"testStepStarted":{"testCaseStartedId":"d0dea54d-b688-498f-be75-82cf114ace32","testStepId":"b7ae0867-b292-4305-977e-cca519580286","timestamp":{"seconds":1757374012,"nanos":573000000}}},{"testStepFinished":{"testCaseStartedId":"d0dea54d-b688-498f-be75-82cf114ace32","testStepId":"b7ae0867-b292-4305-977e-cca519580286","testStepResult":{"duration":{"seconds":0,"nanos":180571},"status":"PASSED"},"timestamp":{"seconds":1757374012,"nanos":573000000}}},{"testStepStarted":{"testCaseStartedId":"d0dea54d-b688-498f-be75-82cf114ace32","testStepId":"30ff28a0-f36e-48a6-9a74-44475a93a171","timestamp":{"seconds":1757374012,"nanos":573000000}}},{"testStepFinished":{"testCaseStartedId":"d0dea54d-b688-498f-be75-82cf114ace32","testStepId":"30ff28a0-f36e-48a6-9a74-44475a93a171","testStepResult":{"duration":{"seconds":0,"nanos":96200500},"status":"PASSED"},"timestamp":{"seconds":1757374012,"nanos":669000000}}},{"testStepStarted":{"testCaseStartedId":"d0dea54d-b688-498f-be75-82cf114ace32","testStepId":"faa7e2fe-fd65-4c1f-b12c-aa9871c9a881","timestamp":{"seconds":1757374012,"nanos":670000000}}},{"testStepFinished":{"testCaseStartedId":"d0dea54d-b688-498f-be75-82cf114ace32","testStepId":"faa7e2fe-fd65-4c1f-b12c-aa9871c9a881","testStepResult":{"duration":{"seconds":0,"nanos":111988465},"status":"PASSED"},"timestamp":{"seconds":1757374012,"nanos":783000000}}},{"testStepStarted":{"testCaseStartedId":"d0dea54d-b688-498f-be75-82cf114ace32","testStepId":"ef6212cb-0d10-4656-85e9-50379f3adff1","timestamp":{"seconds":1757374012,"nanos":784000000}}},{"testStepFinished":{"testCaseStartedId":"d0dea54d-b688-498f-be75-82cf114ace32","testStepId":"ef6212cb-0d10-4656-85e9-50379f3adff1","testStepResult":{"duration":{"seconds":0,"nanos":496963},"status":"PASSED"},"timestamp":{"seconds":1757374012,"nanos":784000000}}},{"testStepStarted":{"testCaseStartedId":"d0dea54d-b688-498f-be75-82cf114ace32","testStepId":"d72f2a07-0ba9-40a9-b3da-4732f6456d62","timestamp":{"seconds":1757374012,"nanos":784000000}}},{"testStepFinished":{"testCaseStartedId":"d0dea54d-b688-498f-be75-82cf114ace32","testStepId":"d72f2a07-0ba9-40a9-b3da-4732f6456d62","testStepResult":{"duration":{"seconds":0,"nanos":427706},"status":"PASSED"},"timestamp":{"seconds":1757374012,"nanos":785000000}}},{"testStepStarted":{"testCaseStartedId":"d0dea54d-b688-498f-be75-82cf114ace32","testStepId":"8cb174ac-b2fa-4664-9741-f22dab321b30","timestamp":{"seconds":1757374012,"nanos":785000000}}},{"testStepFinished":{"testCaseStartedId":"d0dea54d-b688-498f-be75-82cf114ace32","testStepId":"8cb174ac-b2fa-4664-9741-f22dab321b30","testStepResult":{"duration":{"seconds":0,"nanos":304167},"status":"PASSED"},"timestamp":{"seconds":1757374012,"nanos":785000000}}},{"testCaseFinished":{"testCaseStartedId":"d0dea54d-b688-498f-be75-82cf114ace32","timestamp":{"seconds":1757374012,"nanos":786000000},"willBeRetried":false}},{"testCaseStarted":{"attempt":0,"testCaseId":"93493645-58a9-415a-b41f-cd36d376ca4c","id":"b11f6321-c7ba-4491-ab21-6689986ae129","timestamp":{"seconds":1757374012,"nanos":786000000}}},{"testStepStarted":{"testCaseStartedId":"b11f6321-c7ba-4491-ab21-6689986ae129","testStepId":"4ef7bd4b-d575-435c-8b8b-b5816d7bf5c4","timestamp":{"seconds":1757374012,"nanos":786000000}}},{"testStepFinished":{"testCaseStartedId":"b11f6321-c7ba-4491-ab21-6689986ae129","testStepId":"4ef7bd4b-d575-435c-8b8b-b5816d7bf5c4","testStepResult":{"duration":{"seconds":0,"nanos":203452},"status":"PASSED"},"timestamp":{"seconds":1757374012,"nanos":786000000}}},{"testStepStarted":{"testCaseStartedId":"b11f6321-c7ba-4491-ab21-6689986ae129","testStepId":"f3c59d94-1e62-42a4-a265-2b120b250c2d","timestamp":{"seconds":1757374012,"nanos":786000000}}},{"testStepFinished":{"testCaseStartedId":"b11f6321-c7ba-4491-ab21-6689986ae129","testStepId":"f3c59d94-1e62-42a4-a265-2b120b250c2d","testStepResult":{"duration":{"seconds":0,"nanos":103745030},"status":"PASSED"},"timestamp":{"seconds":1757374012,"nanos":890000000}}},{"testStepStarted":{"testCaseStartedId":"b11f6321-c7ba-4491-ab21-6689986ae129","testStepId":"2feb11b6-3da3-4c0c-ab10-9e5e21e3040e","timestamp":{"seconds":1757374012,"nanos":890000000}}},{"testStepFinished":{"testCaseStartedId":"b11f6321-c7ba-4491-ab21-6689986ae129","testStepId":"2feb11b6-3da3-4c0c-ab10-9e5e21e3040e","testStepResult":{"duration":{"seconds":0,"nanos":103452335},"status":"PASSED"},"timestamp":{"seconds":1757374012,"nanos":993000000}}},{"testStepStarted":{"testCaseStartedId":"b11f6321-c7ba-4491-ab21-6689986ae129","testStepId":"52dd0d8d-88d4-4c2f-ab6a-ba698f3d65bb","timestamp":{"seconds":1757374012,"nanos":994000000}}},{"testStepFinished":{"testCaseStartedId":"b11f6321-c7ba-4491-ab21-6689986ae129","testStepId":"52dd0d8d-88d4-4c2f-ab6a-ba698f3d65bb","testStepResult":{"duration":{"seconds":0,"nanos":318988},"status":"PASSED"},"timestamp":{"seconds":1757374012,"nanos":994000000}}},{"testStepStarted":{"testCaseStartedId":"b11f6321-c7ba-4491-ab21-6689986ae129","testStepId":"f443fc85-13fb-4a8b-ae0e-698c388f78a6","timestamp":{"seconds":1757374012,"nanos":994000000}}},{"testStepFinished":{"testCaseStartedId":"b11f6321-c7ba-4491-ab21-6689986ae129","testStepId":"f443fc85-13fb-4a8b-ae0e-698c388f78a6","testStepResult":{"duration":{"seconds":0,"nanos":207678},"status":"PASSED"},"timestamp":{"seconds":1757374012,"nanos":994000000}}},{"testStepStarted":{"testCaseStartedId":"b11f6321-c7ba-4491-ab21-6689986ae129","testStepId":"622702ea-8f52-412e-bf8e-be55d2cae611","timestamp":{"seconds":1757374012,"nanos":994000000}}},{"testStepFinished":{"testCaseStartedId":"b11f6321-c7ba-4491-ab21-6689986ae129","testStepId":"622702ea-8f52-412e-bf8e-be55d2cae611","testStepResult":{"duration":{"seconds":0,"nanos":255368},"status":"PASSED"},"timestamp":{"seconds":1757374012,"nanos":995000000}}},{"testCaseFinished":{"testCaseStartedId":"b11f6321-c7ba-4491-ab21-6689986ae129","timestamp":{"seconds":1757374012,"nanos":995000000},"willBeRetried":false}},{"testCaseStarted":{"attempt":0,"testCaseId":"34502e4a-1b2f-4c6d-989c-a0ebf566a7f2","id":"b6eb28db-7256-4c27-9584-afb6989ff82c","timestamp":{"seconds":1757374012,"nanos":995000000}}},{"testStepStarted":{"testCaseStartedId":"b6eb28db-7256-4c27-9584-afb6989ff82c","testStepId":"0c1ea1d7-c2ee-4731-9222-b30fa97133c7","timestamp":{"seconds":1757374012,"nanos":995000000}}},{"testStepFinished":{"testCaseStartedId":"b6eb28db-7256-4c27-9584-afb6989ff82c","testStepId":"0c1ea1d7-c2ee-4731-9222-b30fa97133c7","testStepResult":{"duration":{"seconds":0,"nanos":233910},"status":"PASSED"},"timestamp":{"seconds":1757374012,"nanos":995000000}}},{"testStepStarted":{"testCaseStartedId":"b6eb28db-7256-4c27-9584-afb6989ff82c","testStepId":"c3bcc030-a100-4bfa-b2a9-443daf567e1b","timestamp":{"seconds":1757374012,"nanos":995000000}}},{"testStepFinished":{"testCaseStartedId":"b6eb28db-7256-4c27-9584-afb6989ff82c","testStepId":"c3bcc030-a100-4bfa-b2a9-443daf567e1b","testStepResult":{"duration":{"seconds":0,"nanos":99590035},"status":"PASSED"},"timestamp":{"seconds":1757374013,"nanos":95000000}}},{"testStepStarted":{"testCaseStartedId":"b6eb28db-7256-4c27-9584-afb6989ff82c","testStepId":"8ebf850b-5fcd-4c58-8cce-100f0f2a4225","timestamp":{"seconds":1757374013,"nanos":95000000}}},{"testStepFinished":{"testCaseStartedId":"b6eb28db-7256-4c27-9584-afb6989ff82c","testStepId":"8ebf850b-5fcd-4c58-8cce-100f0f2a4225","testStepResult":{"duration":{"seconds":0,"nanos":92421690},"status":"PASSED"},"timestamp":{"seconds":1757374013,"nanos":188000000}}},{"testStepStarted":{"testCaseStartedId":"b6eb28db-7256-4c27-9584-afb6989ff82c","testStepId":"729c9e98-6b60-4379-8210-b75d55b2d1e1","timestamp":{"seconds":1757374013,"nanos":188000000}}},{"testStepFinished":{"testCaseStartedId":"b6eb28db-7256-4c27-9584-afb6989ff82c","testStepId":"729c9e98-6b60-4379-8210-b75d55b2d1e1","testStepResult":{"duration":{"seconds":0,"nanos":326875},"status":"PASSED"},"timestamp":{"seconds":1757374013,"nanos":188000000}}},{"testStepStarted":{"testCaseStartedId":"b6eb28db-7256-4c27-9584-afb6989ff82c","testStepId":"ad484777-8f30-437d-a9d1-6c58362cef42","timestamp":{"seconds":1757374013,"nanos":188000000}}},{"testStepFinished":{"testCaseStartedId":"b6eb28db-7256-4c27-9584-afb6989ff82c","testStepId":"ad484777-8f30-437d-a9d1-6c58362cef42","testStepResult":{"duration":{"seconds":0,"nanos":261852},"status":"PASSED"},"timestamp":{"seconds":1757374013,"nanos":188000000}}},{"testStepStarted":{"testCaseStartedId":"b6eb28db-7256-4c27-9584-afb6989ff82c","testStepId":"8964817c-1a5f-408b-be09-a6f38deec1fb","timestamp":{"seconds":1757374013,"nanos":189000000}}},{"testStepFinished":{"testCaseStartedId":"b6eb28db-7256-4c27-9584-afb6989ff82c","testStepId":"8964817c-1a5f-408b-be09-a6f38deec1fb","testStepResult":{"duration":{"seconds":0,"nanos":249648},"status":"PASSED"},"timestamp":{"seconds":1757374013,"nanos":189000000}}},{"testCaseFinished":{"testCaseStartedId":"b6eb28db-7256-4c27-9584-afb6989ff82c","timestamp":{"seconds":1757374013,"nanos":189000000},"willBeRetried":false}},{"testCaseStarted":{"attempt":0,"testCaseId":"616c3c4f-2782-437b-9948-319e7c78f0ee","id":"cfa8be49-2863-47dd-af42-c73e230c2d2d","timestamp":{"seconds":1757374013,"nanos":189000000}}},{"testStepStarted":{"testCaseStartedId":"cfa8be49-2863-47dd-af42-c73e230c2d2d","testStepId":"dcdddedf-6c59-46aa-a004-9cd1eba75cbf","timestamp":{"seconds":1757374013,"nanos":189000000}}},{"testStepFinished":{"testCaseStartedId":"cfa8be49-2863-47dd-af42-c73e230c2d2d","testStepId":"dcdddedf-6c59-46aa-a004-9cd1eba75cbf","testStepResult":{"duration":{"seconds":0,"nanos":209561},"status":"PASSED"},"timestamp":{"seconds":1757374013,"nanos":190000000}}},{"testStepStarted":{"testCaseStartedId":"cfa8be49-2863-47dd-af42-c73e230c2d2d","testStepId":"86eced12-c068-475f-9f99-6c6714043c34","timestamp":{"seconds":1757374013,"nanos":190000000}}},{"testStepFinished":{"testCaseStartedId":"cfa8be49-2863-47dd-af42-c73e230c2d2d","testStepId":"86eced12-c068-475f-9f99-6c6714043c34","testStepResult":{"duration":{"seconds":0,"nanos":98762455},"status":"PASSED"},"timestamp":{"seconds":1757374013,"nanos":289000000}}},{"testStepStarted":{"testCaseStartedId":"cfa8be49-2863-47dd-af42-c73e230c2d2d","testStepId":"9a5c0944-b9a7-4ae8-b513-a2beba57bb7f","timestamp":{"seconds":1757374013,"nanos":289000000}}},{"testStepFinished":{"testCaseStartedId":"cfa8be49-2863-47dd-af42-c73e230c2d2d","testStepId":"9a5c0944-b9a7-4ae8-b513-a2beba57bb7f","testStepResult":{"duration":{"seconds":0,"nanos":89503529},"status":"PASSED"},"timestamp":{"seconds":1757374013,"nanos":378000000}}},{"testStepStarted":{"testCaseStartedId":"cfa8be49-2863-47dd-af42-c73e230c2d2d","testStepId":"f75ffe38-58ad-450e-be1a-f7d74b8433e2","timestamp":{"seconds":1757374013,"nanos":378000000}}},{"testStepFinished":{"testCaseStartedId":"cfa8be49-2863-47dd-af42-c73e230c2d2d","testStepId":"f75ffe38-58ad-450e-be1a-f7d74b8433e2","testStepResult":{"duration":{"seconds":0,"nanos":214080},"status":"PASSED"},"timestamp":{"seconds":1757374013,"nanos":379000000}}},{"testStepStarted":{"testCaseStartedId":"cfa8be49-2863-47dd-af42-c73e230c2d2d","testStepId":"59b98fae-7ece-44cd-bfb7-4279bc5b7783","timestamp":{"seconds":1757374013,"nanos":379000000}}},{"testStepFinished":{"testCaseStartedId":"cfa8be49-2863-47dd-af42-c73e230c2d2d","testStepId":"59b98fae-7ece-44cd-bfb7-4279bc5b7783","testStepResult":{"duration":{"seconds":0,"nanos":178134},"status":"PASSED"},"timestamp":{"seconds":1757374013,"nanos":379000000}}},{"testStepStarted":{"testCaseStartedId":"cfa8be49-2863-47dd-af42-c73e230c2d2d","testStepId":"fc5f374c-093b-47ee-964c-192e04bec440","timestamp":{"seconds":1757374013,"nanos":379000000}}},{"testStepFinished":{"testCaseStartedId":"cfa8be49-2863-47dd-af42-c73e230c2d2d","testStepId":"fc5f374c-093b-47ee-964c-192e04bec440","testStepResult":{"duration":{"seconds":0,"nanos":195539},"status":"PASSED"},"timestamp":{"seconds":1757374013,"nanos":379000000}}},{"testCaseFinished":{"testCaseStartedId":"cfa8be49-2863-47dd-af42-c73e230c2d2d","timestamp":{"seconds":1757374013,"nanos":379000000},"willBeRetried":false}},{"testCaseStarted":{"attempt":0,"testCaseId":"a5b48387-92ce-49d1-884b-17462136f515","id":"ae554b02-9e87-4109-973a-f3d9509eb307","timestamp":{"seconds":1757374013,"nanos":379000000}}},{"testStepStarted":{"testCaseStartedId":"ae554b02-9e87-4109-973a-f3d9509eb307","testStepId":"eaa90e68-bed3-40c1-b13c-e85cf6d0bf40","timestamp":{"seconds":1757374013,"nanos":379000000}}},{"testStepFinished":{"testCaseStartedId":"ae554b02-9e87-4109-973a-f3d9509eb307","testStepId":"eaa90e68-bed3-40c1-b13c-e85cf6d0bf40","testStepResult":{"duration":{"seconds":0,"nanos":162831},"status":"PASSED"},"timestamp":{"seconds":1757374013,"nanos":380000000}}},{"testStepStarted":{"testCaseStartedId":"ae554b02-9e87-4109-973a-f3d9509eb307","testStepId":"363a3870-bf73-4edf-a5c1-5f8c33b7c1db","timestamp":{"seconds":1757374013,"nanos":380000000}}},{"testStepFinished":{"testCaseStartedId":"ae554b02-9e87-4109-973a-f3d9509eb307","testStepId":"363a3870-bf73-4edf-a5c1-5f8c33b7c1db","testStepResult":{"duration":{"seconds":0,"nanos":94229819},"status":"PASSED"},"timestamp":{"seconds":1757374013,"nanos":474000000}}},{"testStepStarted":{"testCaseStartedId":"ae554b02-9e87-4109-973a-f3d9509eb307","testStepId":"7405334d-ca16-4c8b-b418-cdb93984700a","timestamp":{"seconds":1757374013,"nanos":474000000}}},{"testStepFinished":{"testCaseStartedId":"ae554b02-9e87-4109-973a-f3d9509eb307","testStepId":"7405334d-ca16-4c8b-b418-cdb93984700a","testStepResult":{"duration":{"seconds":0,"nanos":93244807},"status":"PASSED"},"timestamp":{"seconds":1757374013,"nanos":567000000}}},{"testStepStarted":{"testCaseStartedId":"ae554b02-9e87-4109-973a-f3d9509eb307","testStepId":"5cf512e9-ce44-438d-9b90-105824188e48","timestamp":{"seconds":1757374013,"nanos":567000000}}},{"testStepFinished":{"testCaseStartedId":"ae554b02-9e87-4109-973a-f3d9509eb307","testStepId":"5cf512e9-ce44-438d-9b90-105824188e48","testStepResult":{"duration":{"seconds":0,"nanos":211553},"status":"PASSED"},"timestamp":{"seconds":1757374013,"nanos":568000000}}},{"testStepStarted":{"testCaseStartedId":"ae554b02-9e87-4109-973a-f3d9509eb307","testStepId":"e28fb18c-04dd-4ccd-b018-47301eee193b","timestamp":{"seconds":1757374013,"nanos":568000000}}},{"testStepFinished":{"testCaseStartedId":"ae554b02-9e87-4109-973a-f3d9509eb307","testStepId":"e28fb18c-04dd-4ccd-b018-47301eee193b","testStepResult":{"duration":{"seconds":0,"nanos":213727},"status":"PASSED"},"timestamp":{"seconds":1757374013,"nanos":568000000}}},{"testStepStarted":{"testCaseStartedId":"ae554b02-9e87-4109-973a-f3d9509eb307","testStepId":"acd52f06-ac73-4a5b-ba35-1d8a824e5c6d","timestamp":{"seconds":1757374013,"nanos":568000000}}},{"testStepFinished":{"testCaseStartedId":"ae554b02-9e87-4109-973a-f3d9509eb307","testStepId":"acd52f06-ac73-4a5b-ba35-1d8a824e5c6d","testStepResult":{"duration":{"seconds":0,"nanos":224075},"status":"PASSED"},"timestamp":{"seconds":1757374013,"nanos":568000000}}},{"testCaseFinished":{"testCaseStartedId":"ae554b02-9e87-4109-973a-f3d9509eb307","timestamp":{"seconds":1757374013,"nanos":568000000},"willBeRetried":false}},{"testCaseStarted":{"attempt":0,"testCaseId":"db31b93d-055a-4867-b6dd-c6c170dc6b8a","id":"4432916e-5762-4748-a749-0b6ae711ef74","timestamp":{"seconds":1757374013,"nanos":569000000}}},{"testStepStarted":{"testCaseStartedId":"4432916e-5762-4748-a749-0b6ae711ef74","testStepId":"40310d43-2647-4e48-bf32-d1c8a4a64a8b","timestamp":{"seconds":1757374013,"nanos":569000000}}},{"testStepFinished":{"testCaseStartedId":"4432916e-5762-4748-a749-0b6ae711ef74","testStepId":"40310d43-2647-4e48-bf32-d1c8a4a64a8b","testStepResult":{"duration":{"seconds":0,"nanos":157564},"status":"PASSED"},"timestamp":{"seconds":1757374013,"nanos":569000000}}},{"testStepStarted":{"testCaseStartedId":"4432916e-5762-4748-a749-0b6ae711ef74","testStepId":"ea1aa7cc-fb57-4f3e-aa40-b8a9540bd951","timestamp":{"seconds":1757374013,"nanos":569000000}}},{"testStepFinished":{"testCaseStartedId":"4432916e-5762-4748-a749-0b6ae711ef74","testStepId":"ea1aa7cc-fb57-4f3e-aa40-b8a9540bd951","testStepResult":{"duration":{"seconds":0,"nanos":85854491},"status":"PASSED"},"timestamp":{"seconds":1757374013,"nanos":655000000}}},{"testStepStarted":{"testCaseStartedId":"4432916e-5762-4748-a749-0b6ae711ef74","testStepId":"8de9faa5-7fcb-4af1-b200-da66ff85a6a5","timestamp":{"seconds":1757374013,"nanos":655000000}}},{"testStepFinished":{"testCaseStartedId":"4432916e-5762-4748-a749-0b6ae711ef74","testStepId":"8de9faa5-7fcb-4af1-b200-da66ff85a6a5","testStepResult":{"duration":{"seconds":0,"nanos":1186642},"status":"PASSED"},"timestamp":{"seconds":1757374013,"nanos":656000000}}},{"testStepStarted":{"testCaseStartedId":"4432916e-5762-4748-a749-0b6ae711ef74","testStepId":"732dd1ad-33df-46f9-99e2-0925a8c75aae","timestamp":{"seconds":1757374013,"nanos":656000000}}},{"testStepFinished":{"testCaseStartedId":"4432916e-5762-4748-a749-0b6ae711ef74","testStepId":"732dd1ad-33df-46f9-99e2-0925a8c75aae","testStepResult":{"duration":{"seconds":0,"nanos":80322125},"status":"PASSED"},"timestamp":{"seconds":1757374013,"nanos":737000000}}},{"testStepStarted":{"testCaseStartedId":"4432916e-5762-4748-a749-0b6ae711ef74","testStepId":"24799a1d-6c82-4a66-a827-0ae5ee5d1010","timestamp":{"seconds":1757374013,"nanos":737000000}}},{"testStepFinished":{"testCaseStartedId":"4432916e-5762-4748-a749-0b6ae711ef74","testStepId":"24799a1d-6c82-4a66-a827-0ae5ee5d1010","testStepResult":{"duration":{"seconds":0,"nanos":77274740},"status":"PASSED"},"timestamp":{"seconds":1757374013,"nanos":814000000}}},{"testStepStarted":{"testCaseStartedId":"4432916e-5762-4748-a749-0b6ae711ef74","testStepId":"a8ae9ffd-94be-4507-828e-d6181bfc1046","timestamp":{"seconds":1757374013,"nanos":814000000}}},{"testStepFinished":{"testCaseStartedId":"4432916e-5762-4748-a749-0b6ae711ef74","testStepId":"a8ae9ffd-94be-4507-828e-d6181bfc1046","testStepResult":{"duration":{"seconds":0,"nanos":401583},"status":"PASSED"},"timestamp":{"seconds":1757374013,"nanos":815000000}}},{"testStepStarted":{"testCaseStartedId":"4432916e-5762-4748-a749-0b6ae711ef74","testStepId":"f1966c2c-a8b1-43f6-a28f-667819ca8b17","timestamp":{"seconds":1757374013,"nanos":815000000}}},{"testStepFinished":{"testCaseStartedId":"4432916e-5762-4748-a749-0b6ae711ef74","testStepId":"f1966c2c-a8b1-43f6-a28f-667819ca8b17","testStepResult":{"duration":{"seconds":0,"nanos":80033719},"status":"PASSED"},"timestamp":{"seconds":1757374013,"nanos":895000000}}},{"testStepStarted":{"testCaseStartedId":"4432916e-5762-4748-a749-0b6ae711ef74","testStepId":"27587a0d-0fd6-4621-97fb-6156b837583a","timestamp":{"seconds":1757374013,"nanos":895000000}}},{"testStepFinished":{"testCaseStartedId":"4432916e-5762-4748-a749-0b6ae711ef74","testStepId":"27587a0d-0fd6-4621-97fb-6156b837583a","testStepResult":{"duration":{"seconds":0,"nanos":875774},"status":"PASSED"},"timestamp":{"seconds":1757374013,"nanos":896000000}}},{"testStepStarted":{"testCaseStartedId":"4432916e-5762-4748-a749-0b6ae711ef74","testStepId":"53a11ddf-b18a-4640-a38a-4069d69c27a6","timestamp":{"seconds":1757374013,"nanos":896000000}}},{"testStepFinished":{"testCaseStartedId":"4432916e-5762-4748-a749-0b6ae711ef74","testStepId":"53a11ddf-b18a-4640-a38a-4069d69c27a6","testStepResult":{"duration":{"seconds":0,"nanos":322061},"status":"PASSED"},"timestamp":{"seconds":1757374013,"nanos":896000000}}},{"testStepStarted":{"testCaseStartedId":"4432916e-5762-4748-a749-0b6ae711ef74","testStepId":"ff081d9c-ba8d-46ea-a903-862ccf7e5a49","timestamp":{"seconds":1757374013,"nanos":896000000}}},{"testStepFinished":{"testCaseStartedId":"4432916e-5762-4748-a749-0b6ae711ef74","testStepId":"ff081d9c-ba8d-46ea-a903-862ccf7e5a49","testStepResult":{"duration":{"seconds":0,"nanos":184664},"status":"PASSED"},"timestamp":{"seconds":1757374013,"nanos":897000000}}},{"testCaseFinished":{"testCaseStartedId":"4432916e-5762-4748-a749-0b6ae711ef74","timestamp":{"seconds":1757374013,"nanos":897000000},"willBeRetried":false}},{"testCaseStarted":{"attempt":0,"testCaseId":"ebac8665-76be-46e3-932b-0ef5d961f7f5","id":"e76ca870-6212-4249-935b-841cab526114","timestamp":{"seconds":1757374013,"nanos":897000000}}},{"testStepStarted":{"testCaseStartedId":"e76ca870-6212-4249-935b-841cab526114","testStepId":"26fa0c29-1337-4d37-b654-26f3a4ff2b26","timestamp":{"seconds":1757374013,"nanos":897000000}}},{"testStepFinished":{"testCaseStartedId":"e76ca870-6212-4249-935b-841cab526114","testStepId":"26fa0c29-1337-4d37-b654-26f3a4ff2b26","testStepResult":{"duration":{"seconds":0,"nanos":150924},"status":"PASSED"},"timestamp":{"seconds":1757374013,"nanos":897000000}}},{"testStepStarted":{"testCaseStartedId":"e76ca870-6212-4249-935b-841cab526114","testStepId":"6d1ef1b5-7d32-4d0f-9655-a91d65c14cb4","timestamp":{"seconds":1757374013,"nanos":897000000}}},{"testStepFinished":{"testCaseStartedId":"e76ca870-6212-4249-935b-841cab526114","testStepId":"6d1ef1b5-7d32-4d0f-9655-a91d65c14cb4","testStepResult":{"duration":{"seconds":0,"nanos":83440759},"status":"PASSED"},"timestamp":{"seconds":1757374013,"nanos":980000000}}},{"testStepStarted":{"testCaseStartedId":"e76ca870-6212-4249-935b-841cab526114","testStepId":"ea753251-9678-4484-a455-a4d373553556","timestamp":{"seconds":1757374013,"nanos":981000000}}},{"testStepFinished":{"testCaseStartedId":"e76ca870-6212-4249-935b-841cab526114","testStepId":"ea753251-9678-4484-a455-a4d373553556","testStepResult":{"duration":{"seconds":0,"nanos":815759},"status":"PASSED"},"timestamp":{"seconds":1757374013,"nanos":981000000}}},{"testStepStarted":{"testCaseStartedId":"e76ca870-6212-4249-935b-841cab526114","testStepId":"4e42f131-9c4e-45a7-82d5-eb6a1342d9d5","timestamp":{"seconds":1757374013,"nanos":982000000}}},{"testStepFinished":{"testCaseStartedId":"e76ca870-6212-4249-935b-841cab526114","testStepId":"4e42f131-9c4e-45a7-82d5-eb6a1342d9d5","testStepResult":{"duration":{"seconds":0,"nanos":79723608},"status":"PASSED"},"timestamp":{"seconds":1757374014,"nanos":61000000}}},{"testStepStarted":{"testCaseStartedId":"e76ca870-6212-4249-935b-841cab526114","testStepId":"8a45ea68-a401-4f27-b77e-11e7be136f1b","timestamp":{"seconds":1757374014,"nanos":61000000}}},{"testStepFinished":{"testCaseStartedId":"e76ca870-6212-4249-935b-841cab526114","testStepId":"8a45ea68-a401-4f27-b77e-11e7be136f1b","testStepResult":{"duration":{"seconds":0,"nanos":138806},"status":"PASSED"},"timestamp":{"seconds":1757374014,"nanos":62000000}}},{"testStepStarted":{"testCaseStartedId":"e76ca870-6212-4249-935b-841cab526114","testStepId":"a34f9221-9ea9-406c-b2f0-aa7767d7eb1d","timestamp":{"seconds":1757374014,"nanos":62000000}}},{"testStepFinished":{"testCaseStartedId":"e76ca870-6212-4249-935b-841cab526114","testStepId":"a34f9221-9ea9-406c-b2f0-aa7767d7eb1d","testStepResult":{"duration":{"seconds":0,"nanos":138356972},"status":"PASSED"},"timestamp":{"seconds":1757374014,"nanos":200000000}}},{"testStepStarted":{"testCaseStartedId":"e76ca870-6212-4249-935b-841cab526114","testStepId":"a6494540-bcf8-40be-a0f4-81f6f042fc4d","timestamp":{"seconds":1757374014,"nanos":200000000}}},{"testStepFinished":{"testCaseStartedId":"e76ca870-6212-4249-935b-841cab526114","testStepId":"a6494540-bcf8-40be-a0f4-81f6f042fc4d","testStepResult":{"duration":{"seconds":0,"nanos":78422618},"status":"PASSED"},"timestamp":{"seconds":1757374014,"nanos":279000000}}},{"testStepStarted":{"testCaseStartedId":"e76ca870-6212-4249-935b-841cab526114","testStepId":"212fe074-207d-44ab-b491-5234e40d6430","timestamp":{"seconds":1757374014,"nanos":279000000}}},{"testStepFinished":{"testCaseStartedId":"e76ca870-6212-4249-935b-841cab526114","testStepId":"212fe074-207d-44ab-b491-5234e40d6430","testStepResult":{"duration":{"seconds":0,"nanos":307839},"status":"PASSED"},"timestamp":{"seconds":1757374014,"nanos":279000000}}},{"testStepStarted":{"testCaseStartedId":"e76ca870-6212-4249-935b-841cab526114","testStepId":"0380c104-9686-4dc7-94d7-20f02cd89fc6","timestamp":{"seconds":1757374014,"nanos":279000000}}},{"testStepFinished":{"testCaseStartedId":"e76ca870-6212-4249-935b-841cab526114","testStepId":"0380c104-9686-4dc7-94d7-20f02cd89fc6","testStepResult":{"duration":{"seconds":0,"nanos":78024198},"status":"PASSED"},"timestamp":{"seconds":1757374014,"nanos":357000000}}},{"testStepStarted":{"testCaseStartedId":"e76ca870-6212-4249-935b-841cab526114","testStepId":"0b320521-43f8-46bd-83d2-b7d141bb6fc8","timestamp":{"seconds":1757374014,"nanos":357000000}}},{"testStepFinished":{"testCaseStartedId":"e76ca870-6212-4249-935b-841cab526114","testStepId":"0b320521-43f8-46bd-83d2-b7d141bb6fc8","testStepResult":{"duration":{"seconds":0,"nanos":81747437},"status":"PASSED"},"timestamp":{"seconds":1757374014,"nanos":439000000}}},{"testStepStarted":{"testCaseStartedId":"e76ca870-6212-4249-935b-841cab526114","testStepId":"22b898ba-c7e2-49cc-8793-9d22dcfc33dc","timestamp":{"seconds":1757374014,"nanos":439000000}}},{"testStepFinished":{"testCaseStartedId":"e76ca870-6212-4249-935b-841cab526114","testStepId":"22b898ba-c7e2-49cc-8793-9d22dcfc33dc","testStepResult":{"duration":{"seconds":0,"nanos":244091},"status":"PASSED"},"timestamp":{"seconds":1757374014,"nanos":440000000}}},{"testStepStarted":{"testCaseStartedId":"e76ca870-6212-4249-935b-841cab526114","testStepId":"86d90740-30f7-4507-8f0f-2c4ac1a54eec","timestamp":{"seconds":1757374014,"nanos":440000000}}},{"testStepFinished":{"testCaseStartedId":"e76ca870-6212-4249-935b-841cab526114","testStepId":"86d90740-30f7-4507-8f0f-2c4ac1a54eec","testStepResult":{"duration":{"seconds":0,"nanos":165754},"status":"PASSED"},"timestamp":{"seconds":1757374014,"nanos":440000000}}},{"testStepStarted":{"testCaseStartedId":"e76ca870-6212-4249-935b-841cab526114","testStepId":"cc242d3a-7225-475b-ad90-322316ae0e7d","timestamp":{"seconds":1757374014,"nanos":440000000}}},{"testStepFinished":{"testCaseStartedId":"e76ca870-6212-4249-935b-841cab526114","testStepId":"cc242d3a-7225-475b-ad90-322316ae0e7d","testStepResult":{"duration":{"seconds":0,"nanos":165360},"status":"PASSED"},"timestamp":{"seconds":1757374014,"nanos":440000000}}},{"testStepStarted":{"testCaseStartedId":"e76ca870-6212-4249-935b-841cab526114","testStepId":"ad388f2c-3405-46d8-b57c-a98c27e05c6e","timestamp":{"seconds":1757374014,"nanos":440000000}}},{"testStepFinished":{"testCaseStartedId":"e76ca870-6212-4249-935b-841cab526114","testStepId":"ad388f2c-3405-46d8-b57c-a98c27e05c6e","testStepResult":{"duration":{"seconds":0,"nanos":189226},"status":"PASSED"},"timestamp":{"seconds":1757374014,"nanos":440000000}}},{"testCaseFinished":{"testCaseStartedId":"e76ca870-6212-4249-935b-841cab526114","timestamp":{"seconds":1757374014,"nanos":440000000},"willBeRetried":false}},{"testCaseStarted":{"attempt":0,"testCaseId":"ad18cb5c-3771-46cb-9c7d-91f1a9e5cdbc","id":"932ff136-bb79-48ee-9cfe-9d8cd69162dd","timestamp":{"seconds":1757374014,"nanos":440000000}}},{"testStepStarted":{"testCaseStartedId":"932ff136-bb79-48ee-9cfe-9d8cd69162dd","testStepId":"ee4c18d8-cbde-41d8-a4b1-b23483b96fc8","timestamp":{"seconds":1757374014,"nanos":441000000}}},{"testStepFinished":{"testCaseStartedId":"932ff136-bb79-48ee-9cfe-9d8cd69162dd","testStepId":"ee4c18d8-cbde-41d8-a4b1-b23483b96fc8","testStepResult":{"duration":{"seconds":0,"nanos":156109},"status":"PASSED"},"timestamp":{"seconds":1757374014,"nanos":441000000}}},{"testStepStarted":{"testCaseStartedId":"932ff136-bb79-48ee-9cfe-9d8cd69162dd","testStepId":"18bbcb73-8ff3-49bc-a399-66c38275f367","timestamp":{"seconds":1757374014,"nanos":441000000}}},{"testStepFinished":{"testCaseStartedId":"932ff136-bb79-48ee-9cfe-9d8cd69162dd","testStepId":"18bbcb73-8ff3-49bc-a399-66c38275f367","testStepResult":{"duration":{"seconds":0,"nanos":79666759},"status":"PASSED"},"timestamp":{"seconds":1757374014,"nanos":520000000}}},{"testStepStarted":{"testCaseStartedId":"932ff136-bb79-48ee-9cfe-9d8cd69162dd","testStepId":"c7f4c5f2-6849-46d2-ae87-5825082be54f","timestamp":{"seconds":1757374014,"nanos":521000000}}},{"testStepFinished":{"testCaseStartedId":"932ff136-bb79-48ee-9cfe-9d8cd69162dd","testStepId":"c7f4c5f2-6849-46d2-ae87-5825082be54f","testStepResult":{"duration":{"seconds":0,"nanos":735878},"status":"PASSED"},"timestamp":{"seconds":1757374014,"nanos":521000000}}},{"testStepStarted":{"testCaseStartedId":"932ff136-bb79-48ee-9cfe-9d8cd69162dd","testStepId":"139683b3-a3ba-4302-b938-72e643132670","timestamp":{"seconds":1757374014,"nanos":521000000}}},{"testStepFinished":{"testCaseStartedId":"932ff136-bb79-48ee-9cfe-9d8cd69162dd","testStepId":"139683b3-a3ba-4302-b938-72e643132670","testStepResult":{"duration":{"seconds":0,"nanos":79320731},"status":"PASSED"},"timestamp":{"seconds":1757374014,"nanos":601000000}}},{"testStepStarted":{"testCaseStartedId":"932ff136-bb79-48ee-9cfe-9d8cd69162dd","testStepId":"db4ccfd8-9eab-4d42-b85b-624e7d74b163","timestamp":{"seconds":1757374014,"nanos":601000000}}},{"testStepFinished":{"testCaseStartedId":"932ff136-bb79-48ee-9cfe-9d8cd69162dd","testStepId":"db4ccfd8-9eab-4d42-b85b-624e7d74b163","testStepResult":{"duration":{"seconds":0,"nanos":247937},"status":"PASSED"},"timestamp":{"seconds":1757374014,"nanos":601000000}}},{"testStepStarted":{"testCaseStartedId":"932ff136-bb79-48ee-9cfe-9d8cd69162dd","testStepId":"3af8c87d-e177-47f0-93ed-e7deaf4b2cf0","timestamp":{"seconds":1757374014,"nanos":601000000}}},{"testStepFinished":{"testCaseStartedId":"932ff136-bb79-48ee-9cfe-9d8cd69162dd","testStepId":"3af8c87d-e177-47f0-93ed-e7deaf4b2cf0","testStepResult":{"duration":{"seconds":0,"nanos":384650673},"status":"PASSED"},"timestamp":{"seconds":1757374014,"nanos":986000000}}},{"testStepStarted":{"testCaseStartedId":"932ff136-bb79-48ee-9cfe-9d8cd69162dd","testStepId":"87f743ba-7172-4a5f-a738-5d6206bc0441","timestamp":{"seconds":1757374014,"nanos":986000000}}},{"testStepFinished":{"testCaseStartedId":"932ff136-bb79-48ee-9cfe-9d8cd69162dd","testStepId":"87f743ba-7172-4a5f-a738-5d6206bc0441","testStepResult":{"duration":{"seconds":0,"nanos":77583483},"status":"PASSED"},"timestamp":{"seconds":1757374015,"nanos":64000000}}},{"testStepStarted":{"testCaseStartedId":"932ff136-bb79-48ee-9cfe-9d8cd69162dd","testStepId":"416ae649-7260-4876-8231-35127d547870","timestamp":{"seconds":1757374015,"nanos":64000000}}},{"testStepFinished":{"testCaseStartedId":"932ff136-bb79-48ee-9cfe-9d8cd69162dd","testStepId":"416ae649-7260-4876-8231-35127d547870","testStepResult":{"duration":{"seconds":0,"nanos":231542},"status":"PASSED"},"timestamp":{"seconds":1757374015,"nanos":64000000}}},{"testStepStarted":{"testCaseStartedId":"932ff136-bb79-48ee-9cfe-9d8cd69162dd","testStepId":"8e5758e1-09d2-42d4-840a-7f90e99a88cf","timestamp":{"seconds":1757374015,"nanos":64000000}}},{"testStepFinished":{"testCaseStartedId":"932ff136-bb79-48ee-9cfe-9d8cd69162dd","testStepId":"8e5758e1-09d2-42d4-840a-7f90e99a88cf","testStepResult":{"duration":{"seconds":0,"nanos":204598},"status":"PASSED"},"timestamp":{"seconds":1757374015,"nanos":64000000}}},{"testCaseFinished":{"testCaseStartedId":"932ff136-bb79-48ee-9cfe-9d8cd69162dd","timestamp":{"seconds":1757374015,"nanos":64000000},"willBeRetried":false}},{"testCaseStarted":{"attempt":0,"testCaseId":"febd5896-e5ff-46b1-b715-20101cae7714","id":"cb25fec7-ea10-47fd-a158-0c14467e229e","timestamp":{"seconds":1757374015,"nanos":65000000}}},{"testStepStarted":{"testCaseStartedId":"cb25fec7-ea10-47fd-a158-0c14467e229e","testStepId":"0a489202-ee84-4efb-89f6-f561870cd71f","timestamp":{"seconds":1757374015,"nanos":65000000}}},{"testStepFinished":{"testCaseStartedId":"cb25fec7-ea10-47fd-a158-0c14467e229e","testStepId":"0a489202-ee84-4efb-89f6-f561870cd71f","testStepResult":{"duration":{"seconds":0,"nanos":169267},"status":"PASSED"},"timestamp":{"seconds":1757374015,"nanos":65000000}}},{"testStepStarted":{"testCaseStartedId":"cb25fec7-ea10-47fd-a158-0c14467e229e","testStepId":"b021b74a-5d65-41c9-9b73-17404b3fe7db","timestamp":{"seconds":1757374015,"nanos":65000000}}},{"testStepFinished":{"testCaseStartedId":"cb25fec7-ea10-47fd-a158-0c14467e229e","testStepId":"b021b74a-5d65-41c9-9b73-17404b3fe7db","testStepResult":{"duration":{"seconds":0,"nanos":82221776},"status":"PASSED"},"timestamp":{"seconds":1757374015,"nanos":147000000}}},{"testStepStarted":{"testCaseStartedId":"cb25fec7-ea10-47fd-a158-0c14467e229e","testStepId":"18dd0fe0-788b-4fd3-976b-4559486d448b","timestamp":{"seconds":1757374015,"nanos":147000000}}},{"testStepFinished":{"testCaseStartedId":"cb25fec7-ea10-47fd-a158-0c14467e229e","testStepId":"18dd0fe0-788b-4fd3-976b-4559486d448b","testStepResult":{"duration":{"seconds":0,"nanos":701708},"status":"PASSED"},"timestamp":{"seconds":1757374015,"nanos":148000000}}},{"testStepStarted":{"testCaseStartedId":"cb25fec7-ea10-47fd-a158-0c14467e229e","testStepId":"3d3935a7-066e-4a49-b6a8-a47c954d0aa7","timestamp":{"seconds":1757374015,"nanos":148000000}}},{"testStepFinished":{"testCaseStartedId":"cb25fec7-ea10-47fd-a158-0c14467e229e","testStepId":"3d3935a7-066e-4a49-b6a8-a47c954d0aa7","testStepResult":{"duration":{"seconds":0,"nanos":81771846},"status":"PASSED"},"timestamp":{"seconds":1757374015,"nanos":230000000}}},{"testStepStarted":{"testCaseStartedId":"cb25fec7-ea10-47fd-a158-0c14467e229e","testStepId":"26765a18-fb60-46c6-9435-bf86eb25317f","timestamp":{"seconds":1757374015,"nanos":230000000}}},{"testStepFinished":{"testCaseStartedId":"cb25fec7-ea10-47fd-a158-0c14467e229e","testStepId":"26765a18-fb60-46c6-9435-bf86eb25317f","testStepResult":{"duration":{"seconds":0,"nanos":244936},"status":"PASSED"},"timestamp":{"seconds":1757374015,"nanos":230000000}}},{"testStepStarted":{"testCaseStartedId":"cb25fec7-ea10-47fd-a158-0c14467e229e","testStepId":"f47bbf84-5edc-4623-a053-b5ec6a205d54","timestamp":{"seconds":1757374015,"nanos":230000000}}},{"testStepFinished":{"testCaseStartedId":"cb25fec7-ea10-47fd-a158-0c14467e229e","testStepId":"f47bbf84-5edc-4623-a053-b5ec6a205d54","testStepResult":{"duration":{"seconds":0,"nanos":372119467},"status":"PASSED"},"timestamp":{"seconds":1757374015,"nanos":602000000}}},{"testStepStarted":{"testCaseStartedId":"cb25fec7-ea10-47fd-a158-0c14467e229e","testStepId":"9b6a86c7-ec8a-4934-947a-fc3181b4f637","timestamp":{"seconds":1757374015,"nanos":603000000}}},{"testStepFinished":{"testCaseStartedId":"cb25fec7-ea10-47fd-a158-0c14467e229e","testStepId":"9b6a86c7-ec8a-4934-947a-fc3181b4f637","testStepResult":{"duration":{"seconds":0,"nanos":78278579},"status":"PASSED"},"timestamp":{"seconds":1757374015,"nanos":681000000}}},{"testStepStarted":{"testCaseStartedId":"cb25fec7-ea10-47fd-a158-0c14467e229e","testStepId":"cde15a26-e13f-4191-82e7-468ab73a3b6f","timestamp":{"seconds":1757374015,"nanos":681000000}}},{"testStepFinished":{"testCaseStartedId":"cb25fec7-ea10-47fd-a158-0c14467e229e","testStepId":"cde15a26-e13f-4191-82e7-468ab73a3b6f","testStepResult":{"duration":{"seconds":0,"nanos":241067},"status":"PASSED"},"timestamp":{"seconds":1757374015,"nanos":681000000}}},{"testStepStarted":{"testCaseStartedId":"cb25fec7-ea10-47fd-a158-0c14467e229e","testStepId":"21fbd689-3fc1-453d-be88-b3067b5199a0","timestamp":{"seconds":1757374015,"nanos":681000000}}},{"testStepFinished":{"testCaseStartedId":"cb25fec7-ea10-47fd-a158-0c14467e229e","testStepId":"21fbd689-3fc1-453d-be88-b3067b5199a0","testStepResult":{"duration":{"seconds":0,"nanos":184584},"status":"PASSED"},"timestamp":{"seconds":1757374015,"nanos":682000000}}},{"testCaseFinished":{"testCaseStartedId":"cb25fec7-ea10-47fd-a158-0c14467e229e","timestamp":{"seconds":1757374015,"nanos":682000000},"willBeRetried":false}},{"testCaseStarted":{"attempt":0,"testCaseId":"863383f1-5d1d-49dd-a969-f52bec518148","id":"f4ee77e8-e4b5-4f3e-9a25-2249770c1533","timestamp":{"seconds":1757374015,"nanos":682000000}}},{"testStepStarted":{"testCaseStartedId":"f4ee77e8-e4b5-4f3e-9a25-2249770c1533","testStepId":"3a1ba7df-2fc9-4fb4-9ec2-0b0a6e33fda4","timestamp":{"seconds":1757374015,"nanos":682000000}}},{"testStepFinished":{"testCaseStartedId":"f4ee77e8-e4b5-4f3e-9a25-2249770c1533","testStepId":"3a1ba7df-2fc9-4fb4-9ec2-0b0a6e33fda4","testStepResult":{"duration":{"seconds":0,"nanos":147573},"status":"PASSED"},"timestamp":{"seconds":1757374015,"nanos":682000000}}},{"testStepStarted":{"testCaseStartedId":"f4ee77e8-e4b5-4f3e-9a25-2249770c1533","testStepId":"45d143f9-3e60-4d0e-b230-8bbe4825a10c","timestamp":{"seconds":1757374015,"nanos":682000000}}},{"testStepFinished":{"testCaseStartedId":"f4ee77e8-e4b5-4f3e-9a25-2249770c1533","testStepId":"45d143f9-3e60-4d0e-b230-8bbe4825a10c","testStepResult":{"duration":{"seconds":0,"nanos":79158220},"status":"PASSED"},"timestamp":{"seconds":1757374015,"nanos":761000000}}},{"testStepStarted":{"testCaseStartedId":"f4ee77e8-e4b5-4f3e-9a25-2249770c1533","testStepId":"7deca547-7c54-40cb-b2c1-8a2676623d69","timestamp":{"seconds":1757374015,"nanos":761000000}}},{"testStepFinished":{"testCaseStartedId":"f4ee77e8-e4b5-4f3e-9a25-2249770c1533","testStepId":"7deca547-7c54-40cb-b2c1-8a2676623d69","testStepResult":{"duration":{"seconds":0,"nanos":704367},"status":"PASSED"},"timestamp":{"seconds":1757374015,"nanos":762000000}}},{"testStepStarted":{"testCaseStartedId":"f4ee77e8-e4b5-4f3e-9a25-2249770c1533","testStepId":"1aba952a-9eeb-458b-9187-8cc1278a920c","timestamp":{"seconds":1757374015,"nanos":762000000}}},{"testStepFinished":{"testCaseStartedId":"f4ee77e8-e4b5-4f3e-9a25-2249770c1533","testStepId":"1aba952a-9eeb-458b-9187-8cc1278a920c","testStepResult":{"duration":{"seconds":0,"nanos":452287},"status":"PASSED"},"timestamp":{"seconds":1757374015,"nanos":762000000}}},{"testStepStarted":{"testCaseStartedId":"f4ee77e8-e4b5-4f3e-9a25-2249770c1533","testStepId":"a8a0496b-f3eb-4f05-942a-e6361f7e8b5c","timestamp":{"seconds":1757374015,"nanos":763000000}}},{"testStepFinished":{"testCaseStartedId":"f4ee77e8-e4b5-4f3e-9a25-2249770c1533","testStepId":"a8a0496b-f3eb-4f05-942a-e6361f7e8b5c","testStepResult":{"duration":{"seconds":0,"nanos":80660974},"status":"PASSED"},"timestamp":{"seconds":1757374015,"nanos":843000000}}},{"testStepStarted":{"testCaseStartedId":"f4ee77e8-e4b5-4f3e-9a25-2249770c1533","testStepId":"e3111e1d-a59f-4f7c-a61c-206c927ad8ae","timestamp":{"seconds":1757374015,"nanos":843000000}}},{"testStepFinished":{"testCaseStartedId":"f4ee77e8-e4b5-4f3e-9a25-2249770c1533","testStepId":"e3111e1d-a59f-4f7c-a61c-206c927ad8ae","testStepResult":{"duration":{"seconds":0,"nanos":847768},"status":"PASSED"},"timestamp":{"seconds":1757374015,"nanos":844000000}}},{"testStepStarted":{"testCaseStartedId":"f4ee77e8-e4b5-4f3e-9a25-2249770c1533","testStepId":"c35274fe-0852-4487-9ad6-b3ef7558cf1b","timestamp":{"seconds":1757374015,"nanos":844000000}}},{"testStepFinished":{"testCaseStartedId":"f4ee77e8-e4b5-4f3e-9a25-2249770c1533","testStepId":"c35274fe-0852-4487-9ad6-b3ef7558cf1b","testStepResult":{"duration":{"seconds":0,"nanos":382050},"status":"PASSED"},"timestamp":{"seconds":1757374015,"nanos":845000000}}},{"testCaseFinished":{"testCaseStartedId":"f4ee77e8-e4b5-4f3e-9a25-2249770c1533","timestamp":{"seconds":1757374015,"nanos":845000000},"willBeRetried":false}},{"testCaseStarted":{"attempt":0,"testCaseId":"6d013d03-21e4-4ff7-8a30-9b5ebbc72e18","id":"01b57c00-b788-4cee-a200-fd8e96b53352","timestamp":{"seconds":1757374015,"nanos":845000000}}},{"testStepStarted":{"testCaseStartedId":"01b57c00-b788-4cee-a200-fd8e96b53352","testStepId":"2fda6152-b81c-4a24-a9e6-8f1658e76543","timestamp":{"seconds":1757374015,"nanos":845000000}}},{"testStepFinished":{"testCaseStartedId":"01b57c00-b788-4cee-a200-fd8e96b53352","testStepId":"2fda6152-b81c-4a24-a9e6-8f1658e76543","testStepResult":{"duration":{"seconds":0,"nanos":149374},"status":"PASSED"},"timestamp":{"seconds":1757374015,"nanos":845000000}}},{"testStepStarted":{"testCaseStartedId":"01b57c00-b788-4cee-a200-fd8e96b53352","testStepId":"451f5f18-710d-4bd3-83f6-add8cb0897cc","timestamp":{"seconds":1757374015,"nanos":845000000}}},{"testStepFinished":{"testCaseStartedId":"01b57c00-b788-4cee-a200-fd8e96b53352","testStepId":"451f5f18-710d-4bd3-83f6-add8cb0897cc","testStepResult":{"duration":{"seconds":0,"nanos":79697724},"status":"PASSED"},"timestamp":{"seconds":1757374015,"nanos":925000000}}},{"testStepStarted":{"testCaseStartedId":"01b57c00-b788-4cee-a200-fd8e96b53352","testStepId":"5f82887c-3a5b-4583-8716-1588e4cfc416","timestamp":{"seconds":1757374015,"nanos":925000000}}},{"testStepFinished":{"testCaseStartedId":"01b57c00-b788-4cee-a200-fd8e96b53352","testStepId":"5f82887c-3a5b-4583-8716-1588e4cfc416","testStepResult":{"duration":{"seconds":0,"nanos":1236705},"status":"PASSED"},"timestamp":{"seconds":1757374015,"nanos":926000000}}},{"testStepStarted":{"testCaseStartedId":"01b57c00-b788-4cee-a200-fd8e96b53352","testStepId":"a3789c1a-707b-4f5a-a340-824e2b82a35f","timestamp":{"seconds":1757374015,"nanos":927000000}}},{"testStepFinished":{"testCaseStartedId":"01b57c00-b788-4cee-a200-fd8e96b53352","testStepId":"a3789c1a-707b-4f5a-a340-824e2b82a35f","testStepResult":{"duration":{"seconds":0,"nanos":1800795},"status":"PASSED"},"timestamp":{"seconds":1757374015,"nanos":929000000}}},{"testStepStarted":{"testCaseStartedId":"01b57c00-b788-4cee-a200-fd8e96b53352","testStepId":"a47b6087-1c80-41ac-86a6-f0b0d903a7ad","timestamp":{"seconds":1757374015,"nanos":968000000}}},{"testStepFinished":{"testCaseStartedId":"01b57c00-b788-4cee-a200-fd8e96b53352","testStepId":"a47b6087-1c80-41ac-86a6-f0b0d903a7ad","testStepResult":{"duration":{"seconds":0,"nanos":129165809},"status":"PASSED"},"timestamp":{"seconds":1757374016,"nanos":97000000}}},{"testStepStarted":{"testCaseStartedId":"01b57c00-b788-4cee-a200-fd8e96b53352","testStepId":"d3d974f9-ef0c-4671-9531-dfe3dfef74a2","timestamp":{"seconds":1757374016,"nanos":97000000}}},{"testStepFinished":{"testCaseStartedId":"01b57c00-b788-4cee-a200-fd8e96b53352","testStepId":"d3d974f9-ef0c-4671-9531-dfe3dfef74a2","testStepResult":{"duration":{"seconds":0,"nanos":86382464},"status":"PASSED"},"timestamp":{"seconds":1757374016,"nanos":183000000}}},{"testStepStarted":{"testCaseStartedId":"01b57c00-b788-4cee-a200-fd8e96b53352","testStepId":"fe79e4fa-e7a1-4e48-b1ea-ed76372e479d","timestamp":{"seconds":1757374016,"nanos":183000000}}},{"testStepFinished":{"testCaseStartedId":"01b57c00-b788-4cee-a200-fd8e96b53352","testStepId":"fe79e4fa-e7a1-4e48-b1ea-ed76372e479d","testStepResult":{"duration":{"seconds":0,"nanos":273328},"status":"PASSED"},"timestamp":{"seconds":1757374016,"nanos":184000000}}},{"testStepStarted":{"testCaseStartedId":"01b57c00-b788-4cee-a200-fd8e96b53352","testStepId":"5eeb4e87-ecb6-4faa-97da-9fe6804600b2","timestamp":{"seconds":1757374016,"nanos":184000000}}},{"testStepFinished":{"testCaseStartedId":"01b57c00-b788-4cee-a200-fd8e96b53352","testStepId":"5eeb4e87-ecb6-4faa-97da-9fe6804600b2","testStepResult":{"duration":{"seconds":0,"nanos":694204},"status":"PASSED"},"timestamp":{"seconds":1757374016,"nanos":185000000}}},{"testStepStarted":{"testCaseStartedId":"01b57c00-b788-4cee-a200-fd8e96b53352","testStepId":"a2a20d05-91e4-4a3a-b256-55809a1cc876","timestamp":{"seconds":1757374016,"nanos":185000000}}},{"testStepFinished":{"testCaseStartedId":"01b57c00-b788-4cee-a200-fd8e96b53352","testStepId":"a2a20d05-91e4-4a3a-b256-55809a1cc876","testStepResult":{"duration":{"seconds":0,"nanos":185347},"status":"PASSED"},"timestamp":{"seconds":1757374016,"nanos":185000000}}},{"testCaseFinished":{"testCaseStartedId":"01b57c00-b788-4cee-a200-fd8e96b53352","timestamp":{"seconds":1757374016,"nanos":185000000},"willBeRetried":false}},{"testCaseStarted":{"attempt":0,"testCaseId":"426eaccc-483c-4573-9ec2-04e24af4bd10","id":"79683748-38a3-4bb8-b17e-b49521cb0a89","timestamp":{"seconds":1757374016,"nanos":185000000}}},{"testStepStarted":{"testCaseStartedId":"79683748-38a3-4bb8-b17e-b49521cb0a89","testStepId":"27852b9b-8e31-4efd-83bd-396aa2877fe5","timestamp":{"seconds":1757374016,"nanos":185000000}}},{"testStepFinished":{"testCaseStartedId":"79683748-38a3-4bb8-b17e-b49521cb0a89","testStepId":"27852b9b-8e31-4efd-83bd-396aa2877fe5","testStepResult":{"duration":{"seconds":0,"nanos":175447},"status":"PASSED"},"timestamp":{"seconds":1757374016,"nanos":185000000}}},{"testStepStarted":{"testCaseStartedId":"79683748-38a3-4bb8-b17e-b49521cb0a89","testStepId":"7c0431de-6f29-4edf-8a55-7032f696023c","timestamp":{"seconds":1757374016,"nanos":185000000}}},{"testStepFinished":{"testCaseStartedId":"79683748-38a3-4bb8-b17e-b49521cb0a89","testStepId":"7c0431de-6f29-4edf-8a55-7032f696023c","testStepResult":{"duration":{"seconds":0,"nanos":85853508},"status":"PASSED"},"timestamp":{"seconds":1757374016,"nanos":271000000}}},{"testStepStarted":{"testCaseStartedId":"79683748-38a3-4bb8-b17e-b49521cb0a89","testStepId":"fed86daf-46d0-4c7d-99aa-396260703617","timestamp":{"seconds":1757374016,"nanos":271000000}}},{"testStepFinished":{"testCaseStartedId":"79683748-38a3-4bb8-b17e-b49521cb0a89","testStepId":"fed86daf-46d0-4c7d-99aa-396260703617","testStepResult":{"duration":{"seconds":0,"nanos":855074},"status":"PASSED"},"timestamp":{"seconds":1757374016,"nanos":272000000}}},{"testStepStarted":{"testCaseStartedId":"79683748-38a3-4bb8-b17e-b49521cb0a89","testStepId":"2fcb2267-84b5-4eee-8157-ed1f3c2df11b","timestamp":{"seconds":1757374016,"nanos":272000000}}},{"testStepFinished":{"testCaseStartedId":"79683748-38a3-4bb8-b17e-b49521cb0a89","testStepId":"2fcb2267-84b5-4eee-8157-ed1f3c2df11b","testStepResult":{"duration":{"seconds":0,"nanos":79371630},"status":"PASSED"},"timestamp":{"seconds":1757374016,"nanos":352000000}}},{"testStepStarted":{"testCaseStartedId":"79683748-38a3-4bb8-b17e-b49521cb0a89","testStepId":"14f46388-271f-405c-a329-5fc67bf9e44b","timestamp":{"seconds":1757374016,"nanos":352000000}}},{"testStepFinished":{"testCaseStartedId":"79683748-38a3-4bb8-b17e-b49521cb0a89","testStepId":"14f46388-271f-405c-a329-5fc67bf9e44b","testStepResult":{"duration":{"seconds":0,"nanos":86038738},"status":"PASSED"},"timestamp":{"seconds":1757374016,"nanos":438000000}}},{"testStepStarted":{"testCaseStartedId":"79683748-38a3-4bb8-b17e-b49521cb0a89","testStepId":"586fc2b0-044a-4839-8122-e5a3e8d8508f","timestamp":{"seconds":1757374016,"nanos":438000000}}},{"testStepFinished":{"testCaseStartedId":"79683748-38a3-4bb8-b17e-b49521cb0a89","testStepId":"586fc2b0-044a-4839-8122-e5a3e8d8508f","testStepResult":{"duration":{"seconds":0,"nanos":925777},"status":"PASSED"},"timestamp":{"seconds":1757374016,"nanos":439000000}}},{"testStepStarted":{"testCaseStartedId":"79683748-38a3-4bb8-b17e-b49521cb0a89","testStepId":"127ae0d9-6086-449d-a7e5-c1239a78bd82","timestamp":{"seconds":1757374016,"nanos":439000000}}},{"testStepFinished":{"testCaseStartedId":"79683748-38a3-4bb8-b17e-b49521cb0a89","testStepId":"127ae0d9-6086-449d-a7e5-c1239a78bd82","testStepResult":{"duration":{"seconds":0,"nanos":1310293},"status":"PASSED"},"timestamp":{"seconds":1757374016,"nanos":440000000}}},{"testStepStarted":{"testCaseStartedId":"79683748-38a3-4bb8-b17e-b49521cb0a89","testStepId":"cf091d44-e532-4cd9-8dcd-5d06ef867d65","timestamp":{"seconds":1757374016,"nanos":440000000}}},{"testStepFinished":{"testCaseStartedId":"79683748-38a3-4bb8-b17e-b49521cb0a89","testStepId":"cf091d44-e532-4cd9-8dcd-5d06ef867d65","testStepResult":{"duration":{"seconds":0,"nanos":189000},"status":"PASSED"},"timestamp":{"seconds":1757374016,"nanos":441000000}}},{"testCaseFinished":{"testCaseStartedId":"79683748-38a3-4bb8-b17e-b49521cb0a89","timestamp":{"seconds":1757374016,"nanos":441000000},"willBeRetried":false}},{"testCaseStarted":{"attempt":0,"testCaseId":"02d1b642-3781-4096-aa93-07c8999d5f17","id":"44507873-29a3-4357-b949-e6cadc5f31ff","timestamp":{"seconds":1757374016,"nanos":441000000}}},{"testStepStarted":{"testCaseStartedId":"44507873-29a3-4357-b949-e6cadc5f31ff","testStepId":"34afb33c-6711-48ad-b759-5df43a3a8567","timestamp":{"seconds":1757374016,"nanos":441000000}}},{"testStepFinished":{"testCaseStartedId":"44507873-29a3-4357-b949-e6cadc5f31ff","testStepId":"34afb33c-6711-48ad-b759-5df43a3a8567","testStepResult":{"duration":{"seconds":0,"nanos":145483},"status":"PASSED"},"timestamp":{"seconds":1757374016,"nanos":441000000}}},{"testStepStarted":{"testCaseStartedId":"44507873-29a3-4357-b949-e6cadc5f31ff","testStepId":"6e4cfda5-0e74-4bbc-ab3b-a62a36b774b4","timestamp":{"seconds":1757374016,"nanos":441000000}}},{"testStepFinished":{"testCaseStartedId":"44507873-29a3-4357-b949-e6cadc5f31ff","testStepId":"6e4cfda5-0e74-4bbc-ab3b-a62a36b774b4","testStepResult":{"duration":{"seconds":0,"nanos":87813376},"status":"PASSED"},"timestamp":{"seconds":1757374016,"nanos":529000000}}},{"testStepStarted":{"testCaseStartedId":"44507873-29a3-4357-b949-e6cadc5f31ff","testStepId":"6a02bc0c-5256-4180-8f52-873b345d3e02","timestamp":{"seconds":1757374016,"nanos":529000000}}},{"testStepFinished":{"testCaseStartedId":"44507873-29a3-4357-b949-e6cadc5f31ff","testStepId":"6a02bc0c-5256-4180-8f52-873b345d3e02","testStepResult":{"duration":{"seconds":0,"nanos":81691814},"status":"PASSED"},"timestamp":{"seconds":1757374016,"nanos":611000000}}},{"testStepStarted":{"testCaseStartedId":"44507873-29a3-4357-b949-e6cadc5f31ff","testStepId":"2e827d45-e383-45ed-8c67-dd378a4dd834","timestamp":{"seconds":1757374016,"nanos":611000000}}},{"testStepFinished":{"testCaseStartedId":"44507873-29a3-4357-b949-e6cadc5f31ff","testStepId":"2e827d45-e383-45ed-8c67-dd378a4dd834","testStepResult":{"duration":{"seconds":0,"nanos":455201},"status":"PASSED"},"timestamp":{"seconds":1757374016,"nanos":611000000}}},{"testStepStarted":{"testCaseStartedId":"44507873-29a3-4357-b949-e6cadc5f31ff","testStepId":"f9e185cd-0c4d-4217-a9e4-c6f8adac928d","timestamp":{"seconds":1757374016,"nanos":611000000}}},{"testStepFinished":{"testCaseStartedId":"44507873-29a3-4357-b949-e6cadc5f31ff","testStepId":"f9e185cd-0c4d-4217-a9e4-c6f8adac928d","testStepResult":{"duration":{"seconds":0,"nanos":81464194},"status":"PASSED"},"timestamp":{"seconds":1757374016,"nanos":693000000}}},{"testStepStarted":{"testCaseStartedId":"44507873-29a3-4357-b949-e6cadc5f31ff","testStepId":"99cf31d0-400e-40a0-bbe7-1fbe18fc7e88","timestamp":{"seconds":1757374016,"nanos":693000000}}},{"testStepFinished":{"testCaseStartedId":"44507873-29a3-4357-b949-e6cadc5f31ff","testStepId":"99cf31d0-400e-40a0-bbe7-1fbe18fc7e88","testStepResult":{"duration":{"seconds":0,"nanos":257056},"status":"PASSED"},"timestamp":{"seconds":1757374016,"nanos":693000000}}},{"testStepStarted":{"testCaseStartedId":"44507873-29a3-4357-b949-e6cadc5f31ff","testStepId":"4af8e7dd-d9c0-42b4-835c-b52cfac0b3b5","timestamp":{"seconds":1757374016,"nanos":693000000}}},{"testStepFinished":{"testCaseStartedId":"44507873-29a3-4357-b949-e6cadc5f31ff","testStepId":"4af8e7dd-d9c0-42b4-835c-b52cfac0b3b5","testStepResult":{"duration":{"seconds":0,"nanos":155475},"status":"PASSED"},"timestamp":{"seconds":1757374016,"nanos":694000000}}},{"testStepStarted":{"testCaseStartedId":"44507873-29a3-4357-b949-e6cadc5f31ff","testStepId":"5b376a66-6b72-463c-993a-fdd240a8f98c","timestamp":{"seconds":1757374016,"nanos":694000000}}},{"testStepFinished":{"testCaseStartedId":"44507873-29a3-4357-b949-e6cadc5f31ff","testStepId":"5b376a66-6b72-463c-993a-fdd240a8f98c","testStepResult":{"duration":{"seconds":0,"nanos":154125},"status":"PASSED"},"timestamp":{"seconds":1757374016,"nanos":694000000}}},{"testStepStarted":{"testCaseStartedId":"44507873-29a3-4357-b949-e6cadc5f31ff","testStepId":"66b5a3bf-8917-4ece-a093-31f6f90fe1ab","timestamp":{"seconds":1757374016,"nanos":694000000}}},{"testStepFinished":{"testCaseStartedId":"44507873-29a3-4357-b949-e6cadc5f31ff","testStepId":"66b5a3bf-8917-4ece-a093-31f6f90fe1ab","testStepResult":{"duration":{"seconds":0,"nanos":142485},"status":"PASSED"},"timestamp":{"seconds":1757374016,"nanos":694000000}}},{"testStepStarted":{"testCaseStartedId":"44507873-29a3-4357-b949-e6cadc5f31ff","testStepId":"1a8a461e-804e-44ba-8816-6ec24992bb07","timestamp":{"seconds":1757374016,"nanos":694000000}}},{"testStepFinished":{"testCaseStartedId":"44507873-29a3-4357-b949-e6cadc5f31ff","testStepId":"1a8a461e-804e-44ba-8816-6ec24992bb07","testStepResult":{"duration":{"seconds":0,"nanos":145625},"status":"PASSED"},"timestamp":{"seconds":1757374016,"nanos":694000000}}},{"testStepStarted":{"testCaseStartedId":"44507873-29a3-4357-b949-e6cadc5f31ff","testStepId":"bd00d9aa-792e-4c8f-bf8f-65aaa2d467b0","timestamp":{"seconds":1757374016,"nanos":694000000}}},{"testStepFinished":{"testCaseStartedId":"44507873-29a3-4357-b949-e6cadc5f31ff","testStepId":"bd00d9aa-792e-4c8f-bf8f-65aaa2d467b0","testStepResult":{"duration":{"seconds":0,"nanos":144419},"status":"PASSED"},"timestamp":{"seconds":1757374016,"nanos":694000000}}},{"testStepStarted":{"testCaseStartedId":"44507873-29a3-4357-b949-e6cadc5f31ff","testStepId":"f0ac48c8-4872-41c6-8cbc-fd2b4adcff96","timestamp":{"seconds":1757374016,"nanos":694000000}}},{"testStepFinished":{"testCaseStartedId":"44507873-29a3-4357-b949-e6cadc5f31ff","testStepId":"f0ac48c8-4872-41c6-8cbc-fd2b4adcff96","testStepResult":{"duration":{"seconds":0,"nanos":225607},"status":"PASSED"},"timestamp":{"seconds":1757374016,"nanos":695000000}}},{"testStepStarted":{"testCaseStartedId":"44507873-29a3-4357-b949-e6cadc5f31ff","testStepId":"b1a3bed9-ec43-4f43-b5e4-81ab99401c14","timestamp":{"seconds":1757374016,"nanos":695000000}}},{"testStepFinished":{"testCaseStartedId":"44507873-29a3-4357-b949-e6cadc5f31ff","testStepId":"b1a3bed9-ec43-4f43-b5e4-81ab99401c14","testStepResult":{"duration":{"seconds":0,"nanos":187552},"status":"PASSED"},"timestamp":{"seconds":1757374016,"nanos":695000000}}},{"testCaseFinished":{"testCaseStartedId":"44507873-29a3-4357-b949-e6cadc5f31ff","timestamp":{"seconds":1757374016,"nanos":695000000},"willBeRetried":false}},{"testCaseStarted":{"attempt":0,"testCaseId":"5f502ff1-2827-4625-9380-8deb0dd5f74d","id":"9751ee61-43f1-419b-9843-ebf12605ee47","timestamp":{"seconds":1757374016,"nanos":695000000}}},{"testStepStarted":{"testCaseStartedId":"9751ee61-43f1-419b-9843-ebf12605ee47","testStepId":"82f82a22-b452-48e4-9ef7-45258901e620","timestamp":{"seconds":1757374016,"nanos":695000000}}},{"testStepFinished":{"testCaseStartedId":"9751ee61-43f1-419b-9843-ebf12605ee47","testStepId":"82f82a22-b452-48e4-9ef7-45258901e620","testStepResult":{"duration":{"seconds":0,"nanos":168141},"status":"PASSED"},"timestamp":{"seconds":1757374016,"nanos":695000000}}},{"testStepStarted":{"testCaseStartedId":"9751ee61-43f1-419b-9843-ebf12605ee47","testStepId":"a76fe775-f459-40e4-b9b4-d4f6d5aea3fe","timestamp":{"seconds":1757374016,"nanos":695000000}}},{"testStepFinished":{"testCaseStartedId":"9751ee61-43f1-419b-9843-ebf12605ee47","testStepId":"a76fe775-f459-40e4-b9b4-d4f6d5aea3fe","testStepResult":{"duration":{"seconds":0,"nanos":86201291},"status":"PASSED"},"timestamp":{"seconds":1757374016,"nanos":782000000}}},{"testStepStarted":{"testCaseStartedId":"9751ee61-43f1-419b-9843-ebf12605ee47","testStepId":"1ad16282-f74b-4cfd-adea-2b6da6aa6f31","timestamp":{"seconds":1757374016,"nanos":782000000}}},{"testStepFinished":{"testCaseStartedId":"9751ee61-43f1-419b-9843-ebf12605ee47","testStepId":"1ad16282-f74b-4cfd-adea-2b6da6aa6f31","testStepResult":{"duration":{"seconds":0,"nanos":73979551},"status":"PASSED"},"timestamp":{"seconds":1757374016,"nanos":856000000}}},{"testStepStarted":{"testCaseStartedId":"9751ee61-43f1-419b-9843-ebf12605ee47","testStepId":"d918d267-48e7-460e-a272-3d9bc5d61478","timestamp":{"seconds":1757374016,"nanos":856000000}}},{"testStepFinished":{"testCaseStartedId":"9751ee61-43f1-419b-9843-ebf12605ee47","testStepId":"d918d267-48e7-460e-a272-3d9bc5d61478","testStepResult":{"duration":{"seconds":0,"nanos":376608},"status":"PASSED"},"timestamp":{"seconds":1757374016,"nanos":856000000}}},{"testStepStarted":{"testCaseStartedId":"9751ee61-43f1-419b-9843-ebf12605ee47","testStepId":"4c9e0084-afad-4fc1-9bec-6d475de84a23","timestamp":{"seconds":1757374016,"nanos":856000000}}},{"testStepFinished":{"testCaseStartedId":"9751ee61-43f1-419b-9843-ebf12605ee47","testStepId":"4c9e0084-afad-4fc1-9bec-6d475de84a23","testStepResult":{"duration":{"seconds":0,"nanos":219170},"status":"PASSED"},"timestamp":{"seconds":1757374016,"nanos":857000000}}},{"testStepStarted":{"testCaseStartedId":"9751ee61-43f1-419b-9843-ebf12605ee47","testStepId":"2c34ef3a-7795-4869-9b69-3597fd34d3e3","timestamp":{"seconds":1757374016,"nanos":857000000}}},{"testStepFinished":{"testCaseStartedId":"9751ee61-43f1-419b-9843-ebf12605ee47","testStepId":"2c34ef3a-7795-4869-9b69-3597fd34d3e3","testStepResult":{"duration":{"seconds":0,"nanos":79516601},"status":"PASSED"},"timestamp":{"seconds":1757374016,"nanos":936000000}}},{"testStepStarted":{"testCaseStartedId":"9751ee61-43f1-419b-9843-ebf12605ee47","testStepId":"8f7bbfce-83bc-4b7a-b179-c4da541aa7f6","timestamp":{"seconds":1757374016,"nanos":936000000}}},{"testStepFinished":{"testCaseStartedId":"9751ee61-43f1-419b-9843-ebf12605ee47","testStepId":"8f7bbfce-83bc-4b7a-b179-c4da541aa7f6","testStepResult":{"duration":{"seconds":0,"nanos":328715},"status":"PASSED"},"timestamp":{"seconds":1757374016,"nanos":937000000}}},{"testStepStarted":{"testCaseStartedId":"9751ee61-43f1-419b-9843-ebf12605ee47","testStepId":"51f9e794-92f0-46f2-9285-e37884edeb43","timestamp":{"seconds":1757374016,"nanos":937000000}}},{"testStepFinished":{"testCaseStartedId":"9751ee61-43f1-419b-9843-ebf12605ee47","testStepId":"51f9e794-92f0-46f2-9285-e37884edeb43","testStepResult":{"duration":{"seconds":0,"nanos":223588302},"status":"PASSED"},"timestamp":{"seconds":1757374017,"nanos":160000000}}},{"testStepStarted":{"testCaseStartedId":"9751ee61-43f1-419b-9843-ebf12605ee47","testStepId":"c719fd25-f17a-4de2-b6a0-f3f89df082c6","timestamp":{"seconds":1757374017,"nanos":161000000}}},{"testStepFinished":{"testCaseStartedId":"9751ee61-43f1-419b-9843-ebf12605ee47","testStepId":"c719fd25-f17a-4de2-b6a0-f3f89df082c6","testStepResult":{"duration":{"seconds":0,"nanos":79776216},"status":"PASSED"},"timestamp":{"seconds":1757374017,"nanos":240000000}}},{"testStepStarted":{"testCaseStartedId":"9751ee61-43f1-419b-9843-ebf12605ee47","testStepId":"47592c62-56f6-4705-88ee-7a5ca4819c58","timestamp":{"seconds":1757374017,"nanos":241000000}}},{"testStepFinished":{"testCaseStartedId":"9751ee61-43f1-419b-9843-ebf12605ee47","testStepId":"47592c62-56f6-4705-88ee-7a5ca4819c58","testStepResult":{"duration":{"seconds":0,"nanos":272406},"status":"PASSED"},"timestamp":{"seconds":1757374017,"nanos":241000000}}},{"testStepStarted":{"testCaseStartedId":"9751ee61-43f1-419b-9843-ebf12605ee47","testStepId":"20bd56d9-d348-4d15-8c84-49f81e5e47e9","timestamp":{"seconds":1757374017,"nanos":241000000}}},{"testStepFinished":{"testCaseStartedId":"9751ee61-43f1-419b-9843-ebf12605ee47","testStepId":"20bd56d9-d348-4d15-8c84-49f81e5e47e9","testStepResult":{"duration":{"seconds":0,"nanos":160784},"status":"PASSED"},"timestamp":{"seconds":1757374017,"nanos":241000000}}},{"testStepStarted":{"testCaseStartedId":"9751ee61-43f1-419b-9843-ebf12605ee47","testStepId":"8f561c18-3a8d-45e8-88f3-ef967ce851b1","timestamp":{"seconds":1757374017,"nanos":241000000}}},{"testStepFinished":{"testCaseStartedId":"9751ee61-43f1-419b-9843-ebf12605ee47","testStepId":"8f561c18-3a8d-45e8-88f3-ef967ce851b1","testStepResult":{"duration":{"seconds":0,"nanos":183211},"status":"PASSED"},"timestamp":{"seconds":1757374017,"nanos":241000000}}},{"testCaseFinished":{"testCaseStartedId":"9751ee61-43f1-419b-9843-ebf12605ee47","timestamp":{"seconds":1757374017,"nanos":241000000},"willBeRetried":false}},{"testCaseStarted":{"attempt":0,"testCaseId":"e6352810-8081-49ab-afc1-eb5be5a5fff1","id":"492f4ea5-7b77-410f-83a2-11d908df1f11","timestamp":{"seconds":1757374017,"nanos":241000000}}},{"testStepStarted":{"testCaseStartedId":"492f4ea5-7b77-410f-83a2-11d908df1f11","testStepId":"0f3132a7-117c-417b-afea-5ddc05b4112b","timestamp":{"seconds":1757374017,"nanos":241000000}}},{"testStepFinished":{"testCaseStartedId":"492f4ea5-7b77-410f-83a2-11d908df1f11","testStepId":"0f3132a7-117c-417b-afea-5ddc05b4112b","testStepResult":{"duration":{"seconds":0,"nanos":171953},"status":"PASSED"},"timestamp":{"seconds":1757374017,"nanos":242000000}}},{"testStepStarted":{"testCaseStartedId":"492f4ea5-7b77-410f-83a2-11d908df1f11","testStepId":"7a5cfa6f-e0fc-4663-9ee3-147fb631da88","timestamp":{"seconds":1757374017,"nanos":242000000}}},{"testStepFinished":{"testCaseStartedId":"492f4ea5-7b77-410f-83a2-11d908df1f11","testStepId":"7a5cfa6f-e0fc-4663-9ee3-147fb631da88","testStepResult":{"duration":{"seconds":0,"nanos":83299031},"status":"PASSED"},"timestamp":{"seconds":1757374017,"nanos":325000000}}},{"testStepStarted":{"testCaseStartedId":"492f4ea5-7b77-410f-83a2-11d908df1f11","testStepId":"bf3b4727-2392-4840-9ec1-2de73f8577e6","timestamp":{"seconds":1757374017,"nanos":325000000}}},{"testStepFinished":{"testCaseStartedId":"492f4ea5-7b77-410f-83a2-11d908df1f11","testStepId":"bf3b4727-2392-4840-9ec1-2de73f8577e6","testStepResult":{"duration":{"seconds":0,"nanos":125197},"status":"PASSED"},"timestamp":{"seconds":1757374017,"nanos":325000000}}},{"testStepStarted":{"testCaseStartedId":"492f4ea5-7b77-410f-83a2-11d908df1f11","testStepId":"ee085c74-bb83-4c95-8312-850ba67be0d6","timestamp":{"seconds":1757374017,"nanos":325000000}}},{"testStepFinished":{"testCaseStartedId":"492f4ea5-7b77-410f-83a2-11d908df1f11","testStepId":"ee085c74-bb83-4c95-8312-850ba67be0d6","testStepResult":{"duration":{"seconds":0,"nanos":383243729},"status":"PASSED"},"timestamp":{"seconds":1757374017,"nanos":709000000}}},{"testStepStarted":{"testCaseStartedId":"492f4ea5-7b77-410f-83a2-11d908df1f11","testStepId":"5bf91b96-07dc-4b3b-95a5-91a32e8deb17","timestamp":{"seconds":1757374017,"nanos":709000000}}},{"testStepFinished":{"testCaseStartedId":"492f4ea5-7b77-410f-83a2-11d908df1f11","testStepId":"5bf91b96-07dc-4b3b-95a5-91a32e8deb17","testStepResult":{"duration":{"seconds":0,"nanos":83438199},"status":"PASSED"},"timestamp":{"seconds":1757374017,"nanos":792000000}}},{"testStepStarted":{"testCaseStartedId":"492f4ea5-7b77-410f-83a2-11d908df1f11","testStepId":"85d2d21d-d3e1-4f2d-9258-3593a0300976","timestamp":{"seconds":1757374017,"nanos":792000000}}},{"testStepFinished":{"testCaseStartedId":"492f4ea5-7b77-410f-83a2-11d908df1f11","testStepId":"85d2d21d-d3e1-4f2d-9258-3593a0300976","testStepResult":{"duration":{"seconds":0,"nanos":81152068},"status":"PASSED"},"timestamp":{"seconds":1757374017,"nanos":874000000}}},{"testStepStarted":{"testCaseStartedId":"492f4ea5-7b77-410f-83a2-11d908df1f11","testStepId":"6ad41f42-0d6f-42b7-b681-8dafe4912467","timestamp":{"seconds":1757374017,"nanos":874000000}}},{"testStepFinished":{"testCaseStartedId":"492f4ea5-7b77-410f-83a2-11d908df1f11","testStepId":"6ad41f42-0d6f-42b7-b681-8dafe4912467","testStepResult":{"duration":{"seconds":0,"nanos":249972},"status":"PASSED"},"timestamp":{"seconds":1757374017,"nanos":874000000}}},{"testStepStarted":{"testCaseStartedId":"492f4ea5-7b77-410f-83a2-11d908df1f11","testStepId":"2c427a34-2b88-47ef-959d-cee1d0bfc80a","timestamp":{"seconds":1757374017,"nanos":874000000}}},{"testStepFinished":{"testCaseStartedId":"492f4ea5-7b77-410f-83a2-11d908df1f11","testStepId":"2c427a34-2b88-47ef-959d-cee1d0bfc80a","testStepResult":{"duration":{"seconds":0,"nanos":77955810},"status":"PASSED"},"timestamp":{"seconds":1757374017,"nanos":952000000}}},{"testStepStarted":{"testCaseStartedId":"492f4ea5-7b77-410f-83a2-11d908df1f11","testStepId":"8e0098c3-c346-41fb-b949-28601a349ea0","timestamp":{"seconds":1757374017,"nanos":952000000}}},{"testStepFinished":{"testCaseStartedId":"492f4ea5-7b77-410f-83a2-11d908df1f11","testStepId":"8e0098c3-c346-41fb-b949-28601a349ea0","testStepResult":{"duration":{"seconds":0,"nanos":81895153},"status":"PASSED"},"timestamp":{"seconds":1757374018,"nanos":34000000}}},{"testStepStarted":{"testCaseStartedId":"492f4ea5-7b77-410f-83a2-11d908df1f11","testStepId":"db876144-82e6-46eb-8ad1-3362599502bb","timestamp":{"seconds":1757374018,"nanos":34000000}}},{"testStepFinished":{"testCaseStartedId":"492f4ea5-7b77-410f-83a2-11d908df1f11","testStepId":"db876144-82e6-46eb-8ad1-3362599502bb","testStepResult":{"duration":{"seconds":0,"nanos":223118},"status":"PASSED"},"timestamp":{"seconds":1757374018,"nanos":35000000}}},{"testStepStarted":{"testCaseStartedId":"492f4ea5-7b77-410f-83a2-11d908df1f11","testStepId":"852cdad0-66f1-43ad-b20f-c87d19f1a46c","timestamp":{"seconds":1757374018,"nanos":35000000}}},{"testStepFinished":{"testCaseStartedId":"492f4ea5-7b77-410f-83a2-11d908df1f11","testStepId":"852cdad0-66f1-43ad-b20f-c87d19f1a46c","testStepResult":{"duration":{"seconds":0,"nanos":180475},"status":"PASSED"},"timestamp":{"seconds":1757374018,"nanos":35000000}}},{"testCaseFinished":{"testCaseStartedId":"492f4ea5-7b77-410f-83a2-11d908df1f11","timestamp":{"seconds":1757374018,"nanos":35000000},"willBeRetried":false}},{"testCaseStarted":{"attempt":0,"testCaseId":"1869764c-5733-407b-8efe-a4f22520b7c7","id":"63464550-c127-42b3-8fa5-48a45331ed57","timestamp":{"seconds":1757374018,"nanos":35000000}}},{"testStepStarted":{"testCaseStartedId":"63464550-c127-42b3-8fa5-48a45331ed57","testStepId":"a693804a-234a-4e00-8895-4fc554dabdbe","timestamp":{"seconds":1757374018,"nanos":35000000}}},{"testStepFinished":{"testCaseStartedId":"63464550-c127-42b3-8fa5-48a45331ed57","testStepId":"a693804a-234a-4e00-8895-4fc554dabdbe","testStepResult":{"duration":{"seconds":0,"nanos":146466},"status":"PASSED"},"timestamp":{"seconds":1757374018,"nanos":35000000}}},{"testStepStarted":{"testCaseStartedId":"63464550-c127-42b3-8fa5-48a45331ed57","testStepId":"93f13bdc-f5c9-46ad-ac81-0508deae34d0","timestamp":{"seconds":1757374018,"nanos":35000000}}},{"testStepFinished":{"testCaseStartedId":"63464550-c127-42b3-8fa5-48a45331ed57","testStepId":"93f13bdc-f5c9-46ad-ac81-0508deae34d0","testStepResult":{"duration":{"seconds":0,"nanos":91363671},"status":"PASSED"},"timestamp":{"seconds":1757374018,"nanos":127000000}}},{"testStepStarted":{"testCaseStartedId":"63464550-c127-42b3-8fa5-48a45331ed57","testStepId":"4e61121e-678d-4bbd-b940-1bc16db0d3a4","timestamp":{"seconds":1757374018,"nanos":127000000}}},{"testStepFinished":{"testCaseStartedId":"63464550-c127-42b3-8fa5-48a45331ed57","testStepId":"4e61121e-678d-4bbd-b940-1bc16db0d3a4","testStepResult":{"duration":{"seconds":0,"nanos":79505720},"status":"PASSED"},"timestamp":{"seconds":1757374018,"nanos":206000000}}},{"testStepStarted":{"testCaseStartedId":"63464550-c127-42b3-8fa5-48a45331ed57","testStepId":"c5fa9514-c3ba-4685-9edc-5d4a1c2d2daf","timestamp":{"seconds":1757374018,"nanos":206000000}}},{"testStepFinished":{"testCaseStartedId":"63464550-c127-42b3-8fa5-48a45331ed57","testStepId":"c5fa9514-c3ba-4685-9edc-5d4a1c2d2daf","testStepResult":{"duration":{"seconds":0,"nanos":224983},"status":"PASSED"},"timestamp":{"seconds":1757374018,"nanos":207000000}}},{"testStepStarted":{"testCaseStartedId":"63464550-c127-42b3-8fa5-48a45331ed57","testStepId":"d5b625a5-9b62-4427-91c3-27c0b8b2201d","timestamp":{"seconds":1757374018,"nanos":207000000}}},{"testStepFinished":{"testCaseStartedId":"63464550-c127-42b3-8fa5-48a45331ed57","testStepId":"d5b625a5-9b62-4427-91c3-27c0b8b2201d","testStepResult":{"duration":{"seconds":0,"nanos":150826},"status":"PASSED"},"timestamp":{"seconds":1757374018,"nanos":207000000}}},{"testStepStarted":{"testCaseStartedId":"63464550-c127-42b3-8fa5-48a45331ed57","testStepId":"b6e133d2-2627-468e-82b1-f6c18c227f96","timestamp":{"seconds":1757374018,"nanos":207000000}}},{"testStepFinished":{"testCaseStartedId":"63464550-c127-42b3-8fa5-48a45331ed57","testStepId":"b6e133d2-2627-468e-82b1-f6c18c227f96","testStepResult":{"duration":{"seconds":0,"nanos":142153},"status":"PASSED"},"timestamp":{"seconds":1757374018,"nanos":207000000}}},{"testStepStarted":{"testCaseStartedId":"63464550-c127-42b3-8fa5-48a45331ed57","testStepId":"29e07d44-a282-4500-ba95-cfd72c664b97","timestamp":{"seconds":1757374018,"nanos":207000000}}},{"testStepFinished":{"testCaseStartedId":"63464550-c127-42b3-8fa5-48a45331ed57","testStepId":"29e07d44-a282-4500-ba95-cfd72c664b97","testStepResult":{"duration":{"seconds":0,"nanos":143916},"status":"PASSED"},"timestamp":{"seconds":1757374018,"nanos":207000000}}},{"testStepStarted":{"testCaseStartedId":"63464550-c127-42b3-8fa5-48a45331ed57","testStepId":"3f98a62c-a690-4fc0-baa8-6aa37cb9113c","timestamp":{"seconds":1757374018,"nanos":207000000}}},{"testStepFinished":{"testCaseStartedId":"63464550-c127-42b3-8fa5-48a45331ed57","testStepId":"3f98a62c-a690-4fc0-baa8-6aa37cb9113c","testStepResult":{"duration":{"seconds":0,"nanos":148693},"status":"PASSED"},"timestamp":{"seconds":1757374018,"nanos":207000000}}},{"testStepStarted":{"testCaseStartedId":"63464550-c127-42b3-8fa5-48a45331ed57","testStepId":"8e2319ad-ae97-42b4-8e3b-d8458b1f7103","timestamp":{"seconds":1757374018,"nanos":207000000}}},{"testStepFinished":{"testCaseStartedId":"63464550-c127-42b3-8fa5-48a45331ed57","testStepId":"8e2319ad-ae97-42b4-8e3b-d8458b1f7103","testStepResult":{"duration":{"seconds":0,"nanos":177472},"status":"PASSED"},"timestamp":{"seconds":1757374018,"nanos":208000000}}},{"testCaseFinished":{"testCaseStartedId":"63464550-c127-42b3-8fa5-48a45331ed57","timestamp":{"seconds":1757374018,"nanos":208000000},"willBeRetried":false}},{"testCaseStarted":{"attempt":0,"testCaseId":"ce5b8b01-f0c7-4cae-8fc3-35e2599f70d6","id":"8b81e811-d3d9-4579-8cd4-fc874cd39e66","timestamp":{"seconds":1757374018,"nanos":208000000}}},{"testStepStarted":{"testCaseStartedId":"8b81e811-d3d9-4579-8cd4-fc874cd39e66","testStepId":"fce0da56-392c-4116-9093-88580b62bfc6","timestamp":{"seconds":1757374018,"nanos":208000000}}},{"testStepFinished":{"testCaseStartedId":"8b81e811-d3d9-4579-8cd4-fc874cd39e66","testStepId":"fce0da56-392c-4116-9093-88580b62bfc6","testStepResult":{"duration":{"seconds":0,"nanos":144959},"status":"PASSED"},"timestamp":{"seconds":1757374018,"nanos":208000000}}},{"testStepStarted":{"testCaseStartedId":"8b81e811-d3d9-4579-8cd4-fc874cd39e66","testStepId":"c603f330-61ae-4603-aa80-383c8eb4410c","timestamp":{"seconds":1757374018,"nanos":208000000}}},{"testStepFinished":{"testCaseStartedId":"8b81e811-d3d9-4579-8cd4-fc874cd39e66","testStepId":"c603f330-61ae-4603-aa80-383c8eb4410c","testStepResult":{"duration":{"seconds":0,"nanos":81161592},"status":"PASSED"},"timestamp":{"seconds":1757374018,"nanos":289000000}}},{"testStepStarted":{"testCaseStartedId":"8b81e811-d3d9-4579-8cd4-fc874cd39e66","testStepId":"69a8f1ab-4a4a-4b27-8756-c6ca9b40ce5f","timestamp":{"seconds":1757374018,"nanos":289000000}}},{"testStepFinished":{"testCaseStartedId":"8b81e811-d3d9-4579-8cd4-fc874cd39e66","testStepId":"69a8f1ab-4a4a-4b27-8756-c6ca9b40ce5f","testStepResult":{"duration":{"seconds":0,"nanos":82058331},"status":"PASSED"},"timestamp":{"seconds":1757374018,"nanos":371000000}}},{"testStepStarted":{"testCaseStartedId":"8b81e811-d3d9-4579-8cd4-fc874cd39e66","testStepId":"a183dbff-4c44-4d18-b97d-89c034081cc6","timestamp":{"seconds":1757374018,"nanos":372000000}}},{"testStepFinished":{"testCaseStartedId":"8b81e811-d3d9-4579-8cd4-fc874cd39e66","testStepId":"a183dbff-4c44-4d18-b97d-89c034081cc6","testStepResult":{"duration":{"seconds":0,"nanos":78224721},"status":"PASSED"},"timestamp":{"seconds":1757374018,"nanos":450000000}}},{"testStepStarted":{"testCaseStartedId":"8b81e811-d3d9-4579-8cd4-fc874cd39e66","testStepId":"ae80a33a-0089-4b3b-b052-f76ea18c194f","timestamp":{"seconds":1757374018,"nanos":450000000}}},{"testStepFinished":{"testCaseStartedId":"8b81e811-d3d9-4579-8cd4-fc874cd39e66","testStepId":"ae80a33a-0089-4b3b-b052-f76ea18c194f","testStepResult":{"duration":{"seconds":0,"nanos":213040},"status":"PASSED"},"timestamp":{"seconds":1757374018,"nanos":450000000}}},{"testStepStarted":{"testCaseStartedId":"8b81e811-d3d9-4579-8cd4-fc874cd39e66","testStepId":"13ee610b-b826-41d7-9d17-93c1d7b29144","timestamp":{"seconds":1757374018,"nanos":450000000}}},{"testStepFinished":{"testCaseStartedId":"8b81e811-d3d9-4579-8cd4-fc874cd39e66","testStepId":"13ee610b-b826-41d7-9d17-93c1d7b29144","testStepResult":{"duration":{"seconds":0,"nanos":132695},"status":"PASSED"},"timestamp":{"seconds":1757374018,"nanos":450000000}}},{"testStepStarted":{"testCaseStartedId":"8b81e811-d3d9-4579-8cd4-fc874cd39e66","testStepId":"9ce9b12b-768d-466f-b491-ee41bc23839b","timestamp":{"seconds":1757374018,"nanos":450000000}}},{"testStepFinished":{"testCaseStartedId":"8b81e811-d3d9-4579-8cd4-fc874cd39e66","testStepId":"9ce9b12b-768d-466f-b491-ee41bc23839b","testStepResult":{"duration":{"seconds":0,"nanos":133440},"status":"PASSED"},"timestamp":{"seconds":1757374018,"nanos":451000000}}},{"testStepStarted":{"testCaseStartedId":"8b81e811-d3d9-4579-8cd4-fc874cd39e66","testStepId":"0b05dce9-465b-4b41-acdb-225ebe9d47f7","timestamp":{"seconds":1757374018,"nanos":451000000}}},{"testStepFinished":{"testCaseStartedId":"8b81e811-d3d9-4579-8cd4-fc874cd39e66","testStepId":"0b05dce9-465b-4b41-acdb-225ebe9d47f7","testStepResult":{"duration":{"seconds":0,"nanos":274218},"status":"PASSED"},"timestamp":{"seconds":1757374018,"nanos":451000000}}},{"testCaseFinished":{"testCaseStartedId":"8b81e811-d3d9-4579-8cd4-fc874cd39e66","timestamp":{"seconds":1757374018,"nanos":451000000},"willBeRetried":false}},{"testCaseStarted":{"attempt":0,"testCaseId":"2043a2bd-8e88-4443-b740-86514911c480","id":"0fc4754e-151d-45e9-98fb-f80f760de2c0","timestamp":{"seconds":1757374018,"nanos":451000000}}},{"testStepStarted":{"testCaseStartedId":"0fc4754e-151d-45e9-98fb-f80f760de2c0","testStepId":"ec8b5b3f-5ce9-42e0-8e91-10df55adc1a3","timestamp":{"seconds":1757374018,"nanos":451000000}}},{"testStepFinished":{"testCaseStartedId":"0fc4754e-151d-45e9-98fb-f80f760de2c0","testStepId":"ec8b5b3f-5ce9-42e0-8e91-10df55adc1a3","testStepResult":{"duration":{"seconds":0,"nanos":129950},"status":"PASSED"},"timestamp":{"seconds":1757374018,"nanos":451000000}}},{"testStepStarted":{"testCaseStartedId":"0fc4754e-151d-45e9-98fb-f80f760de2c0","testStepId":"ae242f56-549c-4b88-8d0b-671aef612722","timestamp":{"seconds":1757374018,"nanos":451000000}}},{"testStepFinished":{"testCaseStartedId":"0fc4754e-151d-45e9-98fb-f80f760de2c0","testStepId":"ae242f56-549c-4b88-8d0b-671aef612722","testStepResult":{"duration":{"seconds":0,"nanos":81106323},"status":"PASSED"},"timestamp":{"seconds":1757374018,"nanos":532000000}}},{"testStepStarted":{"testCaseStartedId":"0fc4754e-151d-45e9-98fb-f80f760de2c0","testStepId":"510c523f-c374-4e79-8775-0547f880cc64","timestamp":{"seconds":1757374018,"nanos":532000000}}},{"testStepFinished":{"testCaseStartedId":"0fc4754e-151d-45e9-98fb-f80f760de2c0","testStepId":"510c523f-c374-4e79-8775-0547f880cc64","testStepResult":{"duration":{"seconds":0,"nanos":75470790},"status":"PASSED"},"timestamp":{"seconds":1757374018,"nanos":608000000}}},{"testStepStarted":{"testCaseStartedId":"0fc4754e-151d-45e9-98fb-f80f760de2c0","testStepId":"bd211870-80ab-41e6-b2cc-549df8aa91d5","timestamp":{"seconds":1757374018,"nanos":608000000}}},{"testStepFinished":{"testCaseStartedId":"0fc4754e-151d-45e9-98fb-f80f760de2c0","testStepId":"bd211870-80ab-41e6-b2cc-549df8aa91d5","testStepResult":{"duration":{"seconds":0,"nanos":236996},"status":"PASSED"},"timestamp":{"seconds":1757374018,"nanos":608000000}}},{"testStepStarted":{"testCaseStartedId":"0fc4754e-151d-45e9-98fb-f80f760de2c0","testStepId":"33590276-2594-41a1-8691-8e428f4035a8","timestamp":{"seconds":1757374018,"nanos":608000000}}},{"testStepFinished":{"testCaseStartedId":"0fc4754e-151d-45e9-98fb-f80f760de2c0","testStepId":"33590276-2594-41a1-8691-8e428f4035a8","testStepResult":{"duration":{"seconds":0,"nanos":253255},"status":"PASSED"},"timestamp":{"seconds":1757374018,"nanos":609000000}}},{"testCaseFinished":{"testCaseStartedId":"0fc4754e-151d-45e9-98fb-f80f760de2c0","timestamp":{"seconds":1757374018,"nanos":609000000},"willBeRetried":false}},{"testCaseStarted":{"attempt":0,"testCaseId":"874da33c-d2d1-4078-9d3f-4132d703de47","id":"cda978a5-df9f-433b-8278-9fb62c1f899e","timestamp":{"seconds":1757374018,"nanos":609000000}}},{"testStepStarted":{"testCaseStartedId":"cda978a5-df9f-433b-8278-9fb62c1f899e","testStepId":"2c71cbb5-de30-47be-b774-724e8906be7b","timestamp":{"seconds":1757374018,"nanos":609000000}}},{"testStepFinished":{"testCaseStartedId":"cda978a5-df9f-433b-8278-9fb62c1f899e","testStepId":"2c71cbb5-de30-47be-b774-724e8906be7b","testStepResult":{"duration":{"seconds":0,"nanos":151012},"status":"PASSED"},"timestamp":{"seconds":1757374018,"nanos":609000000}}},{"testStepStarted":{"testCaseStartedId":"cda978a5-df9f-433b-8278-9fb62c1f899e","testStepId":"03c2ee23-aa1a-496a-a614-31d546b2c598","timestamp":{"seconds":1757374018,"nanos":609000000}}},{"testStepFinished":{"testCaseStartedId":"cda978a5-df9f-433b-8278-9fb62c1f899e","testStepId":"03c2ee23-aa1a-496a-a614-31d546b2c598","testStepResult":{"duration":{"seconds":0,"nanos":80193974},"status":"PASSED"},"timestamp":{"seconds":1757374018,"nanos":689000000}}},{"testStepStarted":{"testCaseStartedId":"cda978a5-df9f-433b-8278-9fb62c1f899e","testStepId":"82c19966-914c-432b-b577-788cb2c15e2c","timestamp":{"seconds":1757374018,"nanos":689000000}}},{"testStepFinished":{"testCaseStartedId":"cda978a5-df9f-433b-8278-9fb62c1f899e","testStepId":"82c19966-914c-432b-b577-788cb2c15e2c","testStepResult":{"duration":{"seconds":0,"nanos":78029908},"status":"PASSED"},"timestamp":{"seconds":1757374018,"nanos":767000000}}},{"testStepStarted":{"testCaseStartedId":"cda978a5-df9f-433b-8278-9fb62c1f899e","testStepId":"6e182b91-a927-4ef9-a49f-dd202170e6be","timestamp":{"seconds":1757374018,"nanos":768000000}}},{"testStepFinished":{"testCaseStartedId":"cda978a5-df9f-433b-8278-9fb62c1f899e","testStepId":"6e182b91-a927-4ef9-a49f-dd202170e6be","testStepResult":{"duration":{"seconds":0,"nanos":81802684},"status":"PASSED"},"timestamp":{"seconds":1757374018,"nanos":849000000}}},{"testStepStarted":{"testCaseStartedId":"cda978a5-df9f-433b-8278-9fb62c1f899e","testStepId":"992684cd-f900-4cfa-b155-25591bab6205","timestamp":{"seconds":1757374018,"nanos":850000000}}},{"testStepFinished":{"testCaseStartedId":"cda978a5-df9f-433b-8278-9fb62c1f899e","testStepId":"992684cd-f900-4cfa-b155-25591bab6205","testStepResult":{"duration":{"seconds":0,"nanos":399520},"status":"PASSED"},"timestamp":{"seconds":1757374018,"nanos":850000000}}},{"testStepStarted":{"testCaseStartedId":"cda978a5-df9f-433b-8278-9fb62c1f899e","testStepId":"eb7a7335-8832-4d28-8f9b-e38ffea74c08","timestamp":{"seconds":1757374018,"nanos":850000000}}},{"testStepFinished":{"testCaseStartedId":"cda978a5-df9f-433b-8278-9fb62c1f899e","testStepId":"eb7a7335-8832-4d28-8f9b-e38ffea74c08","testStepResult":{"duration":{"seconds":0,"nanos":221819},"status":"PASSED"},"timestamp":{"seconds":1757374018,"nanos":850000000}}},{"testStepStarted":{"testCaseStartedId":"cda978a5-df9f-433b-8278-9fb62c1f899e","testStepId":"6f8e9c5a-2288-464e-bec9-8f4194b08609","timestamp":{"seconds":1757374018,"nanos":850000000}}},{"testStepFinished":{"testCaseStartedId":"cda978a5-df9f-433b-8278-9fb62c1f899e","testStepId":"6f8e9c5a-2288-464e-bec9-8f4194b08609","testStepResult":{"duration":{"seconds":0,"nanos":213459},"status":"PASSED"},"timestamp":{"seconds":1757374018,"nanos":851000000}}},{"testStepStarted":{"testCaseStartedId":"cda978a5-df9f-433b-8278-9fb62c1f899e","testStepId":"4a2e31f0-9ef8-4cd9-8ebb-668f1405b57b","timestamp":{"seconds":1757374018,"nanos":851000000}}},{"testStepFinished":{"testCaseStartedId":"cda978a5-df9f-433b-8278-9fb62c1f899e","testStepId":"4a2e31f0-9ef8-4cd9-8ebb-668f1405b57b","testStepResult":{"duration":{"seconds":0,"nanos":173785},"status":"PASSED"},"timestamp":{"seconds":1757374018,"nanos":851000000}}},{"testCaseFinished":{"testCaseStartedId":"cda978a5-df9f-433b-8278-9fb62c1f899e","timestamp":{"seconds":1757374018,"nanos":851000000},"willBeRetried":false}},{"testCaseStarted":{"attempt":0,"testCaseId":"451ccea9-bb11-45db-9942-d6cc2338999d","id":"7d04b306-e347-4105-91e8-7e7836b83732","timestamp":{"seconds":1757374018,"nanos":851000000}}},{"testStepStarted":{"testCaseStartedId":"7d04b306-e347-4105-91e8-7e7836b83732","testStepId":"f3bb9ef6-1252-44ed-ae07-e0a6099dc804","timestamp":{"seconds":1757374018,"nanos":851000000}}},{"testStepFinished":{"testCaseStartedId":"7d04b306-e347-4105-91e8-7e7836b83732","testStepId":"f3bb9ef6-1252-44ed-ae07-e0a6099dc804","testStepResult":{"duration":{"seconds":0,"nanos":125468},"status":"PASSED"},"timestamp":{"seconds":1757374018,"nanos":851000000}}},{"testStepStarted":{"testCaseStartedId":"7d04b306-e347-4105-91e8-7e7836b83732","testStepId":"f3ed6392-2b8e-4220-b5e4-de2cbdeb24e3","timestamp":{"seconds":1757374018,"nanos":851000000}}},{"testStepFinished":{"testCaseStartedId":"7d04b306-e347-4105-91e8-7e7836b83732","testStepId":"f3ed6392-2b8e-4220-b5e4-de2cbdeb24e3","testStepResult":{"duration":{"seconds":0,"nanos":86352920},"status":"PASSED"},"timestamp":{"seconds":1757374018,"nanos":938000000}}},{"testStepStarted":{"testCaseStartedId":"7d04b306-e347-4105-91e8-7e7836b83732","testStepId":"3696a13e-1b10-478b-993f-996587cca682","timestamp":{"seconds":1757374018,"nanos":938000000}}},{"testStepFinished":{"testCaseStartedId":"7d04b306-e347-4105-91e8-7e7836b83732","testStepId":"3696a13e-1b10-478b-993f-996587cca682","testStepResult":{"duration":{"seconds":0,"nanos":79395414},"status":"PASSED"},"timestamp":{"seconds":1757374019,"nanos":17000000}}},{"testStepStarted":{"testCaseStartedId":"7d04b306-e347-4105-91e8-7e7836b83732","testStepId":"7882efa3-8085-4cbf-91a2-6994f233a373","timestamp":{"seconds":1757374019,"nanos":17000000}}},{"testStepFinished":{"testCaseStartedId":"7d04b306-e347-4105-91e8-7e7836b83732","testStepId":"7882efa3-8085-4cbf-91a2-6994f233a373","testStepResult":{"duration":{"seconds":0,"nanos":223943},"status":"PASSED"},"timestamp":{"seconds":1757374019,"nanos":18000000}}},{"testStepStarted":{"testCaseStartedId":"7d04b306-e347-4105-91e8-7e7836b83732","testStepId":"1f9ed9ee-db16-48f2-947e-215732d1a4b0","timestamp":{"seconds":1757374019,"nanos":18000000}}},{"testStepFinished":{"testCaseStartedId":"7d04b306-e347-4105-91e8-7e7836b83732","testStepId":"1f9ed9ee-db16-48f2-947e-215732d1a4b0","testStepResult":{"duration":{"seconds":0,"nanos":144137},"status":"PASSED"},"timestamp":{"seconds":1757374019,"nanos":18000000}}},{"testStepStarted":{"testCaseStartedId":"7d04b306-e347-4105-91e8-7e7836b83732","testStepId":"48631ca8-c2c7-4e1a-b4ea-32c1913957b2","timestamp":{"seconds":1757374019,"nanos":18000000}}},{"testStepFinished":{"testCaseStartedId":"7d04b306-e347-4105-91e8-7e7836b83732","testStepId":"48631ca8-c2c7-4e1a-b4ea-32c1913957b2","testStepResult":{"duration":{"seconds":0,"nanos":84324816},"status":"PASSED"},"timestamp":{"seconds":1757374019,"nanos":102000000}}},{"testStepStarted":{"testCaseStartedId":"7d04b306-e347-4105-91e8-7e7836b83732","testStepId":"dc45e671-cdf6-4464-84b0-989596d3b9e0","timestamp":{"seconds":1757374019,"nanos":102000000}}},{"testStepFinished":{"testCaseStartedId":"7d04b306-e347-4105-91e8-7e7836b83732","testStepId":"dc45e671-cdf6-4464-84b0-989596d3b9e0","testStepResult":{"duration":{"seconds":0,"nanos":204423},"status":"PASSED"},"timestamp":{"seconds":1757374019,"nanos":103000000}}},{"testStepStarted":{"testCaseStartedId":"7d04b306-e347-4105-91e8-7e7836b83732","testStepId":"50a150d5-ca7e-4d32-b8fc-101ccfd4ba20","timestamp":{"seconds":1757374019,"nanos":103000000}}},{"testStepFinished":{"testCaseStartedId":"7d04b306-e347-4105-91e8-7e7836b83732","testStepId":"50a150d5-ca7e-4d32-b8fc-101ccfd4ba20","testStepResult":{"duration":{"seconds":0,"nanos":79575146},"status":"PASSED"},"timestamp":{"seconds":1757374019,"nanos":182000000}}},{"testStepStarted":{"testCaseStartedId":"7d04b306-e347-4105-91e8-7e7836b83732","testStepId":"38da567a-7825-4d6e-ab70-d43081ad0236","timestamp":{"seconds":1757374019,"nanos":182000000}}},{"testStepFinished":{"testCaseStartedId":"7d04b306-e347-4105-91e8-7e7836b83732","testStepId":"38da567a-7825-4d6e-ab70-d43081ad0236","testStepResult":{"duration":{"seconds":0,"nanos":211257},"status":"PASSED"},"timestamp":{"seconds":1757374019,"nanos":183000000}}},{"testStepStarted":{"testCaseStartedId":"7d04b306-e347-4105-91e8-7e7836b83732","testStepId":"58c26a23-7747-470e-bc25-193f394bc239","timestamp":{"seconds":1757374019,"nanos":183000000}}},{"testStepFinished":{"testCaseStartedId":"7d04b306-e347-4105-91e8-7e7836b83732","testStepId":"58c26a23-7747-470e-bc25-193f394bc239","testStepResult":{"duration":{"seconds":0,"nanos":77093658},"status":"PASSED"},"timestamp":{"seconds":1757374019,"nanos":260000000}}},{"testStepStarted":{"testCaseStartedId":"7d04b306-e347-4105-91e8-7e7836b83732","testStepId":"3a59ce0d-dfc7-4559-b353-bae4f3541784","timestamp":{"seconds":1757374019,"nanos":260000000}}},{"testStepFinished":{"testCaseStartedId":"7d04b306-e347-4105-91e8-7e7836b83732","testStepId":"3a59ce0d-dfc7-4559-b353-bae4f3541784","testStepResult":{"duration":{"seconds":0,"nanos":193863},"status":"PASSED"},"timestamp":{"seconds":1757374019,"nanos":260000000}}},{"testStepStarted":{"testCaseStartedId":"7d04b306-e347-4105-91e8-7e7836b83732","testStepId":"cfdf537f-5782-4c93-8386-da3092b0d939","timestamp":{"seconds":1757374019,"nanos":260000000}}},{"testStepFinished":{"testCaseStartedId":"7d04b306-e347-4105-91e8-7e7836b83732","testStepId":"cfdf537f-5782-4c93-8386-da3092b0d939","testStepResult":{"duration":{"seconds":0,"nanos":164233},"status":"PASSED"},"timestamp":{"seconds":1757374019,"nanos":261000000}}},{"testCaseFinished":{"testCaseStartedId":"7d04b306-e347-4105-91e8-7e7836b83732","timestamp":{"seconds":1757374019,"nanos":261000000},"willBeRetried":false}},{"testCaseStarted":{"attempt":0,"testCaseId":"5b39a01c-2239-4e43-be43-7f1137a40778","id":"2c3a7da3-ad4a-4b82-ade0-fb935336981b","timestamp":{"seconds":1757374019,"nanos":261000000}}},{"testStepStarted":{"testCaseStartedId":"2c3a7da3-ad4a-4b82-ade0-fb935336981b","testStepId":"91d7e504-f48d-4e8f-a543-7b20a5fcdeb4","timestamp":{"seconds":1757374019,"nanos":261000000}}},{"testStepFinished":{"testCaseStartedId":"2c3a7da3-ad4a-4b82-ade0-fb935336981b","testStepId":"91d7e504-f48d-4e8f-a543-7b20a5fcdeb4","testStepResult":{"duration":{"seconds":0,"nanos":126173},"status":"PASSED"},"timestamp":{"seconds":1757374019,"nanos":261000000}}},{"testStepStarted":{"testCaseStartedId":"2c3a7da3-ad4a-4b82-ade0-fb935336981b","testStepId":"0d919d9d-9751-4c51-8d37-1bfea8ee7c77","timestamp":{"seconds":1757374019,"nanos":261000000}}},{"testStepFinished":{"testCaseStartedId":"2c3a7da3-ad4a-4b82-ade0-fb935336981b","testStepId":"0d919d9d-9751-4c51-8d37-1bfea8ee7c77","testStepResult":{"duration":{"seconds":0,"nanos":82140360},"status":"PASSED"},"timestamp":{"seconds":1757374019,"nanos":343000000}}},{"testStepStarted":{"testCaseStartedId":"2c3a7da3-ad4a-4b82-ade0-fb935336981b","testStepId":"3bf41368-46f5-444b-bf79-e0d18878dee0","timestamp":{"seconds":1757374019,"nanos":343000000}}},{"testStepFinished":{"testCaseStartedId":"2c3a7da3-ad4a-4b82-ade0-fb935336981b","testStepId":"3bf41368-46f5-444b-bf79-e0d18878dee0","testStepResult":{"duration":{"seconds":0,"nanos":79120716},"status":"PASSED"},"timestamp":{"seconds":1757374019,"nanos":422000000}}},{"testStepStarted":{"testCaseStartedId":"2c3a7da3-ad4a-4b82-ade0-fb935336981b","testStepId":"2c3b4ccd-4382-40a6-b124-ef875c1aeac9","timestamp":{"seconds":1757374019,"nanos":422000000}}},{"testStepFinished":{"testCaseStartedId":"2c3a7da3-ad4a-4b82-ade0-fb935336981b","testStepId":"2c3b4ccd-4382-40a6-b124-ef875c1aeac9","testStepResult":{"duration":{"seconds":0,"nanos":249964},"status":"PASSED"},"timestamp":{"seconds":1757374019,"nanos":423000000}}},{"testStepStarted":{"testCaseStartedId":"2c3a7da3-ad4a-4b82-ade0-fb935336981b","testStepId":"d4e90750-0c0c-4dfa-b116-08351fef7e42","timestamp":{"seconds":1757374019,"nanos":423000000}}},{"testStepFinished":{"testCaseStartedId":"2c3a7da3-ad4a-4b82-ade0-fb935336981b","testStepId":"d4e90750-0c0c-4dfa-b116-08351fef7e42","testStepResult":{"duration":{"seconds":0,"nanos":213213},"status":"PASSED"},"timestamp":{"seconds":1757374019,"nanos":423000000}}},{"testStepStarted":{"testCaseStartedId":"2c3a7da3-ad4a-4b82-ade0-fb935336981b","testStepId":"dbb2b893-43a1-41c5-86ca-4f9196453b4f","timestamp":{"seconds":1757374019,"nanos":423000000}}},{"testStepFinished":{"testCaseStartedId":"2c3a7da3-ad4a-4b82-ade0-fb935336981b","testStepId":"dbb2b893-43a1-41c5-86ca-4f9196453b4f","testStepResult":{"duration":{"seconds":0,"nanos":189029},"status":"PASSED"},"timestamp":{"seconds":1757374019,"nanos":423000000}}},{"testCaseFinished":{"testCaseStartedId":"2c3a7da3-ad4a-4b82-ade0-fb935336981b","timestamp":{"seconds":1757374019,"nanos":423000000},"willBeRetried":false}},{"testCaseStarted":{"attempt":0,"testCaseId":"109a0332-339d-4c76-966f-3c6c5ff615e6","id":"c0e1b2ee-48ca-432c-bb85-27246118062b","timestamp":{"seconds":1757374019,"nanos":423000000}}},{"testStepStarted":{"testCaseStartedId":"c0e1b2ee-48ca-432c-bb85-27246118062b","testStepId":"7d29869d-821c-4206-b9d6-bea4c145a0f6","timestamp":{"seconds":1757374019,"nanos":423000000}}},{"testStepFinished":{"testCaseStartedId":"c0e1b2ee-48ca-432c-bb85-27246118062b","testStepId":"7d29869d-821c-4206-b9d6-bea4c145a0f6","testStepResult":{"duration":{"seconds":0,"nanos":154013},"status":"PASSED"},"timestamp":{"seconds":1757374019,"nanos":424000000}}},{"testStepStarted":{"testCaseStartedId":"c0e1b2ee-48ca-432c-bb85-27246118062b","testStepId":"93beeb7b-ee07-41e3-8ab1-05180874a653","timestamp":{"seconds":1757374019,"nanos":424000000}}},{"testStepFinished":{"testCaseStartedId":"c0e1b2ee-48ca-432c-bb85-27246118062b","testStepId":"93beeb7b-ee07-41e3-8ab1-05180874a653","testStepResult":{"duration":{"seconds":0,"nanos":78004205},"status":"PASSED"},"timestamp":{"seconds":1757374019,"nanos":502000000}}},{"testStepStarted":{"testCaseStartedId":"c0e1b2ee-48ca-432c-bb85-27246118062b","testStepId":"2d2da0df-7849-4345-8e9d-fc3e8373dfee","timestamp":{"seconds":1757374019,"nanos":502000000}}},{"testStepFinished":{"testCaseStartedId":"c0e1b2ee-48ca-432c-bb85-27246118062b","testStepId":"2d2da0df-7849-4345-8e9d-fc3e8373dfee","testStepResult":{"duration":{"seconds":0,"nanos":273019},"status":"PASSED"},"timestamp":{"seconds":1757374019,"nanos":502000000}}},{"testStepStarted":{"testCaseStartedId":"c0e1b2ee-48ca-432c-bb85-27246118062b","testStepId":"e0dcd82b-c43b-414d-96aa-ff7c047d59d5","timestamp":{"seconds":1757374019,"nanos":502000000}}},{"testStepFinished":{"testCaseStartedId":"c0e1b2ee-48ca-432c-bb85-27246118062b","testStepId":"e0dcd82b-c43b-414d-96aa-ff7c047d59d5","testStepResult":{"duration":{"seconds":0,"nanos":77598493},"status":"PASSED"},"timestamp":{"seconds":1757374019,"nanos":580000000}}},{"testStepStarted":{"testCaseStartedId":"c0e1b2ee-48ca-432c-bb85-27246118062b","testStepId":"1c4c71e6-f56b-4100-9ab8-9108079366c8","timestamp":{"seconds":1757374019,"nanos":580000000}}},{"testStepFinished":{"testCaseStartedId":"c0e1b2ee-48ca-432c-bb85-27246118062b","testStepId":"1c4c71e6-f56b-4100-9ab8-9108079366c8","testStepResult":{"duration":{"seconds":0,"nanos":219874},"status":"PASSED"},"timestamp":{"seconds":1757374019,"nanos":580000000}}},{"testStepStarted":{"testCaseStartedId":"c0e1b2ee-48ca-432c-bb85-27246118062b","testStepId":"3e93e5f5-369e-4e33-9815-9ce27cdc5514","timestamp":{"seconds":1757374019,"nanos":580000000}}},{"testStepFinished":{"testCaseStartedId":"c0e1b2ee-48ca-432c-bb85-27246118062b","testStepId":"3e93e5f5-369e-4e33-9815-9ce27cdc5514","testStepResult":{"duration":{"seconds":0,"nanos":216204308},"status":"PASSED"},"timestamp":{"seconds":1757374019,"nanos":796000000}}},{"testStepStarted":{"testCaseStartedId":"c0e1b2ee-48ca-432c-bb85-27246118062b","testStepId":"bee21250-aa76-438a-8fc4-ddf887ca9db9","timestamp":{"seconds":1757374019,"nanos":796000000}}},{"testStepFinished":{"testCaseStartedId":"c0e1b2ee-48ca-432c-bb85-27246118062b","testStepId":"bee21250-aa76-438a-8fc4-ddf887ca9db9","testStepResult":{"duration":{"seconds":0,"nanos":81766534},"status":"PASSED"},"timestamp":{"seconds":1757374019,"nanos":878000000}}},{"testStepStarted":{"testCaseStartedId":"c0e1b2ee-48ca-432c-bb85-27246118062b","testStepId":"260eeb8b-cc7b-412a-ae92-6f00d8464096","timestamp":{"seconds":1757374019,"nanos":878000000}}},{"testStepFinished":{"testCaseStartedId":"c0e1b2ee-48ca-432c-bb85-27246118062b","testStepId":"260eeb8b-cc7b-412a-ae92-6f00d8464096","testStepResult":{"duration":{"seconds":0,"nanos":232722},"status":"PASSED"},"timestamp":{"seconds":1757374019,"nanos":879000000}}},{"testStepStarted":{"testCaseStartedId":"c0e1b2ee-48ca-432c-bb85-27246118062b","testStepId":"25a8cd2f-0553-43fc-a6d0-af21c88c6d8c","timestamp":{"seconds":1757374019,"nanos":879000000}}},{"testStepFinished":{"testCaseStartedId":"c0e1b2ee-48ca-432c-bb85-27246118062b","testStepId":"25a8cd2f-0553-43fc-a6d0-af21c88c6d8c","testStepResult":{"duration":{"seconds":0,"nanos":177236},"status":"PASSED"},"timestamp":{"seconds":1757374019,"nanos":879000000}}},{"testStepStarted":{"testCaseStartedId":"c0e1b2ee-48ca-432c-bb85-27246118062b","testStepId":"04208d63-d4b3-413f-af56-72237d2e37fe","timestamp":{"seconds":1757374019,"nanos":879000000}}},{"testStepFinished":{"testCaseStartedId":"c0e1b2ee-48ca-432c-bb85-27246118062b","testStepId":"04208d63-d4b3-413f-af56-72237d2e37fe","testStepResult":{"duration":{"seconds":0,"nanos":203677},"status":"PASSED"},"timestamp":{"seconds":1757374019,"nanos":879000000}}},{"testCaseFinished":{"testCaseStartedId":"c0e1b2ee-48ca-432c-bb85-27246118062b","timestamp":{"seconds":1757374019,"nanos":879000000},"willBeRetried":false}},{"testCaseStarted":{"attempt":0,"testCaseId":"6c27c40d-1947-490e-b632-22a7a2010b17","id":"1a851208-a2d1-4258-8002-0db0b8f1e33c","timestamp":{"seconds":1757374019,"nanos":879000000}}},{"testStepStarted":{"testCaseStartedId":"1a851208-a2d1-4258-8002-0db0b8f1e33c","testStepId":"b5bfe850-585e-4a17-b9f4-aff1b02f21a6","timestamp":{"seconds":1757374019,"nanos":879000000}}},{"testStepFinished":{"testCaseStartedId":"1a851208-a2d1-4258-8002-0db0b8f1e33c","testStepId":"b5bfe850-585e-4a17-b9f4-aff1b02f21a6","testStepResult":{"duration":{"seconds":0,"nanos":154468},"status":"PASSED"},"timestamp":{"seconds":1757374019,"nanos":880000000}}},{"testStepStarted":{"testCaseStartedId":"1a851208-a2d1-4258-8002-0db0b8f1e33c","testStepId":"4fe78796-c150-4972-b403-9bf197ea2376","timestamp":{"seconds":1757374019,"nanos":880000000}}},{"testStepFinished":{"testCaseStartedId":"1a851208-a2d1-4258-8002-0db0b8f1e33c","testStepId":"4fe78796-c150-4972-b403-9bf197ea2376","testStepResult":{"duration":{"seconds":0,"nanos":78182047},"status":"PASSED"},"timestamp":{"seconds":1757374019,"nanos":958000000}}},{"testStepStarted":{"testCaseStartedId":"1a851208-a2d1-4258-8002-0db0b8f1e33c","testStepId":"00dc9d5c-1f55-44f2-a9b3-479cc755b905","timestamp":{"seconds":1757374019,"nanos":958000000}}},{"testStepFinished":{"testCaseStartedId":"1a851208-a2d1-4258-8002-0db0b8f1e33c","testStepId":"00dc9d5c-1f55-44f2-a9b3-479cc755b905","testStepResult":{"duration":{"seconds":0,"nanos":74584451},"status":"PASSED"},"timestamp":{"seconds":1757374020,"nanos":32000000}}},{"testStepStarted":{"testCaseStartedId":"1a851208-a2d1-4258-8002-0db0b8f1e33c","testStepId":"81dff075-0e66-418f-925e-c6d44c6fb3c8","timestamp":{"seconds":1757374020,"nanos":33000000}}},{"testStepFinished":{"testCaseStartedId":"1a851208-a2d1-4258-8002-0db0b8f1e33c","testStepId":"81dff075-0e66-418f-925e-c6d44c6fb3c8","testStepResult":{"duration":{"seconds":0,"nanos":204268},"status":"PASSED"},"timestamp":{"seconds":1757374020,"nanos":33000000}}},{"testStepStarted":{"testCaseStartedId":"1a851208-a2d1-4258-8002-0db0b8f1e33c","testStepId":"ee7488df-7c03-4dbb-b171-e1d3595b1095","timestamp":{"seconds":1757374020,"nanos":33000000}}},{"testStepFinished":{"testCaseStartedId":"1a851208-a2d1-4258-8002-0db0b8f1e33c","testStepId":"ee7488df-7c03-4dbb-b171-e1d3595b1095","testStepResult":{"duration":{"seconds":0,"nanos":58815162},"status":"PASSED"},"timestamp":{"seconds":1757374020,"nanos":92000000}}},{"testStepStarted":{"testCaseStartedId":"1a851208-a2d1-4258-8002-0db0b8f1e33c","testStepId":"7ef6e391-6119-4540-9608-446f6ee84fc5","timestamp":{"seconds":1757374020,"nanos":92000000}}},{"testStepFinished":{"testCaseStartedId":"1a851208-a2d1-4258-8002-0db0b8f1e33c","testStepId":"7ef6e391-6119-4540-9608-446f6ee84fc5","testStepResult":{"duration":{"seconds":0,"nanos":203230},"status":"PASSED"},"timestamp":{"seconds":1757374020,"nanos":92000000}}},{"testStepStarted":{"testCaseStartedId":"1a851208-a2d1-4258-8002-0db0b8f1e33c","testStepId":"56cc77c0-5dc7-4b6f-be1c-b33a98af79a3","timestamp":{"seconds":1757374020,"nanos":92000000}}},{"testStepFinished":{"testCaseStartedId":"1a851208-a2d1-4258-8002-0db0b8f1e33c","testStepId":"56cc77c0-5dc7-4b6f-be1c-b33a98af79a3","testStepResult":{"duration":{"seconds":0,"nanos":137419},"status":"PASSED"},"timestamp":{"seconds":1757374020,"nanos":92000000}}},{"testStepStarted":{"testCaseStartedId":"1a851208-a2d1-4258-8002-0db0b8f1e33c","testStepId":"f588463a-f1fa-49f7-9203-6bae518e393b","timestamp":{"seconds":1757374020,"nanos":92000000}}},{"testStepFinished":{"testCaseStartedId":"1a851208-a2d1-4258-8002-0db0b8f1e33c","testStepId":"f588463a-f1fa-49f7-9203-6bae518e393b","testStepResult":{"duration":{"seconds":0,"nanos":127630},"status":"PASSED"},"timestamp":{"seconds":1757374020,"nanos":92000000}}},{"testCaseFinished":{"testCaseStartedId":"1a851208-a2d1-4258-8002-0db0b8f1e33c","timestamp":{"seconds":1757374020,"nanos":92000000},"willBeRetried":false}},{"testCaseStarted":{"attempt":0,"testCaseId":"72d9b403-532d-48a2-ae33-947de5617359","id":"23959a90-79f0-4c83-9fcb-5eb8d9bb0698","timestamp":{"seconds":1757374020,"nanos":92000000}}},{"testStepStarted":{"testCaseStartedId":"23959a90-79f0-4c83-9fcb-5eb8d9bb0698","testStepId":"897cdcba-b07b-467a-a794-57fc81d7fb1c","timestamp":{"seconds":1757374020,"nanos":92000000}}},{"testStepFinished":{"testCaseStartedId":"23959a90-79f0-4c83-9fcb-5eb8d9bb0698","testStepId":"897cdcba-b07b-467a-a794-57fc81d7fb1c","testStepResult":{"duration":{"seconds":0,"nanos":114797},"status":"PASSED"},"timestamp":{"seconds":1757374020,"nanos":93000000}}},{"testStepStarted":{"testCaseStartedId":"23959a90-79f0-4c83-9fcb-5eb8d9bb0698","testStepId":"4b3ddd88-982a-459d-866c-6c383f10aa45","timestamp":{"seconds":1757374020,"nanos":93000000}}},{"testStepFinished":{"testCaseStartedId":"23959a90-79f0-4c83-9fcb-5eb8d9bb0698","testStepId":"4b3ddd88-982a-459d-866c-6c383f10aa45","testStepResult":{"duration":{"seconds":0,"nanos":78624556},"status":"PASSED"},"timestamp":{"seconds":1757374020,"nanos":171000000}}},{"testStepStarted":{"testCaseStartedId":"23959a90-79f0-4c83-9fcb-5eb8d9bb0698","testStepId":"896ed9c1-6abe-4d69-aaf7-c9f78c78aee2","timestamp":{"seconds":1757374020,"nanos":171000000}}},{"testStepFinished":{"testCaseStartedId":"23959a90-79f0-4c83-9fcb-5eb8d9bb0698","testStepId":"896ed9c1-6abe-4d69-aaf7-c9f78c78aee2","testStepResult":{"duration":{"seconds":0,"nanos":234177032},"status":"PASSED"},"timestamp":{"seconds":1757374020,"nanos":406000000}}},{"testStepStarted":{"testCaseStartedId":"23959a90-79f0-4c83-9fcb-5eb8d9bb0698","testStepId":"46d202c2-9fba-4e12-a52a-bc9802cd6771","timestamp":{"seconds":1757374020,"nanos":406000000}}},{"testStepFinished":{"testCaseStartedId":"23959a90-79f0-4c83-9fcb-5eb8d9bb0698","testStepId":"46d202c2-9fba-4e12-a52a-bc9802cd6771","testStepResult":{"duration":{"seconds":0,"nanos":79067108},"status":"PASSED"},"timestamp":{"seconds":1757374020,"nanos":485000000}}},{"testStepStarted":{"testCaseStartedId":"23959a90-79f0-4c83-9fcb-5eb8d9bb0698","testStepId":"e99d30be-ea51-4901-b9ad-5dc8870e1cf1","timestamp":{"seconds":1757374020,"nanos":485000000}}},{"testStepFinished":{"testCaseStartedId":"23959a90-79f0-4c83-9fcb-5eb8d9bb0698","testStepId":"e99d30be-ea51-4901-b9ad-5dc8870e1cf1","testStepResult":{"duration":{"seconds":0,"nanos":244076},"status":"PASSED"},"timestamp":{"seconds":1757374020,"nanos":485000000}}},{"testStepStarted":{"testCaseStartedId":"23959a90-79f0-4c83-9fcb-5eb8d9bb0698","testStepId":"10580584-64d3-4985-8749-048687889ed5","timestamp":{"seconds":1757374020,"nanos":485000000}}},{"testStepFinished":{"testCaseStartedId":"23959a90-79f0-4c83-9fcb-5eb8d9bb0698","testStepId":"10580584-64d3-4985-8749-048687889ed5","testStepResult":{"duration":{"seconds":0,"nanos":181085},"status":"PASSED"},"timestamp":{"seconds":1757374020,"nanos":485000000}}},{"testStepStarted":{"testCaseStartedId":"23959a90-79f0-4c83-9fcb-5eb8d9bb0698","testStepId":"49fbec85-8ad4-4ba0-a9cd-ca983f74cf8d","timestamp":{"seconds":1757374020,"nanos":486000000}}},{"testStepFinished":{"testCaseStartedId":"23959a90-79f0-4c83-9fcb-5eb8d9bb0698","testStepId":"49fbec85-8ad4-4ba0-a9cd-ca983f74cf8d","testStepResult":{"duration":{"seconds":0,"nanos":168745},"status":"PASSED"},"timestamp":{"seconds":1757374020,"nanos":486000000}}},{"testCaseFinished":{"testCaseStartedId":"23959a90-79f0-4c83-9fcb-5eb8d9bb0698","timestamp":{"seconds":1757374020,"nanos":486000000},"willBeRetried":false}},{"testCaseStarted":{"attempt":0,"testCaseId":"992632b2-f6f2-462c-aa53-a253f99ced03","id":"91f8236c-06c4-45a3-a42c-3e1889a9c2f8","timestamp":{"seconds":1757374020,"nanos":486000000}}},{"testStepStarted":{"testCaseStartedId":"91f8236c-06c4-45a3-a42c-3e1889a9c2f8","testStepId":"83306afc-7ed2-4474-9709-8702c9ca153a","timestamp":{"seconds":1757374020,"nanos":486000000}}},{"testStepFinished":{"testCaseStartedId":"91f8236c-06c4-45a3-a42c-3e1889a9c2f8","testStepId":"83306afc-7ed2-4474-9709-8702c9ca153a","testStepResult":{"duration":{"seconds":0,"nanos":141464},"status":"PASSED"},"timestamp":{"seconds":1757374020,"nanos":486000000}}},{"testStepStarted":{"testCaseStartedId":"91f8236c-06c4-45a3-a42c-3e1889a9c2f8","testStepId":"4528887e-cb58-4014-b630-9ee2af908d53","timestamp":{"seconds":1757374020,"nanos":486000000}}},{"testStepFinished":{"testCaseStartedId":"91f8236c-06c4-45a3-a42c-3e1889a9c2f8","testStepId":"4528887e-cb58-4014-b630-9ee2af908d53","testStepResult":{"duration":{"seconds":0,"nanos":78780538},"status":"PASSED"},"timestamp":{"seconds":1757374020,"nanos":565000000}}},{"testStepStarted":{"testCaseStartedId":"91f8236c-06c4-45a3-a42c-3e1889a9c2f8","testStepId":"32dd2f47-9464-4e73-847f-5a9233e7ef8b","timestamp":{"seconds":1757374020,"nanos":565000000}}},{"testStepFinished":{"testCaseStartedId":"91f8236c-06c4-45a3-a42c-3e1889a9c2f8","testStepId":"32dd2f47-9464-4e73-847f-5a9233e7ef8b","testStepResult":{"duration":{"seconds":0,"nanos":869661},"status":"PASSED"},"timestamp":{"seconds":1757374020,"nanos":566000000}}},{"testStepStarted":{"testCaseStartedId":"91f8236c-06c4-45a3-a42c-3e1889a9c2f8","testStepId":"6f9d2ee6-016b-4b28-87d2-b40531f5d827","timestamp":{"seconds":1757374020,"nanos":566000000}}},{"testStepFinished":{"testCaseStartedId":"91f8236c-06c4-45a3-a42c-3e1889a9c2f8","testStepId":"6f9d2ee6-016b-4b28-87d2-b40531f5d827","testStepResult":{"duration":{"seconds":0,"nanos":80156582},"status":"PASSED"},"timestamp":{"seconds":1757374020,"nanos":646000000}}},{"testStepStarted":{"testCaseStartedId":"91f8236c-06c4-45a3-a42c-3e1889a9c2f8","testStepId":"d5a345a0-c8e2-4e34-a367-d7e7dafb7b97","timestamp":{"seconds":1757374020,"nanos":646000000}}},{"testStepFinished":{"testCaseStartedId":"91f8236c-06c4-45a3-a42c-3e1889a9c2f8","testStepId":"d5a345a0-c8e2-4e34-a367-d7e7dafb7b97","testStepResult":{"duration":{"seconds":0,"nanos":260912},"status":"PASSED"},"timestamp":{"seconds":1757374020,"nanos":647000000}}},{"testStepStarted":{"testCaseStartedId":"91f8236c-06c4-45a3-a42c-3e1889a9c2f8","testStepId":"19a11344-0edf-44ba-8c0d-8d968bef086a","timestamp":{"seconds":1757374020,"nanos":647000000}}},{"testStepFinished":{"testCaseStartedId":"91f8236c-06c4-45a3-a42c-3e1889a9c2f8","testStepId":"19a11344-0edf-44ba-8c0d-8d968bef086a","testStepResult":{"duration":{"seconds":0,"nanos":2154473},"status":"PASSED"},"timestamp":{"seconds":1757374020,"nanos":649000000}}},{"testStepStarted":{"testCaseStartedId":"91f8236c-06c4-45a3-a42c-3e1889a9c2f8","testStepId":"12de301a-dd70-4be4-b017-a379ba2e1a76","timestamp":{"seconds":1757374020,"nanos":649000000}}},{"testStepFinished":{"testCaseStartedId":"91f8236c-06c4-45a3-a42c-3e1889a9c2f8","testStepId":"12de301a-dd70-4be4-b017-a379ba2e1a76","testStepResult":{"duration":{"seconds":0,"nanos":80763267},"status":"PASSED"},"timestamp":{"seconds":1757374020,"nanos":730000000}}},{"testStepStarted":{"testCaseStartedId":"91f8236c-06c4-45a3-a42c-3e1889a9c2f8","testStepId":"c99916dc-8300-4348-80a5-d0e8d10decfd","timestamp":{"seconds":1757374020,"nanos":730000000}}},{"testStepFinished":{"testCaseStartedId":"91f8236c-06c4-45a3-a42c-3e1889a9c2f8","testStepId":"c99916dc-8300-4348-80a5-d0e8d10decfd","testStepResult":{"duration":{"seconds":0,"nanos":209256},"status":"PASSED"},"timestamp":{"seconds":1757374020,"nanos":730000000}}},{"testStepStarted":{"testCaseStartedId":"91f8236c-06c4-45a3-a42c-3e1889a9c2f8","testStepId":"c6c962a7-6c10-4d18-8326-135d7402186d","timestamp":{"seconds":1757374020,"nanos":730000000}}},{"testStepFinished":{"testCaseStartedId":"91f8236c-06c4-45a3-a42c-3e1889a9c2f8","testStepId":"c6c962a7-6c10-4d18-8326-135d7402186d","testStepResult":{"duration":{"seconds":0,"nanos":230935},"status":"PASSED"},"timestamp":{"seconds":1757374020,"nanos":731000000}}},{"testStepStarted":{"testCaseStartedId":"91f8236c-06c4-45a3-a42c-3e1889a9c2f8","testStepId":"bdeb81f3-cf35-4b1b-8a81-ad1d952a7d3a","timestamp":{"seconds":1757374020,"nanos":731000000}}},{"testStepFinished":{"testCaseStartedId":"91f8236c-06c4-45a3-a42c-3e1889a9c2f8","testStepId":"bdeb81f3-cf35-4b1b-8a81-ad1d952a7d3a","testStepResult":{"duration":{"seconds":0,"nanos":1346082},"status":"PASSED"},"timestamp":{"seconds":1757374020,"nanos":732000000}}},{"testCaseFinished":{"testCaseStartedId":"91f8236c-06c4-45a3-a42c-3e1889a9c2f8","timestamp":{"seconds":1757374020,"nanos":732000000},"willBeRetried":false}},{"testCaseStarted":{"attempt":0,"testCaseId":"a9ed319f-4da3-4822-a261-b4e84fd413b6","id":"d9b7cd54-6318-4cad-84d0-d144467c34cf","timestamp":{"seconds":1757374020,"nanos":732000000}}},{"testStepStarted":{"testCaseStartedId":"d9b7cd54-6318-4cad-84d0-d144467c34cf","testStepId":"f02a5f3b-ee27-42c0-8a5f-84355c9b7f1a","timestamp":{"seconds":1757374020,"nanos":732000000}}},{"testStepFinished":{"testCaseStartedId":"d9b7cd54-6318-4cad-84d0-d144467c34cf","testStepId":"f02a5f3b-ee27-42c0-8a5f-84355c9b7f1a","testStepResult":{"duration":{"seconds":0,"nanos":170333},"status":"PASSED"},"timestamp":{"seconds":1757374020,"nanos":732000000}}},{"testStepStarted":{"testCaseStartedId":"d9b7cd54-6318-4cad-84d0-d144467c34cf","testStepId":"df65895e-5dfc-49cb-b829-502d0fb8ad94","timestamp":{"seconds":1757374020,"nanos":732000000}}},{"testStepFinished":{"testCaseStartedId":"d9b7cd54-6318-4cad-84d0-d144467c34cf","testStepId":"df65895e-5dfc-49cb-b829-502d0fb8ad94","testStepResult":{"duration":{"seconds":0,"nanos":77871016},"status":"PASSED"},"timestamp":{"seconds":1757374020,"nanos":810000000}}},{"testStepStarted":{"testCaseStartedId":"d9b7cd54-6318-4cad-84d0-d144467c34cf","testStepId":"02bf866c-48b1-45f7-b5bf-bfd315318833","timestamp":{"seconds":1757374020,"nanos":810000000}}},{"testStepFinished":{"testCaseStartedId":"d9b7cd54-6318-4cad-84d0-d144467c34cf","testStepId":"02bf866c-48b1-45f7-b5bf-bfd315318833","testStepResult":{"duration":{"seconds":0,"nanos":1545785},"status":"PASSED"},"timestamp":{"seconds":1757374020,"nanos":812000000}}},{"testStepStarted":{"testCaseStartedId":"d9b7cd54-6318-4cad-84d0-d144467c34cf","testStepId":"e619580e-b5cc-40a3-a033-6d289e9f039f","timestamp":{"seconds":1757374020,"nanos":812000000}}},{"testStepFinished":{"testCaseStartedId":"d9b7cd54-6318-4cad-84d0-d144467c34cf","testStepId":"e619580e-b5cc-40a3-a033-6d289e9f039f","testStepResult":{"duration":{"seconds":0,"nanos":82944649},"status":"PASSED"},"timestamp":{"seconds":1757374020,"nanos":895000000}}},{"testStepStarted":{"testCaseStartedId":"d9b7cd54-6318-4cad-84d0-d144467c34cf","testStepId":"d3f01967-7f76-4471-8df1-1ded625f7357","timestamp":{"seconds":1757374020,"nanos":895000000}}},{"testStepFinished":{"testCaseStartedId":"d9b7cd54-6318-4cad-84d0-d144467c34cf","testStepId":"d3f01967-7f76-4471-8df1-1ded625f7357","testStepResult":{"duration":{"seconds":0,"nanos":219500},"status":"PASSED"},"timestamp":{"seconds":1757374020,"nanos":895000000}}},{"testStepStarted":{"testCaseStartedId":"d9b7cd54-6318-4cad-84d0-d144467c34cf","testStepId":"b26b2629-4a35-4257-8897-da7e723a1f35","timestamp":{"seconds":1757374020,"nanos":895000000}}},{"testStepFinished":{"testCaseStartedId":"d9b7cd54-6318-4cad-84d0-d144467c34cf","testStepId":"b26b2629-4a35-4257-8897-da7e723a1f35","testStepResult":{"duration":{"seconds":0,"nanos":1173119},"status":"PASSED"},"timestamp":{"seconds":1757374020,"nanos":897000000}}},{"testStepStarted":{"testCaseStartedId":"d9b7cd54-6318-4cad-84d0-d144467c34cf","testStepId":"82ead0c8-5365-4cff-8068-9c66f91fcb4f","timestamp":{"seconds":1757374020,"nanos":897000000}}},{"testStepFinished":{"testCaseStartedId":"d9b7cd54-6318-4cad-84d0-d144467c34cf","testStepId":"82ead0c8-5365-4cff-8068-9c66f91fcb4f","testStepResult":{"duration":{"seconds":0,"nanos":78950196},"status":"PASSED"},"timestamp":{"seconds":1757374020,"nanos":976000000}}},{"testStepStarted":{"testCaseStartedId":"d9b7cd54-6318-4cad-84d0-d144467c34cf","testStepId":"2861d790-1b53-4b75-a0a3-1ee7da3c211f","timestamp":{"seconds":1757374020,"nanos":976000000}}},{"testStepFinished":{"testCaseStartedId":"d9b7cd54-6318-4cad-84d0-d144467c34cf","testStepId":"2861d790-1b53-4b75-a0a3-1ee7da3c211f","testStepResult":{"duration":{"seconds":0,"nanos":190918},"status":"PASSED"},"timestamp":{"seconds":1757374020,"nanos":976000000}}},{"testStepStarted":{"testCaseStartedId":"d9b7cd54-6318-4cad-84d0-d144467c34cf","testStepId":"711f073f-8e12-4b96-b72d-a0ae8dc026af","timestamp":{"seconds":1757374020,"nanos":976000000}}},{"testStepFinished":{"testCaseStartedId":"d9b7cd54-6318-4cad-84d0-d144467c34cf","testStepId":"711f073f-8e12-4b96-b72d-a0ae8dc026af","testStepResult":{"duration":{"seconds":0,"nanos":1573309},"status":"PASSED"},"timestamp":{"seconds":1757374020,"nanos":978000000}}},{"testCaseFinished":{"testCaseStartedId":"d9b7cd54-6318-4cad-84d0-d144467c34cf","timestamp":{"seconds":1757374020,"nanos":978000000},"willBeRetried":false}},{"testCaseStarted":{"attempt":0,"testCaseId":"217d663b-55f7-41e4-a78c-c35d32a7bc98","id":"8cdcf469-c443-482d-a58a-3fdd6115d2a0","timestamp":{"seconds":1757374020,"nanos":978000000}}},{"testStepStarted":{"testCaseStartedId":"8cdcf469-c443-482d-a58a-3fdd6115d2a0","testStepId":"3f73de0d-453d-49a3-97b3-0439f5eec0a7","timestamp":{"seconds":1757374020,"nanos":978000000}}},{"testStepFinished":{"testCaseStartedId":"8cdcf469-c443-482d-a58a-3fdd6115d2a0","testStepId":"3f73de0d-453d-49a3-97b3-0439f5eec0a7","testStepResult":{"duration":{"seconds":0,"nanos":181789},"status":"PASSED"},"timestamp":{"seconds":1757374020,"nanos":978000000}}},{"testStepStarted":{"testCaseStartedId":"8cdcf469-c443-482d-a58a-3fdd6115d2a0","testStepId":"98ab5b97-c0b8-40ed-8ba9-799c23858910","timestamp":{"seconds":1757374020,"nanos":978000000}}},{"testStepFinished":{"testCaseStartedId":"8cdcf469-c443-482d-a58a-3fdd6115d2a0","testStepId":"98ab5b97-c0b8-40ed-8ba9-799c23858910","testStepResult":{"duration":{"seconds":0,"nanos":67575018},"status":"PASSED"},"timestamp":{"seconds":1757374021,"nanos":46000000}}},{"testStepStarted":{"testCaseStartedId":"8cdcf469-c443-482d-a58a-3fdd6115d2a0","testStepId":"eb7b8464-a3a0-4277-b0ba-5e5962aeea1b","timestamp":{"seconds":1757374021,"nanos":46000000}}},{"testStepFinished":{"testCaseStartedId":"8cdcf469-c443-482d-a58a-3fdd6115d2a0","testStepId":"eb7b8464-a3a0-4277-b0ba-5e5962aeea1b","testStepResult":{"duration":{"seconds":0,"nanos":613440},"status":"PASSED"},"timestamp":{"seconds":1757374021,"nanos":47000000}}},{"testStepStarted":{"testCaseStartedId":"8cdcf469-c443-482d-a58a-3fdd6115d2a0","testStepId":"4d9a2776-4842-4ec0-9935-0698d082bb81","timestamp":{"seconds":1757374021,"nanos":47000000}}},{"testStepFinished":{"testCaseStartedId":"8cdcf469-c443-482d-a58a-3fdd6115d2a0","testStepId":"4d9a2776-4842-4ec0-9935-0698d082bb81","testStepResult":{"duration":{"seconds":0,"nanos":82984731},"status":"PASSED"},"timestamp":{"seconds":1757374021,"nanos":130000000}}},{"testStepStarted":{"testCaseStartedId":"8cdcf469-c443-482d-a58a-3fdd6115d2a0","testStepId":"88c14565-3aeb-4808-89ff-ea034aea27ea","timestamp":{"seconds":1757374021,"nanos":130000000}}},{"testStepFinished":{"testCaseStartedId":"8cdcf469-c443-482d-a58a-3fdd6115d2a0","testStepId":"88c14565-3aeb-4808-89ff-ea034aea27ea","testStepResult":{"duration":{"seconds":0,"nanos":226838},"status":"PASSED"},"timestamp":{"seconds":1757374021,"nanos":130000000}}},{"testStepStarted":{"testCaseStartedId":"8cdcf469-c443-482d-a58a-3fdd6115d2a0","testStepId":"520ec73a-4614-4c4b-a2e5-dbaeef1c58d7","timestamp":{"seconds":1757374021,"nanos":130000000}}},{"testStepFinished":{"testCaseStartedId":"8cdcf469-c443-482d-a58a-3fdd6115d2a0","testStepId":"520ec73a-4614-4c4b-a2e5-dbaeef1c58d7","testStepResult":{"duration":{"seconds":0,"nanos":73642370},"status":"PASSED"},"timestamp":{"seconds":1757374021,"nanos":204000000}}},{"testStepStarted":{"testCaseStartedId":"8cdcf469-c443-482d-a58a-3fdd6115d2a0","testStepId":"4f930d8b-f8da-4f57-953e-41b1f3f39205","timestamp":{"seconds":1757374021,"nanos":204000000}}},{"testStepFinished":{"testCaseStartedId":"8cdcf469-c443-482d-a58a-3fdd6115d2a0","testStepId":"4f930d8b-f8da-4f57-953e-41b1f3f39205","testStepResult":{"duration":{"seconds":0,"nanos":176145},"status":"PASSED"},"timestamp":{"seconds":1757374021,"nanos":204000000}}},{"testStepStarted":{"testCaseStartedId":"8cdcf469-c443-482d-a58a-3fdd6115d2a0","testStepId":"ba716620-3c4d-40b1-af90-04ba6ebc57a1","timestamp":{"seconds":1757374021,"nanos":204000000}}},{"testStepFinished":{"testCaseStartedId":"8cdcf469-c443-482d-a58a-3fdd6115d2a0","testStepId":"ba716620-3c4d-40b1-af90-04ba6ebc57a1","testStepResult":{"duration":{"seconds":0,"nanos":150134},"status":"PASSED"},"timestamp":{"seconds":1757374021,"nanos":204000000}}},{"testStepStarted":{"testCaseStartedId":"8cdcf469-c443-482d-a58a-3fdd6115d2a0","testStepId":"476bd1e0-64a4-4ff0-a1ab-0c102d51aa44","timestamp":{"seconds":1757374021,"nanos":204000000}}},{"testStepFinished":{"testCaseStartedId":"8cdcf469-c443-482d-a58a-3fdd6115d2a0","testStepId":"476bd1e0-64a4-4ff0-a1ab-0c102d51aa44","testStepResult":{"duration":{"seconds":0,"nanos":403131},"status":"PASSED"},"timestamp":{"seconds":1757374021,"nanos":205000000}}},{"testCaseFinished":{"testCaseStartedId":"8cdcf469-c443-482d-a58a-3fdd6115d2a0","timestamp":{"seconds":1757374021,"nanos":205000000},"willBeRetried":false}},{"testCaseStarted":{"attempt":0,"testCaseId":"fa6bbb3f-11fa-43bb-b653-6c5ba5402e98","id":"3602f351-82c6-4c53-a37d-8676d1a87c1b","timestamp":{"seconds":1757374021,"nanos":205000000}}},{"testStepStarted":{"testCaseStartedId":"3602f351-82c6-4c53-a37d-8676d1a87c1b","testStepId":"71c280a8-77cd-4125-8405-b1306cb6a0b3","timestamp":{"seconds":1757374021,"nanos":205000000}}},{"testStepFinished":{"testCaseStartedId":"3602f351-82c6-4c53-a37d-8676d1a87c1b","testStepId":"71c280a8-77cd-4125-8405-b1306cb6a0b3","testStepResult":{"duration":{"seconds":0,"nanos":150859},"status":"PASSED"},"timestamp":{"seconds":1757374021,"nanos":205000000}}},{"testStepStarted":{"testCaseStartedId":"3602f351-82c6-4c53-a37d-8676d1a87c1b","testStepId":"7e2a87a6-7be7-41dd-b8e3-163ad71d3292","timestamp":{"seconds":1757374021,"nanos":205000000}}},{"testStepFinished":{"testCaseStartedId":"3602f351-82c6-4c53-a37d-8676d1a87c1b","testStepId":"7e2a87a6-7be7-41dd-b8e3-163ad71d3292","testStepResult":{"duration":{"seconds":0,"nanos":80964602},"status":"PASSED"},"timestamp":{"seconds":1757374021,"nanos":286000000}}},{"testStepStarted":{"testCaseStartedId":"3602f351-82c6-4c53-a37d-8676d1a87c1b","testStepId":"d6b2e7ec-42d1-4e26-9add-12e046004e95","timestamp":{"seconds":1757374021,"nanos":286000000}}},{"testStepFinished":{"testCaseStartedId":"3602f351-82c6-4c53-a37d-8676d1a87c1b","testStepId":"d6b2e7ec-42d1-4e26-9add-12e046004e95","testStepResult":{"duration":{"seconds":0,"nanos":2644167},"status":"PASSED"},"timestamp":{"seconds":1757374021,"nanos":289000000}}},{"testStepStarted":{"testCaseStartedId":"3602f351-82c6-4c53-a37d-8676d1a87c1b","testStepId":"ee376e1e-86b8-4157-ace9-225654a7bd8c","timestamp":{"seconds":1757374021,"nanos":289000000}}},{"testStepFinished":{"testCaseStartedId":"3602f351-82c6-4c53-a37d-8676d1a87c1b","testStepId":"ee376e1e-86b8-4157-ace9-225654a7bd8c","testStepResult":{"duration":{"seconds":0,"nanos":80324661},"status":"PASSED"},"timestamp":{"seconds":1757374021,"nanos":369000000}}},{"testStepStarted":{"testCaseStartedId":"3602f351-82c6-4c53-a37d-8676d1a87c1b","testStepId":"727c3910-c08d-4292-82c9-2dcce7810e09","timestamp":{"seconds":1757374021,"nanos":369000000}}},{"testStepFinished":{"testCaseStartedId":"3602f351-82c6-4c53-a37d-8676d1a87c1b","testStepId":"727c3910-c08d-4292-82c9-2dcce7810e09","testStepResult":{"duration":{"seconds":0,"nanos":234249},"status":"PASSED"},"timestamp":{"seconds":1757374021,"nanos":370000000}}},{"testStepStarted":{"testCaseStartedId":"3602f351-82c6-4c53-a37d-8676d1a87c1b","testStepId":"c5dda31a-a6f2-4d35-b0a1-159f8572b2f1","timestamp":{"seconds":1757374021,"nanos":370000000}}},{"testStepFinished":{"testCaseStartedId":"3602f351-82c6-4c53-a37d-8676d1a87c1b","testStepId":"c5dda31a-a6f2-4d35-b0a1-159f8572b2f1","testStepResult":{"duration":{"seconds":0,"nanos":122408},"status":"PASSED"},"timestamp":{"seconds":1757374021,"nanos":370000000}}},{"testStepStarted":{"testCaseStartedId":"3602f351-82c6-4c53-a37d-8676d1a87c1b","testStepId":"ea83d152-9faa-4f70-86ce-0c9ee209e5fb","timestamp":{"seconds":1757374021,"nanos":370000000}}},{"testStepFinished":{"testCaseStartedId":"3602f351-82c6-4c53-a37d-8676d1a87c1b","testStepId":"ea83d152-9faa-4f70-86ce-0c9ee209e5fb","testStepResult":{"duration":{"seconds":0,"nanos":1578418},"status":"PASSED"},"timestamp":{"seconds":1757374021,"nanos":372000000}}},{"testCaseFinished":{"testCaseStartedId":"3602f351-82c6-4c53-a37d-8676d1a87c1b","timestamp":{"seconds":1757374021,"nanos":372000000},"willBeRetried":false}},{"testCaseStarted":{"attempt":0,"testCaseId":"511ed05d-fa01-4d29-be77-1d05eca95163","id":"397ea1ed-b5e5-4a67-9dcb-1e869c5b6697","timestamp":{"seconds":1757374021,"nanos":372000000}}},{"testStepStarted":{"testCaseStartedId":"397ea1ed-b5e5-4a67-9dcb-1e869c5b6697","testStepId":"1ddb5dcf-c163-4578-8725-afb3c1853e13","timestamp":{"seconds":1757374021,"nanos":372000000}}},{"testStepFinished":{"testCaseStartedId":"397ea1ed-b5e5-4a67-9dcb-1e869c5b6697","testStepId":"1ddb5dcf-c163-4578-8725-afb3c1853e13","testStepResult":{"duration":{"seconds":0,"nanos":154188},"status":"PASSED"},"timestamp":{"seconds":1757374021,"nanos":372000000}}},{"testStepStarted":{"testCaseStartedId":"397ea1ed-b5e5-4a67-9dcb-1e869c5b6697","testStepId":"9064cfae-898b-4959-a99d-fc0f70a878e2","timestamp":{"seconds":1757374021,"nanos":372000000}}},{"testStepFinished":{"testCaseStartedId":"397ea1ed-b5e5-4a67-9dcb-1e869c5b6697","testStepId":"9064cfae-898b-4959-a99d-fc0f70a878e2","testStepResult":{"duration":{"seconds":0,"nanos":81371627},"status":"PASSED"},"timestamp":{"seconds":1757374021,"nanos":453000000}}},{"testStepStarted":{"testCaseStartedId":"397ea1ed-b5e5-4a67-9dcb-1e869c5b6697","testStepId":"c5fcacb1-da08-4c39-9e2a-7b46983a243e","timestamp":{"seconds":1757374021,"nanos":453000000}}},{"testStepFinished":{"testCaseStartedId":"397ea1ed-b5e5-4a67-9dcb-1e869c5b6697","testStepId":"c5fcacb1-da08-4c39-9e2a-7b46983a243e","testStepResult":{"duration":{"seconds":0,"nanos":1744437},"status":"PASSED"},"timestamp":{"seconds":1757374021,"nanos":455000000}}},{"testStepStarted":{"testCaseStartedId":"397ea1ed-b5e5-4a67-9dcb-1e869c5b6697","testStepId":"0abe7fac-5d8f-45dd-9c21-173a0bda190d","timestamp":{"seconds":1757374021,"nanos":455000000}}},{"testStepFinished":{"testCaseStartedId":"397ea1ed-b5e5-4a67-9dcb-1e869c5b6697","testStepId":"0abe7fac-5d8f-45dd-9c21-173a0bda190d","testStepResult":{"duration":{"seconds":0,"nanos":454128},"status":"PASSED"},"timestamp":{"seconds":1757374021,"nanos":456000000}}},{"testStepStarted":{"testCaseStartedId":"397ea1ed-b5e5-4a67-9dcb-1e869c5b6697","testStepId":"00f8521f-42ed-4733-985f-c689f1c7f04b","timestamp":{"seconds":1757374021,"nanos":456000000}}},{"testStepFinished":{"testCaseStartedId":"397ea1ed-b5e5-4a67-9dcb-1e869c5b6697","testStepId":"00f8521f-42ed-4733-985f-c689f1c7f04b","testStepResult":{"duration":{"seconds":0,"nanos":80811332},"status":"PASSED"},"timestamp":{"seconds":1757374021,"nanos":537000000}}},{"testStepStarted":{"testCaseStartedId":"397ea1ed-b5e5-4a67-9dcb-1e869c5b6697","testStepId":"1643efcd-cddd-48a9-9e90-36f3872ff7d2","timestamp":{"seconds":1757374021,"nanos":537000000}}},{"testStepFinished":{"testCaseStartedId":"397ea1ed-b5e5-4a67-9dcb-1e869c5b6697","testStepId":"1643efcd-cddd-48a9-9e90-36f3872ff7d2","testStepResult":{"duration":{"seconds":0,"nanos":166973},"status":"PASSED"},"timestamp":{"seconds":1757374021,"nanos":537000000}}},{"testStepStarted":{"testCaseStartedId":"397ea1ed-b5e5-4a67-9dcb-1e869c5b6697","testStepId":"413f7a8a-ba42-4b3e-a846-5a6a074e888b","timestamp":{"seconds":1757374021,"nanos":537000000}}},{"testStepFinished":{"testCaseStartedId":"397ea1ed-b5e5-4a67-9dcb-1e869c5b6697","testStepId":"413f7a8a-ba42-4b3e-a846-5a6a074e888b","testStepResult":{"duration":{"seconds":0,"nanos":619334219},"status":"PASSED"},"timestamp":{"seconds":1757374022,"nanos":156000000}}},{"testCaseFinished":{"testCaseStartedId":"397ea1ed-b5e5-4a67-9dcb-1e869c5b6697","timestamp":{"seconds":1757374022,"nanos":156000000},"willBeRetried":false}},{"testCaseStarted":{"attempt":0,"testCaseId":"47dbb328-9f17-4dc3-a50a-abb062e17210","id":"7b654504-23b9-41cc-b097-f275cda7d502","timestamp":{"seconds":1757374022,"nanos":156000000}}},{"testStepStarted":{"testCaseStartedId":"7b654504-23b9-41cc-b097-f275cda7d502","testStepId":"6f4c632e-6de0-42d1-ad32-2eef155188c3","timestamp":{"seconds":1757374022,"nanos":157000000}}},{"testStepFinished":{"testCaseStartedId":"7b654504-23b9-41cc-b097-f275cda7d502","testStepId":"6f4c632e-6de0-42d1-ad32-2eef155188c3","testStepResult":{"duration":{"seconds":0,"nanos":214889},"status":"PASSED"},"timestamp":{"seconds":1757374022,"nanos":157000000}}},{"testStepStarted":{"testCaseStartedId":"7b654504-23b9-41cc-b097-f275cda7d502","testStepId":"9c91ba9b-fadb-4b16-b2d6-aac95b8458bd","timestamp":{"seconds":1757374022,"nanos":157000000}}},{"testStepFinished":{"testCaseStartedId":"7b654504-23b9-41cc-b097-f275cda7d502","testStepId":"9c91ba9b-fadb-4b16-b2d6-aac95b8458bd","testStepResult":{"duration":{"seconds":0,"nanos":79854660},"status":"PASSED"},"timestamp":{"seconds":1757374022,"nanos":237000000}}},{"testStepStarted":{"testCaseStartedId":"7b654504-23b9-41cc-b097-f275cda7d502","testStepId":"dc41724a-0b04-448c-ad7a-1c199cac6d4e","timestamp":{"seconds":1757374022,"nanos":237000000}}},{"testStepFinished":{"testCaseStartedId":"7b654504-23b9-41cc-b097-f275cda7d502","testStepId":"dc41724a-0b04-448c-ad7a-1c199cac6d4e","testStepResult":{"duration":{"seconds":0,"nanos":696224},"status":"PASSED"},"timestamp":{"seconds":1757374022,"nanos":238000000}}},{"testStepStarted":{"testCaseStartedId":"7b654504-23b9-41cc-b097-f275cda7d502","testStepId":"23fb5c99-1f50-4f8c-ae02-585945ada80d","timestamp":{"seconds":1757374022,"nanos":238000000}}},{"testStepFinished":{"testCaseStartedId":"7b654504-23b9-41cc-b097-f275cda7d502","testStepId":"23fb5c99-1f50-4f8c-ae02-585945ada80d","testStepResult":{"duration":{"seconds":0,"nanos":78777748},"status":"PASSED"},"timestamp":{"seconds":1757374022,"nanos":316000000}}},{"testStepStarted":{"testCaseStartedId":"7b654504-23b9-41cc-b097-f275cda7d502","testStepId":"c15e05c3-ce5e-465f-ac50-6bd0184e79b6","timestamp":{"seconds":1757374022,"nanos":317000000}}},{"testStepFinished":{"testCaseStartedId":"7b654504-23b9-41cc-b097-f275cda7d502","testStepId":"c15e05c3-ce5e-465f-ac50-6bd0184e79b6","testStepResult":{"duration":{"seconds":0,"nanos":197449},"status":"PASSED"},"timestamp":{"seconds":1757374022,"nanos":317000000}}},{"testStepStarted":{"testCaseStartedId":"7b654504-23b9-41cc-b097-f275cda7d502","testStepId":"d85d3117-8fcb-4c0e-a4b6-32b23891c3c1","timestamp":{"seconds":1757374022,"nanos":317000000}}},{"testStepFinished":{"testCaseStartedId":"7b654504-23b9-41cc-b097-f275cda7d502","testStepId":"d85d3117-8fcb-4c0e-a4b6-32b23891c3c1","testStepResult":{"duration":{"seconds":0,"nanos":634030},"status":"PASSED"},"timestamp":{"seconds":1757374022,"nanos":318000000}}},{"testStepStarted":{"testCaseStartedId":"7b654504-23b9-41cc-b097-f275cda7d502","testStepId":"40ef38b1-37b0-490f-a711-05c8ae1c2e70","timestamp":{"seconds":1757374022,"nanos":318000000}}},{"testStepFinished":{"testCaseStartedId":"7b654504-23b9-41cc-b097-f275cda7d502","testStepId":"40ef38b1-37b0-490f-a711-05c8ae1c2e70","testStepResult":{"duration":{"seconds":0,"nanos":81099985},"status":"PASSED"},"timestamp":{"seconds":1757374022,"nanos":399000000}}},{"testStepStarted":{"testCaseStartedId":"7b654504-23b9-41cc-b097-f275cda7d502","testStepId":"b129cf64-3bae-4f63-849c-4ee1af1df494","timestamp":{"seconds":1757374022,"nanos":399000000}}},{"testStepFinished":{"testCaseStartedId":"7b654504-23b9-41cc-b097-f275cda7d502","testStepId":"b129cf64-3bae-4f63-849c-4ee1af1df494","testStepResult":{"duration":{"seconds":0,"nanos":706613},"status":"FAILED","message":"AssertionError\n + expected - actual\n\n -starting\n +growing\n\n at World.<anonymous> (\/Users\/erikspangenberg\/projects\/devpod-development\/.gherkin\/step_definitions\/devpod_steps.js:259:28)","exception":{"type":"AssertionError","message":"expected 'starting' to equal 'growing'","stackTrace":" at World.<anonymous> (\/Users\/erikspangenberg\/projects\/devpod-development\/.gherkin\/step_definitions\/devpod_steps.js:259:28)"}},"timestamp":{"seconds":1757374022,"nanos":402000000}}},{"testStepStarted":{"testCaseStartedId":"7b654504-23b9-41cc-b097-f275cda7d502","testStepId":"c45a7c49-9e9d-41da-85ad-cc680fcf25ee","timestamp":{"seconds":1757374022,"nanos":402000000}}},{"testStepFinished":{"testCaseStartedId":"7b654504-23b9-41cc-b097-f275cda7d502","testStepId":"c45a7c49-9e9d-41da-85ad-cc680fcf25ee","testStepResult":{"status":"SKIPPED","duration":{"seconds":0,"nanos":0}},"timestamp":{"seconds":1757374022,"nanos":402000000}}},{"testStepStarted":{"testCaseStartedId":"7b654504-23b9-41cc-b097-f275cda7d502","testStepId":"ede4d3d7-b265-4406-9287-38e1f94dab05","timestamp":{"seconds":1757374022,"nanos":402000000}}},{"testStepFinished":{"testCaseStartedId":"7b654504-23b9-41cc-b097-f275cda7d502","testStepId":"ede4d3d7-b265-4406-9287-38e1f94dab05","testStepResult":{"status":"SKIPPED","duration":{"seconds":0,"nanos":0}},"timestamp":{"seconds":1757374022,"nanos":402000000}}},{"testStepStarted":{"testCaseStartedId":"7b654504-23b9-41cc-b097-f275cda7d502","testStepId":"d29c3016-27d3-42ea-ab80-a6f0f8c231a0","timestamp":{"seconds":1757374022,"nanos":402000000}}},{"testStepFinished":{"testCaseStartedId":"7b654504-23b9-41cc-b097-f275cda7d502","testStepId":"d29c3016-27d3-42ea-ab80-a6f0f8c231a0","testStepResult":{"status":"SKIPPED","duration":{"seconds":0,"nanos":0}},"timestamp":{"seconds":1757374022,"nanos":402000000}}},{"testStepStarted":{"testCaseStartedId":"7b654504-23b9-41cc-b097-f275cda7d502","testStepId":"0c6d8064-105c-4635-8eb1-c7b73f02516f","timestamp":{"seconds":1757374022,"nanos":402000000}}},{"testStepFinished":{"testCaseStartedId":"7b654504-23b9-41cc-b097-f275cda7d502","testStepId":"0c6d8064-105c-4635-8eb1-c7b73f02516f","testStepResult":{"status":"SKIPPED","duration":{"seconds":0,"nanos":0}},"timestamp":{"seconds":1757374022,"nanos":402000000}}},{"testStepStarted":{"testCaseStartedId":"7b654504-23b9-41cc-b097-f275cda7d502","testStepId":"376f2976-1b32-4ec5-82de-a85efbff4a66","timestamp":{"seconds":1757374022,"nanos":403000000}}},{"testStepFinished":{"testCaseStartedId":"7b654504-23b9-41cc-b097-f275cda7d502","testStepId":"376f2976-1b32-4ec5-82de-a85efbff4a66","testStepResult":{"status":"SKIPPED","duration":{"seconds":0,"nanos":0}},"timestamp":{"seconds":1757374022,"nanos":403000000}}},{"testStepStarted":{"testCaseStartedId":"7b654504-23b9-41cc-b097-f275cda7d502","testStepId":"bbe33c87-4f80-4dce-ae4d-a2ce8b959cb7","timestamp":{"seconds":1757374022,"nanos":403000000}}},{"testStepFinished":{"testCaseStartedId":"7b654504-23b9-41cc-b097-f275cda7d502","testStepId":"bbe33c87-4f80-4dce-ae4d-a2ce8b959cb7","testStepResult":{"status":"SKIPPED","duration":{"seconds":0,"nanos":0}},"timestamp":{"seconds":1757374022,"nanos":403000000}}},{"testStepStarted":{"testCaseStartedId":"7b654504-23b9-41cc-b097-f275cda7d502","testStepId":"42f2ca60-6812-4a75-8101-27d647eab130","timestamp":{"seconds":1757374022,"nanos":403000000}}},{"testStepFinished":{"testCaseStartedId":"7b654504-23b9-41cc-b097-f275cda7d502","testStepId":"42f2ca60-6812-4a75-8101-27d647eab130","testStepResult":{"duration":{"seconds":0,"nanos":474178},"status":"PASSED"},"timestamp":{"seconds":1757374022,"nanos":403000000}}},{"testCaseFinished":{"testCaseStartedId":"7b654504-23b9-41cc-b097-f275cda7d502","timestamp":{"seconds":1757374022,"nanos":403000000},"willBeRetried":false}},{"testCaseStarted":{"attempt":0,"testCaseId":"8475d79e-af2a-48ea-adfc-6da10b678331","id":"db25306a-286c-40ed-9dbf-c5fff4c8bc70","timestamp":{"seconds":1757374022,"nanos":403000000}}},{"testStepStarted":{"testCaseStartedId":"db25306a-286c-40ed-9dbf-c5fff4c8bc70","testStepId":"17734593-d6ff-4745-a656-c86f21f93ff5","timestamp":{"seconds":1757374022,"nanos":403000000}}},{"testStepFinished":{"testCaseStartedId":"db25306a-286c-40ed-9dbf-c5fff4c8bc70","testStepId":"17734593-d6ff-4745-a656-c86f21f93ff5","testStepResult":{"duration":{"seconds":0,"nanos":161051},"status":"PASSED"},"timestamp":{"seconds":1757374022,"nanos":403000000}}},{"testStepStarted":{"testCaseStartedId":"db25306a-286c-40ed-9dbf-c5fff4c8bc70","testStepId":"af3cf452-23a7-4514-86f8-6707ab50eeca","timestamp":{"seconds":1757374022,"nanos":403000000}}},{"testStepFinished":{"testCaseStartedId":"db25306a-286c-40ed-9dbf-c5fff4c8bc70","testStepId":"af3cf452-23a7-4514-86f8-6707ab50eeca","testStepResult":{"duration":{"seconds":0,"nanos":76353562},"status":"PASSED"},"timestamp":{"seconds":1757374022,"nanos":480000000}}},{"testStepStarted":{"testCaseStartedId":"db25306a-286c-40ed-9dbf-c5fff4c8bc70","testStepId":"1f1d14b7-8705-44cd-b9a1-cda66ade7f4b","timestamp":{"seconds":1757374022,"nanos":480000000}}},{"testStepFinished":{"testCaseStartedId":"db25306a-286c-40ed-9dbf-c5fff4c8bc70","testStepId":"1f1d14b7-8705-44cd-b9a1-cda66ade7f4b","testStepResult":{"duration":{"seconds":0,"nanos":1613486},"status":"PASSED"},"timestamp":{"seconds":1757374022,"nanos":482000000}}},{"testStepStarted":{"testCaseStartedId":"db25306a-286c-40ed-9dbf-c5fff4c8bc70","testStepId":"09dbce9a-3931-4f03-aec1-798a611b27e5","timestamp":{"seconds":1757374022,"nanos":482000000}}},{"testStepFinished":{"testCaseStartedId":"db25306a-286c-40ed-9dbf-c5fff4c8bc70","testStepId":"09dbce9a-3931-4f03-aec1-798a611b27e5","testStepResult":{"duration":{"seconds":0,"nanos":73673419},"status":"PASSED"},"timestamp":{"seconds":1757374022,"nanos":555000000}}},{"testStepStarted":{"testCaseStartedId":"db25306a-286c-40ed-9dbf-c5fff4c8bc70","testStepId":"56aced2e-c81e-40df-9f81-ea5e0d93d778","timestamp":{"seconds":1757374022,"nanos":556000000}}},{"testStepFinished":{"testCaseStartedId":"db25306a-286c-40ed-9dbf-c5fff4c8bc70","testStepId":"56aced2e-c81e-40df-9f81-ea5e0d93d778","testStepResult":{"duration":{"seconds":0,"nanos":172493},"status":"PASSED"},"timestamp":{"seconds":1757374022,"nanos":556000000}}},{"testStepStarted":{"testCaseStartedId":"db25306a-286c-40ed-9dbf-c5fff4c8bc70","testStepId":"aef73c2e-3116-4d96-9244-81671bb46f96","timestamp":{"seconds":1757374022,"nanos":556000000}}},{"testStepFinished":{"testCaseStartedId":"db25306a-286c-40ed-9dbf-c5fff4c8bc70","testStepId":"aef73c2e-3116-4d96-9244-81671bb46f96","testStepResult":{"duration":{"seconds":0,"nanos":822210},"status":"PASSED"},"timestamp":{"seconds":1757374022,"nanos":557000000}}},{"testCaseFinished":{"testCaseStartedId":"db25306a-286c-40ed-9dbf-c5fff4c8bc70","timestamp":{"seconds":1757374022,"nanos":557000000},"willBeRetried":false}},{"testCaseStarted":{"attempt":0,"testCaseId":"cff405db-de0f-43b3-a87d-ad002c7e2f85","id":"0a30c2a5-1565-4fe5-99e3-6bd2a0d3debe","timestamp":{"seconds":1757374022,"nanos":557000000}}},{"testStepStarted":{"testCaseStartedId":"0a30c2a5-1565-4fe5-99e3-6bd2a0d3debe","testStepId":"5913b926-8ab3-4552-b6c4-fc56c9c08573","timestamp":{"seconds":1757374022,"nanos":557000000}}},{"testStepFinished":{"testCaseStartedId":"0a30c2a5-1565-4fe5-99e3-6bd2a0d3debe","testStepId":"5913b926-8ab3-4552-b6c4-fc56c9c08573","testStepResult":{"duration":{"seconds":0,"nanos":175388},"status":"PASSED"},"timestamp":{"seconds":1757374022,"nanos":557000000}}},{"testStepStarted":{"testCaseStartedId":"0a30c2a5-1565-4fe5-99e3-6bd2a0d3debe","testStepId":"6dffa023-9c78-4cca-88c8-9bc9ff714981","timestamp":{"seconds":1757374022,"nanos":557000000}}},{"testStepFinished":{"testCaseStartedId":"0a30c2a5-1565-4fe5-99e3-6bd2a0d3debe","testStepId":"6dffa023-9c78-4cca-88c8-9bc9ff714981","testStepResult":{"duration":{"seconds":0,"nanos":86622284},"status":"PASSED"},"timestamp":{"seconds":1757374022,"nanos":644000000}}},{"testStepStarted":{"testCaseStartedId":"0a30c2a5-1565-4fe5-99e3-6bd2a0d3debe","testStepId":"aa0c2f01-5b7f-462f-aad2-cd2a4306a585","timestamp":{"seconds":1757374022,"nanos":644000000}}},{"testStepFinished":{"testCaseStartedId":"0a30c2a5-1565-4fe5-99e3-6bd2a0d3debe","testStepId":"aa0c2f01-5b7f-462f-aad2-cd2a4306a585","testStepResult":{"duration":{"seconds":0,"nanos":766830},"status":"PASSED"},"timestamp":{"seconds":1757374022,"nanos":645000000}}},{"testStepStarted":{"testCaseStartedId":"0a30c2a5-1565-4fe5-99e3-6bd2a0d3debe","testStepId":"0fa9ab41-72da-4b00-8e69-f369d8ef296f","timestamp":{"seconds":1757374022,"nanos":645000000}}},{"testStepFinished":{"testCaseStartedId":"0a30c2a5-1565-4fe5-99e3-6bd2a0d3debe","testStepId":"0fa9ab41-72da-4b00-8e69-f369d8ef296f","testStepResult":{"duration":{"seconds":0,"nanos":245701937},"status":"PASSED"},"timestamp":{"seconds":1757374022,"nanos":891000000}}},{"testStepStarted":{"testCaseStartedId":"0a30c2a5-1565-4fe5-99e3-6bd2a0d3debe","testStepId":"15f4a39a-ed33-4c90-a848-9a787726ae9d","timestamp":{"seconds":1757374022,"nanos":891000000}}},{"testStepFinished":{"testCaseStartedId":"0a30c2a5-1565-4fe5-99e3-6bd2a0d3debe","testStepId":"15f4a39a-ed33-4c90-a848-9a787726ae9d","testStepResult":{"duration":{"seconds":0,"nanos":207640},"status":"PASSED"},"timestamp":{"seconds":1757374022,"nanos":891000000}}},{"testStepStarted":{"testCaseStartedId":"0a30c2a5-1565-4fe5-99e3-6bd2a0d3debe","testStepId":"f316b6f1-0e9c-4216-b9e8-9a98c1799fa7","timestamp":{"seconds":1757374022,"nanos":891000000}}},{"testStepFinished":{"testCaseStartedId":"0a30c2a5-1565-4fe5-99e3-6bd2a0d3debe","testStepId":"f316b6f1-0e9c-4216-b9e8-9a98c1799fa7","testStepResult":{"status":"UNDEFINED","duration":{"seconds":0,"nanos":0}},"timestamp":{"seconds":1757374022,"nanos":891000000}}},{"testStepStarted":{"testCaseStartedId":"0a30c2a5-1565-4fe5-99e3-6bd2a0d3debe","testStepId":"392394b2-f360-4b24-b8ef-0554397487a3","timestamp":{"seconds":1757374022,"nanos":891000000}}},{"testStepFinished":{"testCaseStartedId":"0a30c2a5-1565-4fe5-99e3-6bd2a0d3debe","testStepId":"392394b2-f360-4b24-b8ef-0554397487a3","testStepResult":{"status":"SKIPPED","duration":{"seconds":0,"nanos":0}},"timestamp":{"seconds":1757374022,"nanos":891000000}}},{"testStepStarted":{"testCaseStartedId":"0a30c2a5-1565-4fe5-99e3-6bd2a0d3debe","testStepId":"78d08da2-907a-479c-ad4a-9b535ac30cff","timestamp":{"seconds":1757374022,"nanos":891000000}}},{"testStepFinished":{"testCaseStartedId":"0a30c2a5-1565-4fe5-99e3-6bd2a0d3debe","testStepId":"78d08da2-907a-479c-ad4a-9b535ac30cff","testStepResult":{"status":"SKIPPED","duration":{"seconds":0,"nanos":0}},"timestamp":{"seconds":1757374022,"nanos":891000000}}},{"testStepStarted":{"testCaseStartedId":"0a30c2a5-1565-4fe5-99e3-6bd2a0d3debe","testStepId":"c68b29a8-48f2-4c17-856a-1c9255a24801","timestamp":{"seconds":1757374022,"nanos":891000000}}},{"testStepFinished":{"testCaseStartedId":"0a30c2a5-1565-4fe5-99e3-6bd2a0d3debe","testStepId":"c68b29a8-48f2-4c17-856a-1c9255a24801","testStepResult":{"status":"SKIPPED","duration":{"seconds":0,"nanos":0}},"timestamp":{"seconds":1757374022,"nanos":891000000}}},{"testStepStarted":{"testCaseStartedId":"0a30c2a5-1565-4fe5-99e3-6bd2a0d3debe","testStepId":"a1df1b50-bdea-4ee9-93eb-90fe951dc632","timestamp":{"seconds":1757374022,"nanos":891000000}}},{"testStepFinished":{"testCaseStartedId":"0a30c2a5-1565-4fe5-99e3-6bd2a0d3debe","testStepId":"a1df1b50-bdea-4ee9-93eb-90fe951dc632","testStepResult":{"status":"UNDEFINED","duration":{"seconds":0,"nanos":0}},"timestamp":{"seconds":1757374022,"nanos":891000000}}},{"testStepStarted":{"testCaseStartedId":"0a30c2a5-1565-4fe5-99e3-6bd2a0d3debe","testStepId":"52b8a48a-5f80-45e0-9b03-1fbd14ff030b","timestamp":{"seconds":1757374022,"nanos":891000000}}},{"testStepFinished":{"testCaseStartedId":"0a30c2a5-1565-4fe5-99e3-6bd2a0d3debe","testStepId":"52b8a48a-5f80-45e0-9b03-1fbd14ff030b","testStepResult":{"duration":{"seconds":0,"nanos":325844},"status":"PASSED"},"timestamp":{"seconds":1757374022,"nanos":892000000}}},{"testCaseFinished":{"testCaseStartedId":"0a30c2a5-1565-4fe5-99e3-6bd2a0d3debe","timestamp":{"seconds":1757374022,"nanos":892000000},"willBeRetried":false}},{"testCaseStarted":{"attempt":0,"testCaseId":"3714836c-3772-4ba3-a567-aead8f841d88","id":"cac45884-fb0f-406b-a03b-a6085aa55ada","timestamp":{"seconds":1757374022,"nanos":892000000}}},{"testStepStarted":{"testCaseStartedId":"cac45884-fb0f-406b-a03b-a6085aa55ada","testStepId":"72c71899-53c1-4214-ade5-18f335ab0c78","timestamp":{"seconds":1757374022,"nanos":892000000}}},{"testStepFinished":{"testCaseStartedId":"cac45884-fb0f-406b-a03b-a6085aa55ada","testStepId":"72c71899-53c1-4214-ade5-18f335ab0c78","testStepResult":{"duration":{"seconds":0,"nanos":160939},"status":"PASSED"},"timestamp":{"seconds":1757374022,"nanos":892000000}}},{"testStepStarted":{"testCaseStartedId":"cac45884-fb0f-406b-a03b-a6085aa55ada","testStepId":"53b15f54-03e0-4d14-9075-83d7e860b172","timestamp":{"seconds":1757374022,"nanos":892000000}}},{"testStepFinished":{"testCaseStartedId":"cac45884-fb0f-406b-a03b-a6085aa55ada","testStepId":"53b15f54-03e0-4d14-9075-83d7e860b172","testStepResult":{"duration":{"seconds":0,"nanos":104062716},"status":"PASSED"},"timestamp":{"seconds":1757374022,"nanos":996000000}}},{"testStepStarted":{"testCaseStartedId":"cac45884-fb0f-406b-a03b-a6085aa55ada","testStepId":"c3e2cadc-db23-447d-acb2-c9a85a297fcf","timestamp":{"seconds":1757374022,"nanos":996000000}}},{"testStepFinished":{"testCaseStartedId":"cac45884-fb0f-406b-a03b-a6085aa55ada","testStepId":"c3e2cadc-db23-447d-acb2-c9a85a297fcf","testStepResult":{"duration":{"seconds":0,"nanos":102890810},"status":"PASSED"},"timestamp":{"seconds":1757374023,"nanos":99000000}}},{"testStepStarted":{"testCaseStartedId":"cac45884-fb0f-406b-a03b-a6085aa55ada","testStepId":"99bb3fb8-450e-4119-bfbe-471b564604a3","timestamp":{"seconds":1757374023,"nanos":99000000}}},{"testStepFinished":{"testCaseStartedId":"cac45884-fb0f-406b-a03b-a6085aa55ada","testStepId":"99bb3fb8-450e-4119-bfbe-471b564604a3","testStepResult":{"duration":{"seconds":0,"nanos":453110},"status":"PASSED"},"timestamp":{"seconds":1757374023,"nanos":100000000}}},{"testStepStarted":{"testCaseStartedId":"cac45884-fb0f-406b-a03b-a6085aa55ada","testStepId":"b975a199-7186-4979-a4ee-d260c287ccb8","timestamp":{"seconds":1757374023,"nanos":100000000}}},{"testStepFinished":{"testCaseStartedId":"cac45884-fb0f-406b-a03b-a6085aa55ada","testStepId":"b975a199-7186-4979-a4ee-d260c287ccb8","testStepResult":{"duration":{"seconds":0,"nanos":195309},"status":"PASSED"},"timestamp":{"seconds":1757374023,"nanos":100000000}}},{"testStepStarted":{"testCaseStartedId":"cac45884-fb0f-406b-a03b-a6085aa55ada","testStepId":"d307aa0f-3ba9-496c-80f7-43fe058f9a22","timestamp":{"seconds":1757374023,"nanos":100000000}}},{"testStepFinished":{"testCaseStartedId":"cac45884-fb0f-406b-a03b-a6085aa55ada","testStepId":"d307aa0f-3ba9-496c-80f7-43fe058f9a22","testStepResult":{"duration":{"seconds":0,"nanos":197815},"status":"PASSED"},"timestamp":{"seconds":1757374023,"nanos":100000000}}},{"testCaseFinished":{"testCaseStartedId":"cac45884-fb0f-406b-a03b-a6085aa55ada","timestamp":{"seconds":1757374023,"nanos":100000000},"willBeRetried":false}},{"testCaseStarted":{"attempt":0,"testCaseId":"bce01079-052b-4b39-a434-d18f882dc8e6","id":"d2a15ab0-e26e-4ccd-b6f0-3ba70cc40c21","timestamp":{"seconds":1757374023,"nanos":100000000}}},{"testStepStarted":{"testCaseStartedId":"d2a15ab0-e26e-4ccd-b6f0-3ba70cc40c21","testStepId":"65f9f2f9-b22e-4b8d-bc0b-6430406e6747","timestamp":{"seconds":1757374023,"nanos":100000000}}},{"testStepFinished":{"testCaseStartedId":"d2a15ab0-e26e-4ccd-b6f0-3ba70cc40c21","testStepId":"65f9f2f9-b22e-4b8d-bc0b-6430406e6747","testStepResult":{"duration":{"seconds":0,"nanos":165003},"status":"PASSED"},"timestamp":{"seconds":1757374023,"nanos":101000000}}},{"testStepStarted":{"testCaseStartedId":"d2a15ab0-e26e-4ccd-b6f0-3ba70cc40c21","testStepId":"2bda9ed3-b811-4252-920e-f196856e0f57","timestamp":{"seconds":1757374023,"nanos":101000000}}},{"testStepFinished":{"testCaseStartedId":"d2a15ab0-e26e-4ccd-b6f0-3ba70cc40c21","testStepId":"2bda9ed3-b811-4252-920e-f196856e0f57","testStepResult":{"duration":{"seconds":0,"nanos":197704784},"status":"PASSED"},"timestamp":{"seconds":1757374023,"nanos":298000000}}},{"testStepStarted":{"testCaseStartedId":"d2a15ab0-e26e-4ccd-b6f0-3ba70cc40c21","testStepId":"ba9029ff-7d8a-41fe-9d26-d657b7b70854","timestamp":{"seconds":1757374023,"nanos":299000000}}},{"testStepFinished":{"testCaseStartedId":"d2a15ab0-e26e-4ccd-b6f0-3ba70cc40c21","testStepId":"ba9029ff-7d8a-41fe-9d26-d657b7b70854","testStepResult":{"duration":{"seconds":0,"nanos":101068260},"status":"PASSED"},"timestamp":{"seconds":1757374023,"nanos":400000000}}},{"testStepStarted":{"testCaseStartedId":"d2a15ab0-e26e-4ccd-b6f0-3ba70cc40c21","testStepId":"3686d712-cdfe-4a16-a8c2-0058dfdeba9c","timestamp":{"seconds":1757374023,"nanos":400000000}}},{"testStepFinished":{"testCaseStartedId":"d2a15ab0-e26e-4ccd-b6f0-3ba70cc40c21","testStepId":"3686d712-cdfe-4a16-a8c2-0058dfdeba9c","testStepResult":{"duration":{"seconds":0,"nanos":430808},"status":"PASSED"},"timestamp":{"seconds":1757374023,"nanos":400000000}}},{"testStepStarted":{"testCaseStartedId":"d2a15ab0-e26e-4ccd-b6f0-3ba70cc40c21","testStepId":"ab2f6968-461f-4252-b5ae-d007d7c43aa6","timestamp":{"seconds":1757374023,"nanos":400000000}}},{"testStepFinished":{"testCaseStartedId":"d2a15ab0-e26e-4ccd-b6f0-3ba70cc40c21","testStepId":"ab2f6968-461f-4252-b5ae-d007d7c43aa6","testStepResult":{"duration":{"seconds":0,"nanos":352104},"status":"PASSED"},"timestamp":{"seconds":1757374023,"nanos":401000000}}},{"testStepStarted":{"testCaseStartedId":"d2a15ab0-e26e-4ccd-b6f0-3ba70cc40c21","testStepId":"024582ae-4ba9-4cb9-9191-fb57f2f35c15","timestamp":{"seconds":1757374023,"nanos":401000000}}},{"testStepFinished":{"testCaseStartedId":"d2a15ab0-e26e-4ccd-b6f0-3ba70cc40c21","testStepId":"024582ae-4ba9-4cb9-9191-fb57f2f35c15","testStepResult":{"duration":{"seconds":0,"nanos":345145},"status":"PASSED"},"timestamp":{"seconds":1757374023,"nanos":401000000}}},{"testCaseFinished":{"testCaseStartedId":"d2a15ab0-e26e-4ccd-b6f0-3ba70cc40c21","timestamp":{"seconds":1757374023,"nanos":401000000},"willBeRetried":false}},{"testCaseStarted":{"attempt":0,"testCaseId":"bed8a3c1-e65b-4d80-8c12-8d62f6aba0bc","id":"f0d4439d-c8a4-4b88-a5d0-8659b9ad8cdc","timestamp":{"seconds":1757374023,"nanos":401000000}}},{"testStepStarted":{"testCaseStartedId":"f0d4439d-c8a4-4b88-a5d0-8659b9ad8cdc","testStepId":"09bff781-24b0-4cd5-a9d8-71f5ac7956b6","timestamp":{"seconds":1757374023,"nanos":401000000}}},{"testStepFinished":{"testCaseStartedId":"f0d4439d-c8a4-4b88-a5d0-8659b9ad8cdc","testStepId":"09bff781-24b0-4cd5-a9d8-71f5ac7956b6","testStepResult":{"duration":{"seconds":0,"nanos":167071},"status":"PASSED"},"timestamp":{"seconds":1757374023,"nanos":402000000}}},{"testStepStarted":{"testCaseStartedId":"f0d4439d-c8a4-4b88-a5d0-8659b9ad8cdc","testStepId":"5e1a5cc7-1a9b-4a13-b13e-edc215032c54","timestamp":{"seconds":1757374023,"nanos":402000000}}},{"testStepFinished":{"testCaseStartedId":"f0d4439d-c8a4-4b88-a5d0-8659b9ad8cdc","testStepId":"5e1a5cc7-1a9b-4a13-b13e-edc215032c54","testStepResult":{"duration":{"seconds":0,"nanos":158131277},"status":"PASSED"},"timestamp":{"seconds":1757374023,"nanos":560000000}}},{"testStepStarted":{"testCaseStartedId":"f0d4439d-c8a4-4b88-a5d0-8659b9ad8cdc","testStepId":"0e3b77bc-2e93-4996-8d3a-425714d5ea98","timestamp":{"seconds":1757374023,"nanos":560000000}}},{"testStepFinished":{"testCaseStartedId":"f0d4439d-c8a4-4b88-a5d0-8659b9ad8cdc","testStepId":"0e3b77bc-2e93-4996-8d3a-425714d5ea98","testStepResult":{"duration":{"seconds":0,"nanos":76766571},"status":"PASSED"},"timestamp":{"seconds":1757374023,"nanos":637000000}}},{"testStepStarted":{"testCaseStartedId":"f0d4439d-c8a4-4b88-a5d0-8659b9ad8cdc","testStepId":"629767f9-caca-40f8-b050-aeaecfe4868d","timestamp":{"seconds":1757374023,"nanos":637000000}}},{"testStepFinished":{"testCaseStartedId":"f0d4439d-c8a4-4b88-a5d0-8659b9ad8cdc","testStepId":"629767f9-caca-40f8-b050-aeaecfe4868d","testStepResult":{"duration":{"seconds":0,"nanos":194663},"status":"PASSED"},"timestamp":{"seconds":1757374023,"nanos":637000000}}},{"testStepStarted":{"testCaseStartedId":"f0d4439d-c8a4-4b88-a5d0-8659b9ad8cdc","testStepId":"f37146e4-4f79-4477-b4c4-e3ebd036c2d7","timestamp":{"seconds":1757374023,"nanos":637000000}}},{"testStepFinished":{"testCaseStartedId":"f0d4439d-c8a4-4b88-a5d0-8659b9ad8cdc","testStepId":"f37146e4-4f79-4477-b4c4-e3ebd036c2d7","testStepResult":{"duration":{"seconds":0,"nanos":111670},"status":"PASSED"},"timestamp":{"seconds":1757374023,"nanos":637000000}}},{"testStepStarted":{"testCaseStartedId":"f0d4439d-c8a4-4b88-a5d0-8659b9ad8cdc","testStepId":"4b82568c-0aa6-44e5-a448-0886b325070a","timestamp":{"seconds":1757374023,"nanos":637000000}}},{"testStepFinished":{"testCaseStartedId":"f0d4439d-c8a4-4b88-a5d0-8659b9ad8cdc","testStepId":"4b82568c-0aa6-44e5-a448-0886b325070a","testStepResult":{"duration":{"seconds":0,"nanos":175004},"status":"PASSED"},"timestamp":{"seconds":1757374023,"nanos":638000000}}},{"testCaseFinished":{"testCaseStartedId":"f0d4439d-c8a4-4b88-a5d0-8659b9ad8cdc","timestamp":{"seconds":1757374023,"nanos":638000000},"willBeRetried":false}},{"testRunFinished":{"timestamp":{"seconds":1757374023,"nanos":638000000},"success":false}}];
|
|
44
|
-
</script>
|
|
45
|
-
<script>
|