From 72227f4e1b8fd135ad0699262db80c81c422e767 Mon Sep 17 00:00:00 2001 From: Krsiak Daniel Date: Sat, 14 Dec 2024 23:56:59 +0100 Subject: [PATCH] =?UTF-8?q?docs(test):=20=F0=9F=93=9D=20templates-e2e-play?= =?UTF-8?q?wright-unit-jest?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/ISSUE_TEMPLATE/test-e2e-playwright.md | 43 +++++++++++++++++++ .github/ISSUE_TEMPLATE/test-unit-jest.md | 43 +++++++++++++++++++ 2 files changed, 86 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/test-e2e-playwright.md create mode 100644 .github/ISSUE_TEMPLATE/test-unit-jest.md 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.