Rob Yoder
Rob Yoder
We like Apple's syllable password generator, which produces 20-char passwords like `wyvve4-jixzyH-rivkej`. We should add a new recipe type that can produce passwords like that given a character length. Right...
I was looking at [the implementation of `whereEq`]( https://github.com/ramda/ramda/blob/master/source/whereEq.js) and was surprised at what I saw: ``` var whereEq = _curry2(function whereEq(spec, testObj) { return where(map(equals, spec), testObj); }); ```...
- [X] I have tried restarting my IDE and the issue persists. - [X] I have updated to the latest version of the packages. - [X] I have [read the...
I've created a [sample project](https://github.com/robyoder/elm-coverage-bug/tree/custom-tests-location) to show the problem. ## STR 1. Install elm, elm-coverage, and elm-test globally. 2. `elm-coverage client/src -t client/tests` ## Expected It would work. This is...
The docs indicate that a custom tests location is supported using the `--tests` arg, but as shown in #44, this doesn't actually work. Resolves #44 The fix was a single...
The `--elm-test` arg was only working with absolute paths, and a locally installed copy of `elm` wouldn't work at all. Using `path.resolve` seemed like a pretty straightforward fix for `elm-test`,...
I've created a [sample project](https://github.com/robyoder/elm-coverage-bug/tree/local-install) to show the problem. ## STR 1. `npm install` 2. `./node_modules/.bin/elm-coverage --elm-test ./node_modules/.bin/elm-test` ## Expected It would work. This is the documented way to use...