Michael Schoonmaker

Results 6 issues of Michael Schoonmaker

While I love the idea of a pure-Node alternative to ZeroMQ and the like, there are a number of areas that need some improvement before it can replace it for...

_Upon re-reading the documentation, I figured out what I was doing wrong._ That said, I found it surprising that `td.matchers.contains(['some', 'array', 'elements'])` did _not_ work, even though both `td.matchers.contains('some', 'array',...

Surprisingly, `td.object({ something() {} })` and `td.object(['something'])` produce different results; the latter is an Array. ``` > td.object({ something() {} }).splice undefined > td.object(['something']).splice [Function: splice] ```

bug

I'm currently working with testdouble.js with a callback-based API, and if I _miss_ a stubbing, I only know that when the test times out (or when I see it hang)....

When using the `play` command, you can now use `--replay PATH` to specify where to write a playback-optimized Newline-Delimited JSON file. These files can then be read by [the board...

This reads the [new playback-optimized replay files](https://github.com/BattlesnakeOfficial/rules/pull/123) from `rules`, given the `engine` setting of `"local"`. Files are, by default, read from `process.cwd()`, but can be read from another location via...