Jason Cheatham

Results 243 comments of Jason Cheatham

So, the example in the guide (at https://theintern.github.io/intern/#page-objects) uses an architecture that many have found a bit tricky to work with, but it is technically workable. I'm still not sure...

Presumably the test suites would still be in the repo?

It is. You can currently do something like: ```html Unit Tests var registerSuite = intern.getPlugin('interface.object').registerSuite; registerSuite('suiteA', { test1: function () { ... }, test2: function () { ... } });...

Updating `foldl` to use `lang.isArrayLike` rather than `lang.isArray` looks like a possible fix.

Sure, I can do a PR along the lines of some of the other tutorials.

Hmmm...a couple questions: 1. What are you trying to achieve? Is the goal to detect brightness changes in the light? 2. Does the light have a brightness/level control in Home...

Could you send me the [device capabilities](https://github.com/jason0x43/hacs-hubitat?tab=readme-ov-file#checking-device-capabilities) for the switch? From the screenshot I see that it has a `level` attribute, so I'd expect it to have Hubitat's SwitchLevel capability,...

> there is a level entity there Interesting. What does that look like in HA? I've only ever seen level controls that are part of the light or switch.

Are you overriding the device type, by chance? I would have expected that device to be detected as a light due to the presence of the SwitchLevel attribute, in which...