Joe Pea
Joe Pea
Npm pack will show the correct output if I use no-workspaces: ```js npm pack --dry-run --no-workspaces ```
@fsiliadin This launches your tests in an Electron instance. It means, your tests will run in an environment just like an Electron app. If you don't see `require`, maybe you...
Also an alternative to this one is https://github.com/twolfson/karma-electron, which is more recently updated, and @twolfson has been very responsive there.
DI can be achieved with current decorators using a different format: ```js @injectable class Foo { @inject([A, B]) someMethod(a, b) {} } ```
In case it helps anyone, I did something like this: ```sh # switch to python2 sudo ln -sf python2 /usr/bin/python # ... run nw-gyp commands ... # restore `python` back...
This is related to the `ecmascript` package. When I comment out the package in `.meteor/packages`, this error goes away, and the server runs fine (it has no import statements in...
Sidenote, this problem is caused when projects in the reproduction's super module repo (similar to a monorepo, but I'm using git submodules to pull in all the packages) are symlinked...
Here's a cleaner example. I made the TickCounter class in order to _try_ to determine if two pieces of code execute in the same tick or not. Here's a basic...
@benjamn Thanks for that link! I just realized that my use of `sleep(0)` which uses `setTimeout(..., 0)` doesn't work properly in this test because `setTimeout` usually fires after 4ms at...
@benjamn The following example breaks, which is why I originally opened this post under the possibly wrong assumption that `await null` isn't deferring, but now I don't think that's the...