Maximilian Antoni
Maximilian Antoni
I’m using the “old” way of registering onload / onunload event handlers to initialize a component store (through `emit(‘store:event’)`). This is not directly supported by Choo anymore, but is certainly...
This should fail, but is passes: ```js assert.match({}, { unknown: undefined }); ```
The `resolves` and `rejects` assertions diverge from the naming convention use by Sinon assertions. In Sinon, `resolves` and `rejects` are used to program a stub or a fake, e.g. `sinon.fake.resolves(42)`....
Samsam 3 introduces `createMatcher`, which was moved from `sinon.match`. Also, `samsam.match.*` not exposes as `sinon.match.*` APIs. These new APIs are not documented yet.
In referee, we have `assert.json(actual, expected)` which attempts to parse `actual` with `JSON.parse` and compares the result to `expected`. It would be nice to have a matcher that does the...
It would be useful to remove a proxied version. For example, if a new version contains a bug that a previous version didn't have. Currently, I have to go into...
Assuming v1.0.0 is the latest version of a module in the nopar cache, if npm asks for v1.1.0 it should automatically check for updates on the module before replying. This...
- Upgrade `package-lock.json` to v2 - Update chai, mocha, tar, run `npm audit fix` to get to zero vulnerabilities - Moved chai and mocha to `devDependencies` - Also increased the...
If a `shrinkwrap.json` file is found, the following steps should be taken: * Read the `npm-shrinkwrap.json` file * Run `npm shrinkwrap` * Read the `npm-shrinkwrap.json` file again * Diff the...
GitHub automatically links issues if it finds something like `#11` in markdown. These links should be expanded so that they also work outside of the GitHub context.