Skip to content

Instantly share code, notes, and snippets.

@pcanterini
Created November 10, 2015 03:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pcanterini/b97e111ebfbc33671b47 to your computer and use it in GitHub Desktop.
Save pcanterini/b97e111ebfbc33671b47 to your computer and use it in GitHub Desktop.
tape example test
import test from 'tape';
// For each unit test you write,
// answer these questions:
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