Christian Walther
Christian Walther
In the `` URL of an Atom 1 feed, a `&` in the URL is mistakenly escaped twice, appearing as `&`. **Steps to reproduce:** ``` node -e 'const Feed =...
Using `ml5.LSTMGenerator` with the [shakespeare](https://github.com/ml5js/ml5-data-and-training/tree/98de6599693e870afb0d53198b2585e3da5aed0b/models/lstm/shakespeare) model generates text in which everywhere a lowercase letter `u` should appear, two space characters appear instead. Uppercase letters `U` are missing completely. This is...
In the HTML client, I am unable to type vital characters like `[` or `\`, because on my Swiss Mac keyboard layout, these are typed as combinations involving the option...
These commits fix several issues that became apparent in the revival of test.html, #81. 1. Fix a copy-paste error that causes missing output because an exception aborted rendering when a...
When the HTTP request to retrieve a referenced external schema failed, the promise rejection was not properly routed to the promise the rendering code was waiting on, so it continued...
As mentioned in #77, _tests/test.html_ appears to have been left behind and currently neither works nor tests the current code. There are automated tests now, which is certainly better, but...
Rendering a schema containing both “properties” and “additionalProperties” currently fails with `oops – TypeError: Attempted to assign to readonly property.` printed to the console. The source of the TypeError is...
As I suspected yesterday, it seems like the tests can actually be sped up massively by avoiding hardcoded wait times: Puppeteer allows us to wait for the specific element we...
When running `node_modules/.bin/jest` (which is my current guess at the right way to run tests, see #77), it tries to run both test suites in parallel, but randomly ends with...
I am confused as to how to run tests for Docson (and add tests for bugs I’m trying to fix, which is my actual motivation). Here is what I tried:...