8000 AdaptiveLightingController fix & improvement by Shaquu · Pull Request #1038 · homebridge/HAP-NodeJS · GitHub
[go: up one dir, main page]

Skip to content

AdaptiveLightingController fix & improvement #1038

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge branch 'beta-0.12.3' into feature/adaptive-lightning-manual-mod…
…e-improvement
  • Loading branch information
donavanbecker authored Jun 24, 2024
commit c953a0f27ed58f1c014850bc5773b51e3ccccd27
4 changes: 4 additions & 0 deletions src/lib/HAPServer.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -618,6 +618,10 @@ describe(IsKnownHAPStatusError, () => {
.filter(error => error !== 0); // filter out HAPStatus.SUCCESS

for (const error of errorValues) {
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore:next-line - This was @ts-expect-error: type mismatch, but it triggered build errors
// Summary of all failing tests src/lib/HAPServer.spec.ts:621:7 - error TS2578: Unused '@ts-expect-error' directive.

const result = IsKnownHAPStatusError(error);
if (!result) {
fail("IsKnownHAPStatusError does not return true for error code " + error);
Expand Down
Loading
You are viewing a condensed version of this merge commit. You can view the full changes here.
0