Skip to content
This repository has been archived by the owner on Mar 24, 2024. It is now read-only.

Commit

Permalink
run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
bostaunieux committed Feb 3, 2024
1 parent c5a165c commit 4d5a7b9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/node-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
node-version: [18.x, 20.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
Expand Down
6 changes: 3 additions & 3 deletions src/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ export default class Api {
query: QUERY_GET_BLINDS_STATE,
variables: { blinds },
},
requestConfig
requestConfig,
);

logger.info("Received GetBlindsState response: %o", response.data);
Expand All @@ -165,7 +165,7 @@ export default class Api {
query: QUERY_GET_USER_INFO,
variables: null,
},
requestConfig
requestConfig,
);

logger.debug("Received GetUserInfo response: %o", response.data.data);
Expand Down Expand Up @@ -193,7 +193,7 @@ export default class Api {
query: MUTATION_UPDATE_BLINDS_POSITION,
variables: { position, blinds },
},
requestConfig
requestConfig,
);

logger.debug("Received UpdateBlindsPosition response: %o", response.data.data);
Expand Down
2 changes: 1 addition & 1 deletion test/controller.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ describe("Controller", () => {
expect(api.updateTiltPosition).toHaveBeenCalledTimes(1);
expect(api.updateTiltPosition).toHaveBeenCalledWith(
[MOCK_BLIND_1.encodedMacAddress, MOCK_BLIND_2.encodedMacAddress],
100
100,
);
});

Expand Down

0 comments on commit 4d5a7b9

Please sign in to comment.