-
Notifications
You must be signed in to change notification settings - Fork 42
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
Tests failing #101
Comments
Haven't taken a close look but local tests are failing for me too, though CI passed for the latest commit which is strange. @aidinabedi are you seeing the failures as well? Does this seem related to your recent changes? |
Haven't seen any of these behaviors. In fact, we use both |
Running |
Super weird. I just made two fresh clones (one of this repo and other of my fork), both matches the latest lock and both passes all tests. What test fails for you, @englercj? My platform: |
Installing using Installing using Platform: Arch Linux, Node |
I can't seem to reproduce the issue you describe... PS E:\Temp\tsd-jsdoc> git clone https://github.com/englercj/tsd-jsdoc.git .
PS E:\Temp\tsd-jsdoc> del package-lock.json PS E:\Temp\tsd-jsdoc> npm i
PS E:\Temp\tsd-jsdoc> npm test
|
I'm following the exact same steps. I tried it on Windows as well - same problem. However I also tried downgrading node to |
Just ran everything at work (node Likely the behavior of some node API that has changed between v |
I am using node v12, so seems like it is related to the node version. I wonder if this issue is on the jsdoc side or ours. |
Was thinking the same thing. Seems most plausible. |
Directly printing the data that jsdoc parsed using (in
already contains the problematic typename
so I'll wager the issue is on the jsdoc side. EDIT: Running a similar source through |
It seems to have been fixed in |
Absolutely. |
This library is generating types for Ubers
h3-js
bindings which I depend on. But the generated types for generics are looking strange.T[]
becomes[ 'Array' ]<T>
Array<T>
becomes[ 'Array' ]<T>
Promise<T>
becomes[ 'Promise' ]<T>
Tests in this repo are failing on a fresh clone as well.
I've tried figuring out if it was a recent commit or a backwards-incompatible dependency update but I'm unable to figure out the cause. If I could be pointed in the right direction I'll try and submit a PR.
The text was updated successfully, but these errors were encountered: