Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added issue template for test issues #2917

Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .github/ISSUE_TEMPLATE/test.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
name: Test Implementation Request
about: Write tests for an existing file in the project
title: "Test: [File Name]"
labels: testing
assignees: ""
---
# Goal
The goal of this issue is to improve the code coverage for the file: `Example: src/resolvers/Chat/messages.ts`
# Tasks
1. Review the file to identify sections of code that are being ignored by Codecov or are not covered by tests.
2. Create or update test cases to ensure 100% coverage for the file.
3. Remove any `/* istanbul ignore */` or equivalent statements that bypass code coverage reporting, unless absolutely necessary.
# Resources
- Refer to the foundational documentation on writing test cases in the repository.
- Check the [Codecov report](https://app.codecov.io/gh/PalisadoesFoundation/talawa-api/) for details on the uncovered lines.
bandhan-majumder marked this conversation as resolved.
Show resolved Hide resolved
# Acceptance Criteria
- All sections of the file are covered by tests.
- Code coverage for the file reaches 100%.
- PR created with necessary updates, passing all checks and reviews.
**Potential internship candidates**
Please read this if you are planning to apply for a Palisadoes Foundation internship
- https://github.com/PalisadoesFoundation/talawa/issues/359
bandhan-majumder marked this conversation as resolved.
Show resolved Hide resolved
Loading