DEV Community

Martin O'Grady
Martin O'Grady

Posted on • Updated on

A JavaScript Unit Test Generator for Your Editors

Hey!!

I just released this plugin for atom & vscode.

The idea behind the plugin is to generate a base template test file for your existing JS code, by creating a unit test for every named/default export declared in the code your are generating a test for.

I hope it comes in handy!

Oldest comments (1)

Collapse
 
sandeepbehera87 profile image
Sandeep Behera

function myfun() {

if (true) {
return;
}

}