issue-pane 2.6.1-ea50c8eb → 2.6.1-ecdd3355
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +13 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,3 +5,16 @@ At the moment to start a tracker you have to configure the config file in turtle
|
|
|
5
5
|
|
|
6
6
|
Would be good create a mintNew method to allow new ones to be created in the UI.
|
|
7
7
|
|
|
8
|
+
# Testing Guide
|
|
9
|
+
|
|
10
|
+
## Running Tests
|
|
11
|
+
|
|
12
|
+
Only ESlint is active on this repo.
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
# Run linting only
|
|
16
|
+
npm run lint
|
|
17
|
+
|
|
18
|
+
# Auto-fix linting issues
|
|
19
|
+
npm run lint-fix
|
|
20
|
+
```
|