test-anything icon indicating copy to clipboard operation
test-anything copied to clipboard

:mortar_board: Learn to test your code

Results 6 test-anything issues
Sort by recently updated
recently updated
newest added

Delete this issue, the issue comes to npm, Sorry

node: v10.6.0 npm: 6.1.0 installed with nvm: 0.33.11 Output of npm v test-anything: ``` npm v test-anything [email protected] | MIT | deps: 6 | versions: 13 Learn to test anything...

The following solves the exercise 3: ```js var t = require('tap') var fancify = require(process.argv[2]) t.is(fancify('Hello'), `~*~Hello~*~`) t.is(fancify('Hello', true), `~*~HELLO~*~`) t.is(fancify('Hello', false, '!'), `~!~Hello~!~`) ``` That feels simpler (e.g. no...

![image](https://cloud.githubusercontent.com/assets/14023072/15595847/535f2096-2377-11e6-91d2-2bdee9901e3d.png)

Hi! @finnp This PR is for i18n support:smile: with [workshopper-adventure](https://github.com/workshopper/workshopper-adventure). also I added `verify.js` instead of `adventure-verify`, because it doesn't tap logs so I added this line. https://github.com/tgfjt/test-anything/blob/workshopper-adventure/verify.js#L58

I put in the code as the per the challenge "log it out": ``` var emotify = require(process.argv[2]); console.log(emotify(process.argv[3]); ``` same code as the [solution](https://github.com/finnp/test-anything/blob/master/exercises/log-it-out/solution.md) but I get: ``` ➜...