Skip to content

Commit

Permalink
Merge pull request #3 from SteMaker/add-integration-test
Browse files Browse the repository at this point in the history
Add integration test
  • Loading branch information
SteMaker authored Jan 8, 2022
2 parents ae1580b + 322d91f commit 22fa572
Show file tree
Hide file tree
Showing 9 changed files with 145 additions and 95 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/test-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,15 @@ jobs:
- name: Install Dependencies
run: npm ci

- name: Run integration tests (unix only)
if: startsWith(runner.OS, 'windows') == false
run: DEBUG=testing:* npm run test:integration

- name: Run integration tests (windows only)
if: startsWith(runner.OS, 'windows')
run: set DEBUG=testing:* & npm run test:integration


# TODO: To enable automatic npm releases, create a token on npmjs.org
# Enter this token as a GitHub secret (with name NPM_TOKEN) in the repository options
# Then uncomment the following block:
Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ temperature sensors, single heating circuit). Others could be added on request.

## Changelog
<ul>
<li>v0.3.1
<ul>
<li>Added integration test.</li>
</ul>
</li>
<li>v0.3.0
<ul>
<li>Added tracking energy of the tank. Temperature sensor data is used to evaluate the current thermal energy of the tank.
Expand Down
4 changes: 3 additions & 1 deletion build/src/main.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion build/src/main.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions io-package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"common": {
"name": "hdg-bavaria",
"version": "0.3.0",
"version": "0.3.1",
"news": {
"0.3.0": {
"en": "Statistics",
Expand Down Expand Up @@ -75,4 +75,4 @@
},
"objects": [],
"instanceObjects": []
}
}
Loading

0 comments on commit 22fa572

Please sign in to comment.