diff --git a/.github/ISSUE_TEMPLATE/test-e2e-playwright.md b/.github/ISSUE_TEMPLATE/test-e2e-playwright.md new file mode 100644 index 00000000..99b403b3 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/test-e2e-playwright.md @@ -0,0 +1,43 @@ +--- +name: Test request - Playwright +about: Template for new E2E test. +title: 'test: ✅ ' +labels: Test - Playwright +assignees: krsiakdaniel +--- + +## Description + +Describe the purpose of the new test and what it aims to verify. + +## Benefits + +Explain the benefits this feature will have on the project. + +## Implementation + +Include steps and what is to be tested. + +## Code Example + +Provide a code example if applicable. + +```ts +code_example +``` + +## Tasks + +- [ ] ... +- [ ] ... +- [ ] ... + +## Acceptance Criteria + +- [ ] Test is implemented. +- [ ] New test passes successfully. +- [ ] Code is reviewed and approved through PR. + +## Screenshots + +Attach relevant screenshots if applicable. diff --git a/.github/ISSUE_TEMPLATE/test-unit-jest.md b/.github/ISSUE_TEMPLATE/test-unit-jest.md new file mode 100644 index 00000000..03d6d3be --- /dev/null +++ b/.github/ISSUE_TEMPLATE/test-unit-jest.md @@ -0,0 +1,43 @@ +--- +name: Test request - JEST +about: Template for new UNIT test. +title: 'test: ✅ ' +labels: Test - JEST +assignees: krsiakdaniel +--- + +## Description + +Describe the purpose of the new test and what it aims to verify. + +## Benefits + +Explain the benefits this feature will have on the project. + +## Implementation + +Include steps and what is to be tested. + +## Code Example + +Provide a code example if applicable. + +```ts +code_example +``` + +## Tasks + +- [ ] ... +- [ ] ... +- [ ] ... + +## Acceptance Criteria + +- [ ] Test is implemented. +- [ ] New test passes successfully. +- [ ] Code is reviewed and approved through PR. + +## Screenshots + +Attach relevant screenshots if applicable.