You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: CONTRIBUTING.md
+25-1
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,31 @@ When creating a PR, the tests will automatically run on the CI server on all cur
44
44
We have migrated most of the codebase to TypeScript, thus new files have to be written in TypeScript too.
45
45
Please ensure that your code changes are in line with our style guide via `eslint` (see [Linting](#linting)).
46
46
If you are adding a new feature, or you have fixed a bug which is testable, please make sure to add a new test. Also ensure, that all existing tests are passing, before proposing a code change (see [Testing](#testing)).
47
-
Testing your code change in a running environment is currently a bit tricky. Ensure you have installed the latest nightly release of the js-controller by executing
47
+
48
+
#### Testing in development
49
+
To test code changes, using [`dev-server`](https://github.com/ioBroker/dev-server/) is highly recommended:
50
+
1. Install or update `dev-server` to the latest version via `npm i -g @iobroker/dev-server@latest` (if not done already)
51
+
2. Setup `dev-server` in the `js-controller` repository using:
3. Open a separate terminal where you rebuild JS-Controller on code changes:
56
+
```bash
57
+
npm run watch:ts
58
+
```
59
+
4. Start JS-Controller using the dev-server by executing the following in the first terminal:
60
+
```bash
61
+
dev-server debug -x
62
+
```
63
+
5. Attach your debugger:
64
+
- If using VSCode:
65
+
1. Make sure that auto-attaching is disabled (<kbd>F1</kbd>, enter "toggle auto attach", select "disabled").
66
+
2. Go to the "debug" tab and make sure "Debug with dev-server" is selected.
67
+
3. Start a new debug session using <kbd>F5</kbd>. You should be able to set breakpoints in the `.ts` files and step through them.
68
+
- If using WebStorm, figure out how to translate the launch config in `.vscode/launch.json` to WebStorm (TODO!).
69
+
70
+
#### Testing in production
71
+
Testing your code change in a productive environment is currently a bit tricky. Ensure you have installed the latest nightly release of the js-controller by executing
0 commit comments