Skip to content

Instantly share code, notes, and snippets.

@daxeh
Forked from ericelliott/tape-template.js
Created November 21, 2017 08:29
Show Gist options
  • Save daxeh/45bc72d3dbc883f63075055e4ba0e282 to your computer and use it in GitHub Desktop.
Save daxeh/45bc72d3dbc883f63075055e4ba0e282 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