Skip to content

Commit

Permalink
fix test timeout for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
oznu committed Jul 30, 2021
1 parent a4986d9 commit ef02d12
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Expand Up @@ -10,16 +10,16 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node-version: [10.x, 11.x, 12.x, 13.x, 14.x, 15.x]
node-version: [10.x, 11.x, 12.x, 13.x, 14.x, 15.x, 16.x]
include:
- os: macos-latest
node-version: 14.x
- os: macos-latest
node-version: 15.x
node-version: 16.x
- os: windows-latest
node-version: 14.x
- os: windows-latest
node-version: 15.x
node-version: 16.x

runs-on: ${{ matrix.os }}

Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -10,6 +10,7 @@ All notable changes to this project will be documented in this file. This projec
* The Homebridge UI is now available in 26 different languages!
* **i18n:** Improvements to Thai language translations ([#1159](https://github.com/oznu/homebridge-config-ui-x/pull/1159))
* **i18n:** Improvements to Italian language translations ([#1166](https://github.com/oznu/homebridge-config-ui-x/pull/1166))
* Updated npm dependencies

## 4.41.1 (2021-04-27)

Expand Down
4 changes: 2 additions & 2 deletions package.json
@@ -1,7 +1,7 @@
{
"name": "homebridge-config-ui-x",
"displayName": "Homebridge UI",
"version": "4.41.2-test.2",
"version": "4.41.2",
"description": "A web based management, configuration and control platform for Homebridge",
"license": "MIT",
"author": "oznu <dev@oz.nu>",
Expand Down Expand Up @@ -152,4 +152,4 @@
"smart home",
"hb-service"
]
}
}
2 changes: 1 addition & 1 deletion test/e2e/status.e2e-spec.ts
Expand Up @@ -171,7 +171,7 @@ describe('StatusController (e2e)', () => {
expect(res.json()).toHaveProperty('serviceUser');
expect(res.json().homebridgeConfigJsonPath).toEqual(process.env.UIX_CONFIG_PATH);
expect(res.json().homebridgeStoragePath).toEqual(process.env.UIX_STORAGE_PATH);
});
}, 30000);

it('GET /status/nodejs', async () => {
const data = [
Expand Down

0 comments on commit ef02d12

Please sign in to comment.