Skip to content

Commit

Permalink
0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jenszech committed Jul 20, 2020
1 parent 19f088c commit 60f5721
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "km200-api",
"version": "0.2.1",
"version": "0.2.2",
"description": "A nodejs module for connecting a buderus heater via km200 interface",
"main": "./lib/km200.js",
"types": "./lib/km200.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions src/__tests__/km200.test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Km200 } from '../km200';

const key = '1234567890123456789012345678901234567890123456789012345678901234'
const key = '1234567890123456789012345678901234567890123456789012345678901234';
const km200 = new Km200('1.1.1.1', 80, key);
const get = jest.spyOn(km200, 'get');
beforeEach(() => {
Expand All @@ -11,4 +11,4 @@ test('Km200 Api Constructor', () => {
const km200 = new Km200('1.1.1.1', 80, key);
expect(km200.host).toBe('1.1.1.1');
expect(km200.port).toBe(80);
});
});

0 comments on commit 60f5721

Please sign in to comment.