Skip to content

Instantly share code, notes, and snippets.

@webbower
Forked from ericelliott/tape-template.js
Created December 21, 2017 00:52
Show Gist options
  • Save webbower/8f6e7fb40fa60a62f1d261be504d12c9 to your computer and use it in GitHub Desktop.
Save webbower/8f6e7fb40fa60a62f1d261be504d12c9 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