diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 000000000..d119abadc --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,35 @@ +--- +name: 🐛 Bug report +about: Create a report to help us improve +title: "[BUG] XYZ" +labels: bug +--- + +## 🐛 Bug Report + + + +Lib version: X.Y.Z + +## Steps To Reproduce + + + +```javascript +const wb = new ExcelJS.Workbook(); +const ws = wb.addWorksheet('XYZ'); + +ws.getCell('A1').value = 7; +expect(ws.getCell('A1').value).to.equal(7); +``` + +## The expected behaviour: + + + + +## Possible solution (optional, but very helpful): + +```javascript + +```