test(Philips Hue Node): Add test coverage (no-changelog) (#12223)

This commit is contained in:
Jon
2024-12-16 11:00:20 +00:00
committed by GitHub
parent 1fc9c59a57
commit de75c7b529
4 changed files with 392 additions and 0 deletions

View File

@@ -128,4 +128,20 @@ BQIDAQAB
notionApi: {
apiKey: 'key123',
},
philipsHueOAuth2Api: {
grantType: 'authorizationCode',
appId: 'APPID',
authUrl: 'https://api.meethue.com/v2/oauth2/authorize',
accessTokenUrl: 'https://api.meethue.com/v2/oauth2/token',
authQueryParameters: 'appid=APPID',
scope: '',
authentication: 'header',
oauthTokenData: {
access_token: 'ACCESSTOKEN',
refresh_token: 'REFRESHTOKEN',
scope: '',
token_type: 'bearer',
expires_in: 86400,
},
},
} as const;