From ad124880cc7c3dae688dcc443bc9efeb11a1c90f Mon Sep 17 00:00:00 2001 From: ConnectDotz Date: Fri, 16 Feb 2024 18:58:19 -0500 Subject: [PATCH] Update issue templates --- .github/ISSUE_TEMPLATE/bug_report.md | 50 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 20 +++++++++ 2 files changed, 70 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 000000000..7faae4393 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,50 @@ +--- +name: Bug report +about: Create a report to help us improve +title: "[BUG]" +labels: '' +assignees: '' + +--- + +**Describe the bug** +A clear and concise description of what the bug is. + +**To Reproduce** +Steps to reproduce the behavior: +1. Go to '...' +2. Click on '....' +3. Scroll down to '....' +4. See error + +Note: A sample repo will help us identify the bug much faster. 🙏 + +**Expected behavior** +A clear and concise description of what you expected to happen. + +**Screenshots** +If applicable, add screenshots to help explain your problem. + +**Environment (please complete the following information):** +- vscode-jest version:[e.g., v6.2.1] +- `node -v`: [e.g., 20.9.0] +- `npm -v` or `yarn --version`: [e.g., npm 10.1.0] +- jest or react-scripts (if you haven’t ejected) version: [e.g., jest 29.7.0] +- your vscode-jest settings: + - jest.jestCommandLine? [e.g., npm test --] + - jest.runMode? [e.g., on-demand] + - jest.outputConfig? [e.g., none] + - anything else that you think might be relevant? [e.g., none] +- Operating system: [e.g., MacOS 14.2.1] + +**Prerequisite** +- are you able to run jest from the command line? [e.g., yes] +- where do you run jest CLI from? [e.g., root directory of the project] +- how do you run your tests from the command line? (e.g., "npm run test" or "node_modules/.bin/jest") + +**Additional context** +Add any other context about the problem here. + +--- + +The fastest (and the most fun) way to resolve the issue is to submit a pull request yourself. If you are interested, please check out the [contribution guide](https://github.com/jest-community/vscode-jest/CONTRIBUTING.md), we look forward to seeing your PR... diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 000000000..e0c0168b2 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,20 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: "[FEATURE]" +labels: '' +assignees: '' + +--- + +**Is your feature request related to a problem? Please describe.** +A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + +**Describe the solution you'd like** +A clear and concise description of what you want to happen. + +**Describe alternatives you've considered** +A clear and concise description of any alternative solutions or features you've considered. + +**Additional context** +Add any other context or screenshots about the feature request here.