diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 46192dc84a..7b37bcb65c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 diff --git a/test/controller.test.ts b/test/controller.test.ts index 0f785ef6d7..e0ace036aa 100755 --- a/test/controller.test.ts +++ b/test/controller.test.ts @@ -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); });