Skip to content

Commit

Permalink
chore: update issues template
Browse files Browse the repository at this point in the history
  • Loading branch information
aslushnikov authored Jan 31, 2020
1 parent b289bb7 commit 902580b
Show file tree
Hide file tree
Showing 7 changed files with 156 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/ISSUE_TEMPLATE/bug.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
name: Bug
about: Something doesn't work like it should? Tell us!
title: "[BUG]"
labels: ''
assignees: ''

---

**Context:**
- PlayWright Version: [what PlayWright version do you use?]
- Operating System: [e.g. Windows, Linux or Mac]
- Extra: [any specific details about your environment]

**Code Snippet**

Help us help you! Put down a short code snippet that illustrates your bug and
that we can run and debug locally. For example:

```javascript
const {chromium, webkit, firefox} = require('playwright');

(async () => {
const browser = await chromium.launch();
// ...
})();
```

**Describe the bug**

Add any other details about the problem here.
31 changes: 31 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
name: Bug report
about: Create a report to help us improve
title: "[BUG]"
labels: ''
assignees: ''

---

**Context:**
- PlayWright Version: (please tell us what PlayWright version do you use)
- Operating System: [e.g. Windows, Linux or Mac]
- Extra: [any other specific details about your environment]

**Code Snippet**

Help us help you! Please put down a short code snippet that illustrates your bug and
that we can run and debug locally. For example:

```javascript
const {chromium, webkit, firefox} = require('playwright');

(async () => {
const browser = await chromium.launch();
// ...
})();
```

**Describe the bug**

Add any other details about the problem here.
11 changes: 11 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
name: Feature request
about: Request new features to be added
title: "[Feature]"
labels: ''
assignees: ''

---

Let us know what functionality you'd like to see in PlayWright and what is your usecase.
Do you think others might need this as well?
10 changes: 10 additions & 0 deletions .github/ISSUE_TEMPLATE/question.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
name: Question
about: Feel free to ask us your questions!
title: "[Question]"
labels: ''
assignees: ''

---


32 changes: 32 additions & 0 deletions .github/ISSUE_TEMPLATE/regression.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
---
name: Regression
about: Functionality that used to work and does not any more
title: "[REGRESSION]: "
labels: ''
assignees: ''

---

**Context:**
- GOOD PlayWright Version: [what PlayWright version worked nicely?]
- BAD PlayWright Version: [what PlayWright version doesn't work any more?]
- Operating System: [e.g. Windows, Linux or Mac]
- Extra: [any specific details about your environment]

**Code Snippet**

Help us help you! Put down a short code snippet that illustrates your bug and
that we can run and debug locally. For example:

```javascript
const {chromium, webkit, firefox} = require('playwright');

(async () => {
const browser = await chromium.launch();
// ...
})();
```

**Describe the bug**

Add any other details about the problem here.
31 changes: 31 additions & 0 deletions .github/ISSUE_TEMPLATE/report-a-bug.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
name: Report a bug
about: Something doesn't work like it should? Tell us!
title: "[BUG]"
labels: ''
assignees: ''

---

**Context:**
- PlayWright Version: [what PlayWright version do you use?]
- Operating System: [e.g. Windows, Linux or Mac]
- Extra: [any specific details about your environment]

**Code Snippet**

Help us help you! Please put down a short code snippet that illustrates your bug and
that we can run and debug locally. For example:

```javascript
const {chromium, webkit, firefox} = require('playwright');

(async () => {
const browser = await chromium.launch();
// ...
})();
```

**Describe the bug**

Add any other details about the problem here.
10 changes: 10 additions & 0 deletions .github/ISSUE_TEMPLATE/report-a-regression.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
name: Report a regression
about: Functionality that used to work and does not any more
title: "[REGRESSION]: "
labels: ''
assignees: ''

---


0 comments on commit 902580b

Please sign in to comment.