Skip to content

Instantly share code, notes, and snippets.

@piyushchauhan2011
Forked from ericelliott/tape-template.js
Created April 20, 2016 02:59
Show Gist options
  • Save piyushchauhan2011/6c0a73f381cd523cf61e31c35e987991 to your computer and use it in GitHub Desktop.
Save piyushchauhan2011/6c0a73f381cd523cf61e31c35e987991 to your computer and use it in GitHub Desktop.
// A Unit test template for Tape
// See 5 Questions every unit test must answer:
// https://medium.com/javascript-scene/what-every-unit-test-needs-f6cd34d9836d
import test from 'tape';
test('What are you testing?', assert => {
const msg = 'what should it do?'
const actual = 'what was the output?';
const expected = 'what was the expected output?';
assert.same(actual, expected, msg);
assert.end();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment