Skip to content

Instantly share code, notes, and snippets.

@alisonmonteiro
Created April 26, 2017 02:19
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 alisonmonteiro/1ac932498959e591bd4e4428204eecc3 to your computer and use it in GitHub Desktop.
Save alisonmonteiro/1ac932498959e591bd4e4428204eecc3 to your computer and use it in GitHub Desktop.
import test from 'tape';
// 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