Skip to content

Commit

Permalink
chore: Enable tests (#923)
Browse files Browse the repository at this point in the history
* u

* u

* u

* enable
  • Loading branch information
Koenkk authored Feb 20, 2024
1 parent 165d877 commit 4197dc9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ jobs:
run: npm ci
- name: Build
run: npm run build
# - name: Test
# run: npm run test-with-coverage
- name: Test
run: npm run test-with-coverage -- --testTimeout=10000
- name: Lint
run: npm run eslint
- name: Publish new release
Expand Down
2 changes: 1 addition & 1 deletion test/controller.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -539,7 +539,7 @@ describe('Controller', () => {
restoreMocksendZclFrameToEndpoint();
});

it.skip('Call controller constructor options mixed with default options', async () => {
it('Call controller constructor options mixed with default options', async () => {
await controller.start();
expect(ZStackAdapter).toBeCalledWith({"networkKeyDistribute":false,"networkKey":[1,3,5,7,9,11,13,15,0,2,4,6,8,10,12,13],"panID":6755,"extendedPanID":[221,221,221,221,221,221,221,221],"channelList":[15]}, {"baudRate": 115200, "path": "/dummy/conbee", "rtscts": true, "adapter": null}, backupPath, {"disableLED": false}, undefined);
});
Expand Down

0 comments on commit 4197dc9

Please sign in to comment.