Skip to content

Commit

Permalink
increase timeout for log test
Browse files Browse the repository at this point in the history
  • Loading branch information
oznu committed Oct 1, 2020
1 parent 08752e5 commit 9898104
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ All notable changes to this project will be documented in this file. This projec
### Notable Changes

* **Plugins:** The *Settings* action button will now appear on all plugins, even if they don't implement the [Plugin Settings GUI](https://developers.homebridge.io/#/config-schema)
* For most plugins that don't implement the [Plugin Settings GUI](https://developers.homebridge.io/#/config-schema), the user will now be shown a config editor where they can manage the config just that plugin
* **Plugins:** Dramatically increased the number of plugins which the UI can offer to automatically remove the config for when uninstalling the plugin
* For most plugins that don't implement the [Plugin Settings GUI](https://developers.homebridge.io/#/config-schema), the user will now be shown a config editor where they can manage the config just for that plugin
* **Plugins:** Dramatically increased the number of plugins which the Homebridge UI can offer to automatically remove the config for when uninstalling the plugin

### Other Changes

Expand Down
2 changes: 1 addition & 1 deletion test/e2e/log.gateway.e2e-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ describe('LogGateway (e2e)', () => {

logGateway.connect(client, size);

await new Promise((resolve) => setTimeout(resolve, 250));
await new Promise((resolve) => setTimeout(resolve, 1000));

expect(client.emit).toBeCalledWith('stdout', expect.stringContaining('line 1'));
expect(client.emit).toBeCalledWith('stdout', expect.stringContaining('line 2'));
Expand Down

0 comments on commit 9898104

Please sign in to comment.