Skip to content

Commit

Permalink
Jest open handles (#90)
Browse files Browse the repository at this point in the history
* add some notes about the prerelease

* detect open handles

* force exit as workaround
  • Loading branch information
philipparndt authored Jul 31, 2022
1 parent 1bba77c commit ef4d330
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
MIELE_CLIENT_SECRET: ${{ secrets.MIELE_CLIENT_SECRET }}
MIELE_PASSWORD: ${{ secrets.MIELE_PASSWORD }}
MIELE_USERNAME: ${{ secrets.MIELE_USERNAME }}

- name: Build
working-directory: app
run: |
Expand Down
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ Convert the miele@home data to MQTT messages

This application will post two MQTT messages for each connected device: one short message and a full message.

# Releases

## Production (2.x)
The current production version is 2.x and is implemented in Java.
See https://github.com/mqtt-home/miele-to-mqtt-gw/tree/2.x-java

## Prerelease (3.x)
The prerelease is version 3.x and implemented in TypeScript.

## Example short message

The short message is already parsed/interpreted and contains only the most relevant information.
Expand Down
2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Miele To MQTT Gateway",
"main": "index.js",
"scripts": {
"test": "jest --coverage",
"test": "jest --coverage --forceExit",
"coverage": "jest --coverage",
"prestart": "tsc -p tsconfig.json",
"start": "node --trace-warnings dist/lib/index.js",
Expand Down

0 comments on commit ef4d330

Please sign in to comment.