markusvoelk-zr

Results 1 issues of markusvoelk-zr

I think the intention of the following code snipped is to ignore resolve calls until the first module gets "quibbled": (https://github.com/testdouble/quibble/blob/fac450e65d68a00411a7ed51fc29f19af581f95b/lib/quibble.mjs#L42C1-L44C4) ```typescript if (!quibbleLoaderState.quibbledModules) { return resolve() } ``` Because...