Skip to content

Commit b5fe6a1

Browse files
authored
Merge pull request #1112 from exceljs/f/bug-template
Update issue templates
2 parents a2eaa9e + cf56631 commit b5fe6a1

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
---
2+
name: 🐛 Bug report
3+
about: Create a report to help us improve
4+
title: "[BUG] XYZ"
5+
labels: bug
6+
---
7+
8+
## 🐛 Bug Report
9+
10+
<!-- A clear and concise description of what the bug is. -->
11+
12+
Lib version: X.Y.Z
13+
14+
## Steps To Reproduce
15+
16+
<!-- The exact steps required to reproduce the issue, ideally with a code example -->
17+
18+
```javascript
19+
const wb = new ExcelJS.Workbook();
20+
const ws = wb.addWorksheet('XYZ');
21+
22+
ws.getCell('A1').value = 7;
23+
expect(ws.getCell('A1').value).to.equal(7);
24+
```
25+
26+
## The expected behaviour:
27+
28+
<!-- A clear and concise description of what you expected to happen. -->
29+
30+
31+
## Possible solution (optional, but very helpful):
32+
33+
```javascript
34+
35+
```

0 commit comments

Comments
 (0)