premunition
v1.0.1
Published
Simple tests written in comments.
Downloads
6
Readme
premunition
A simple way to write tests.
Installation
brew install ag
npm install -g premunition
Usage
cd dope_project
prem
Examples
Add comments (with an extra /
) anywhere in your code with the form:
code -> expected
/// 1 + 1 -> 2
/// add(1, 2) -> 3
const add = (x, y) =>
x + y