Skip to content

Instantly share code, notes, and snippets.

@janneh
Created July 1, 2016 07:52
Show Gist options
  • Save janneh/ea0079e9a3a681fd138b4b3c9fb25583 to your computer and use it in GitHub Desktop.
Save janneh/ea0079e9a3a681fd138b4b3c9fb25583 to your computer and use it in GitHub Desktop.
Unit test template for JS
import test from 'tape';
test('What component aspect are you testing?', assert => {
const actual = 'What is the actual output?';
const expected = 'What is the expected output?';
assert.equal(actual, expected, 'What should the feature do?');
assert.end();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment