Closed giltayar closed 4 years ago
@searls - unfortunately, for quibble to pass the tests on v8, we need this fix in teenytest.
LOL, sure. Ok, JavaScript
Thanks! Don't forget to publish teenytest and then quibble so that I can work on testdouble.js. Because of Typescript, I can't npm link to quibble (typescript keeps transpiling quibble and turning my import in quibble into a require, because quibble is symlinked and thus not in node_modules). Aaaaaarrgrh!
Landed in 6.0.1 -- waiting for you to update the quibble build and then I'll bump it
Ok, quibble should be ready for you to roll as of 0.6.0
Due to the addition of code with
import(...)
, Node v8 stopped being supported as Node v8 considersimport
to be a "syntax" error, so the runtime sniffing didn't work.require
a file withimport
only from Node v10 and above.