|
| 1 | +name: 🐛 Bug report |
| 2 | +description: Report something that is broken or behaving unexpectedly in the CLI. |
| 3 | +title: 'bug: ' |
| 4 | +labels: ['bug', 'needs-triage'] |
| 5 | +body: |
| 6 | + - type: markdown |
| 7 | + attributes: |
| 8 | + value: | |
| 9 | + Thanks for taking the time to file a bug! Please search |
| 10 | + [existing issues](https://github.com/TestSprite/testsprite-cli/issues) |
| 11 | + first to avoid duplicates. |
| 12 | +
|
| 13 | + For **questions or usage help**, please use |
| 14 | + [GitHub Discussions](https://github.com/TestSprite/testsprite-cli/discussions) |
| 15 | + or [Discord](https://discord.gg/W4JDrZfdB) instead — issues are for bugs |
| 16 | + and feature requests. |
| 17 | + - type: textarea |
| 18 | + id: what-happened |
| 19 | + attributes: |
| 20 | + label: What happened? |
| 21 | + description: A clear and concise description of the bug, including what you expected to happen instead. |
| 22 | + placeholder: When I run `testsprite test run ...`, I expected X but got Y. |
| 23 | + validations: |
| 24 | + required: true |
| 25 | + - type: textarea |
| 26 | + id: repro |
| 27 | + attributes: |
| 28 | + label: Steps to reproduce |
| 29 | + description: The exact commands you ran, in order. Redact any API keys or private URLs. |
| 30 | + placeholder: | |
| 31 | + 1. testsprite setup ... |
| 32 | + 2. testsprite test run <id> --wait |
| 33 | + 3. ... |
| 34 | + render: shell |
| 35 | + validations: |
| 36 | + required: true |
| 37 | + - type: textarea |
| 38 | + id: logs |
| 39 | + attributes: |
| 40 | + label: Relevant output |
| 41 | + description: | |
| 42 | + Paste the command output. Re-run with `--verbose` or `--debug` for more |
| 43 | + detail if you can. **Remove any API keys, credentials, or private URLs.** |
| 44 | + render: shell |
| 45 | + validations: |
| 46 | + required: false |
| 47 | + - type: input |
| 48 | + id: cli-version |
| 49 | + attributes: |
| 50 | + label: CLI version |
| 51 | + description: Output of `testsprite --version`. |
| 52 | + placeholder: e.g. 0.1.2 |
| 53 | + validations: |
| 54 | + required: true |
| 55 | + - type: input |
| 56 | + id: node-version |
| 57 | + attributes: |
| 58 | + label: Node.js version |
| 59 | + description: Output of `node --version` (the CLI requires Node >= 20). |
| 60 | + placeholder: e.g. v22.11.0 |
| 61 | + validations: |
| 62 | + required: true |
| 63 | + - type: input |
| 64 | + id: os |
| 65 | + attributes: |
| 66 | + label: Operating system |
| 67 | + placeholder: e.g. macOS 15.5 / Ubuntu 24.04 / Windows 11 |
| 68 | + validations: |
| 69 | + required: true |
| 70 | + - type: checkboxes |
| 71 | + id: checks |
| 72 | + attributes: |
| 73 | + label: Confirmations |
| 74 | + options: |
| 75 | + - label: I have searched existing issues and this is not a duplicate. |
| 76 | + required: true |
| 77 | + - label: I am on the latest published version, or have noted why I cannot upgrade. |
| 78 | + required: true |
| 79 | + - label: I have removed any secrets (API keys, credentials, private URLs) from this report. |
| 80 | + required: true |
0 commit comments