File tree Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change
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
+ ```
You can’t perform that action at this time.
0 commit comments