Tim Wisniewski
Tim Wisniewski
It looks like a phantomjs configuration issue. The tests themselves appear to pass. Same thing happened locally.
Hm, @insin good catch -- a value of `""` (empty string) evaluates to `NaN`, which would be invalid JSON. I would suggest anything that's not a valid number be `null`....
Hey @insin just checking in on this. What do you think about the above?
good idea @spaceballone, thanks!
Just to reiterate though, it works fine on your demo site
Hi @Anthropic thanks for the response. I'm working on an app that lets users design a form and a workflow associated with its submission. I was hoping to standardize on...
Hey guys, did anything come of this? I was faced with this issue yesterday and ended up [returning a promise](https://github.com/timwis/geoservices-for-humans/blob/6adc84fefff1838c9ee52a9aac89ade46bcc7f84/src/scripts/models/field-model.js#L36) from the derived `fn`, leaving [two options](https://github.com/timwis/geoservices-for-humans/blob/6adc84fefff1838c9ee52a9aac89ade46bcc7f84/src/scripts/views/field-item-view.js#L34) for interacting with...
Why are you using tape-run? That's meant for browser testing, but it looks like what you're testing could be done in pure node, no?
No, I'm not, just a basic create choo app
Yeah I wasn't calling that function; I just did create-choo-app. I think it's being thrown by one of the deps? Regarding SSR being enabled by default, is that relevant to...